Lines Matching full:view

52 	struct debug_view *view;	/* used view of debug info */  member
80 struct debug_view *view, char *out_buf);
81 static int debug_input_level_fn(debug_info_t *id, struct debug_view *view,
85 struct debug_view *view, char *out_buf);
86 static int debug_input_pages_fn(debug_info_t *id, struct debug_view *view,
89 static int debug_input_flush_fn(debug_info_t *id, struct debug_view *view,
92 static int debug_hex_ascii_format_fn(debug_info_t *id, struct debug_view *view,
94 static int debug_sprintf_format_fn(debug_info_t *id, struct debug_view *view,
388 struct debug_view *view = p_info->view; in debug_format_entry() local
394 if (view->prolog_proc) in debug_format_entry()
395 len += view->prolog_proc(id_snap, view, p_info->temp_buf); in debug_format_entry()
398 if (!id_snap->areas) /* this is true, if we have a prolog only view */ in debug_format_entry()
405 if (view->header_proc) in debug_format_entry()
406 len += view->header_proc(id_snap, view, p_info->act_area, in debug_format_entry()
408 if (view->format_proc) in debug_format_entry()
409 len += view->format_proc(id_snap, view, p_info->temp_buf + len, in debug_format_entry()
502 * - calls input function of view
512 if (p_info->view->input_proc) { in debug_input()
513 rc = p_info->view->input_proc(p_info->debug_info_org, in debug_input()
514 p_info->view, file, user_buf, in debug_input()
537 /* find debug view */ in debug_open()
542 goto found; /* found view ! */ in debug_open()
551 /* To copy all the areas is only needed, if we have a view which */ in debug_open()
572 p_info->view = debug_info->views[i]; in debug_open()
1082 * counts arguments in format string for sprintf view
1167 * debug_register_view() - registers new debug view and creates debugfs
1171 * @view: pointer to debug view struct
1177 int debug_register_view(debug_info_t *id, struct debug_view *view) in debug_register_view() argument
1188 if (!(view->prolog_proc || view->format_proc || view->header_proc)) in debug_register_view()
1190 if (!view->input_proc) in debug_register_view()
1192 pde = debugfs_create_file(view->name, mode, id->debugfs_root_entry, in debug_register_view()
1202 id->views[i] = view; in debug_register_view()
1207 pr_err("Registering view %s/%s would exceed the maximum " in debug_register_view()
1208 "number of views %i\n", id->name, view->name, i); in debug_register_view()
1217 * debug_unregister_view() - unregisters debug view and removes debugfs
1221 * @view: pointer to debug view struct
1227 int debug_unregister_view(debug_info_t *id, struct debug_view *view) in debug_unregister_view() argument
1237 if (id->views[i] == view) in debug_unregister_view()
1294 static int debug_prolog_pages_fn(debug_info_t *id, struct debug_view *view, in debug_prolog_pages_fn() argument
1304 static int debug_input_pages_fn(debug_info_t *id, struct debug_view *view, in debug_input_pages_fn() argument
1343 static int debug_prolog_level_fn(debug_info_t *id, struct debug_view *view, in debug_prolog_level_fn() argument
1358 static int debug_input_level_fn(debug_info_t *id, struct debug_view *view, in debug_input_level_fn() argument
1426 * view function: flushes debug areas
1428 static int debug_input_flush_fn(debug_info_t *id, struct debug_view *view, in debug_input_flush_fn() argument
1467 static int debug_hex_ascii_format_fn(debug_info_t *id, struct debug_view *view, in debug_hex_ascii_format_fn() argument
1490 int debug_dflt_header_fn(debug_info_t *id, struct debug_view *view, in debug_dflt_header_fn() argument
1517 * debug_sprinf_event/exception calls must be used together with this view
1522 static int debug_sprintf_format_fn(debug_info_t *id, struct debug_view *view, in debug_sprintf_format_fn() argument