Home
last modified time | relevance | path

Searched refs:view (Results 1 - 25 of 117) sorted by relevance

12345

/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_so.c38 * to it, and all context bindings of that view. Similarly we must restore
39 * the view bindings, views and surfaces pointed to by the views when a
44 * struct vmw_view - view metadata
48 * @ctx: Non-refcounted pointer to the context this view belongs to.
49 * @srf: Refcounted pointer to the surface pointed to by this view.
50 * @cotable: Refcounted pointer to the cotable holding this view.
51 * @srf_head: List head for the surface-to-view list.
54 * @view_id: User-space per context view id. Currently used also as per
55 * context device view id.
56 * @cmd_size: Size of the SVGA3D define view comman
131 struct vmw_view *view = vmw_view(res); vmw_view_commit_notify() local
162 struct vmw_view *view = vmw_view(res); vmw_view_create() local
207 struct vmw_view *view = vmw_view(res); vmw_view_destroy() local
288 struct vmw_view *view = vmw_view(res); vmw_view_res_free() local
328 struct vmw_view *view; vmw_view_add() local
[all...]
/kernel/linux/linux-5.10/drivers/s390/char/
H A Draw3270.c46 struct raw3270_view *view; /* Active view. */ member
90 * Wait queue for device init/delete, view delete.
239 __raw3270_start(struct raw3270 *rp, struct raw3270_view *view, in __raw3270_start() argument
242 rq->view = view; in __raw3270_start()
243 raw3270_get_view(view); in __raw3270_start()
250 raw3270_put_view(view); in __raw3270_start()
259 raw3270_view_active(struct raw3270_view *view) in raw3270_view_active() argument
261 struct raw3270 *rp = view in raw3270_view_active()
268 raw3270_start(struct raw3270_view *view, struct raw3270_request *rq) raw3270_start() argument
288 raw3270_start_locked(struct raw3270_view *view, struct raw3270_request *rq) raw3270_start_locked() argument
305 raw3270_start_irq(struct raw3270_view *view, struct raw3270_request *rq) raw3270_start_irq() argument
323 struct raw3270_view *view; raw3270_irq() local
510 struct raw3270_view *view; raw3270_size_device_done() local
626 raw3270_reset(struct raw3270_view *view) raw3270_reset() argument
646 struct raw3270_view *view; __raw3270_disconnect() local
665 raw3270_init_irq(struct raw3270_view *view, struct raw3270_request *rq, struct irb *irb) raw3270_init_irq() argument
842 raw3270_activate_view(struct raw3270_view *view) raw3270_activate_view() argument
890 raw3270_deactivate_view(struct raw3270_view *view) raw3270_deactivate_view() argument
923 raw3270_add_view(struct raw3270_view *view, struct raw3270_fn *fn, int minor, int subclass) raw3270_add_view() argument
962 struct raw3270_view *view, *tmp; raw3270_find_view() local
989 raw3270_del_view(struct raw3270_view *view) raw3270_del_view() argument
1221 struct raw3270_view *view; raw3270_pm_stop() local
1261 raw3270_pm_unfreeze(struct raw3270_view *view) raw3270_pm_unfreeze() argument
[all...]
H A Dcon3270.c3 * IBM/3270 Driver - console view.
39 * Main 3270 console view data structure.
42 struct raw3270_view view; member
87 * "console view" in the lower left corner and "Running"/"More..."/"Holding"
97 codepage_convert(cp->view.ascebc, cp->status->string + 24, 7); in con3270_update_status()
113 raw3270_buffer_address(cp->view.dev, cp->status->string + 1, in con3270_create_status()
114 cp->view.cols * (cp->view.rows - 1)); in con3270_create_status()
115 raw3270_buffer_address(cp->view.dev, cp->status->string + 21, in con3270_create_status()
116 cp->view in con3270_create_status()
391 con3270_activate(struct raw3270_view *view) con3270_activate() argument
402 con3270_deactivate(struct raw3270_view *view) con3270_deactivate() argument
[all...]
H A Dtty3270.c57 * The main tty view data structure.
64 struct raw3270_view view; member
147 if (count > tp->view.cols * 2 - 11) in tty3270_update_prompt()
148 count = tp->view.cols * 2 - 11; in tty3270_update_prompt()
152 if (count < tp->view.cols * 2 - 11) { in tty3270_update_prompt()
155 off = tp->view.cols * tp->view.rows - 9; in tty3270_update_prompt()
156 raw3270_buffer_address(tp->view.dev, line->string+count+8, off); in tty3270_update_prompt()
174 sizeof(blueprint) + tp->view.cols * 2 - 9); in tty3270_create_prompt()
181 offset = tp->view in tty3270_create_prompt()
667 tty3270_activate(struct raw3270_view *view) tty3270_activate() argument
677 tty3270_deactivate(struct raw3270_view *view) tty3270_deactivate() argument
887 tty3270_resize(struct raw3270_view *view, int model, int rows, int cols) tty3270_resize() argument
903 tty3270_release(struct raw3270_view *view) tty3270_release() argument
921 tty3270_free(struct raw3270_view *view) tty3270_free() argument
939 struct raw3270_view *view = raw3270_find_view(&tty3270_fn, i); tty3270_del_views() local
959 struct raw3270_view *view; tty3270_install() local
[all...]
H A Dfs3270.c33 struct raw3270_view view; member
38 int active; /* Fullscreen view is active. */
57 * The fullscreen view is in working order if the view in fs3270_working()
64 fs3270_do_io(struct raw3270_view *view, struct raw3270_request *rq) in fs3270_do_io() argument
69 fp = (struct fs3270 *) view; in fs3270_do_io()
75 /* Fullscreen view isn't ready yet. */ in fs3270_do_io()
81 rc = raw3270_start(view, rq); in fs3270_do_io()
91 * Switch to the fullscreen view.
98 fp = (struct fs3270 *) rq->view; in fs3270_reset_callback()
119 fs3270_activate(struct raw3270_view *view) fs3270_activate() argument
191 fs3270_deactivate(struct raw3270_view *view) fs3270_deactivate() argument
393 fs3270_free_view(struct raw3270_view *view) fs3270_free_view() argument
408 fs3270_release(struct raw3270_view *view) fs3270_release() argument
[all...]
/kernel/linux/linux-6.6/drivers/s390/char/
H A Draw3270.c48 struct raw3270_view *view; /* Active view. */ member
92 * Wait queue for device init/delete, view delete.
123 x = max_t(int, 0, rp->view->cols + x); in raw3270_buffer_address()
125 y = max_t(int, 0, rp->view->rows + y); in raw3270_buffer_address()
126 addr = (y * rp->view->cols) + x; in raw3270_buffer_address()
244 static int __raw3270_start(struct raw3270 *rp, struct raw3270_view *view, in __raw3270_start() argument
247 rq->view = view; in __raw3270_start()
248 raw3270_get_view(view); in __raw3270_start()
263 raw3270_view_active(struct raw3270_view *view) raw3270_view_active() argument
270 raw3270_start(struct raw3270_view *view, struct raw3270_request *rq) raw3270_start() argument
289 raw3270_start_request(struct raw3270_view *view, struct raw3270_request *rq, int cmd, void *data, size_t len) raw3270_start_request() argument
305 raw3270_start_locked(struct raw3270_view *view, struct raw3270_request *rq) raw3270_start_locked() argument
321 raw3270_start_irq(struct raw3270_view *view, struct raw3270_request *rq) raw3270_start_irq() argument
339 struct raw3270_view *view; raw3270_irq() local
534 struct raw3270_view *view; raw3270_resize_work() local
657 raw3270_reset(struct raw3270_view *view) raw3270_reset() argument
676 struct raw3270_view *view; __raw3270_disconnect() local
694 raw3270_init_irq(struct raw3270_view *view, struct raw3270_request *rq, struct irb *irb) raw3270_init_irq() argument
878 raw3270_view_lock_unavailable(struct raw3270_view *view) raw3270_view_lock_unavailable() argument
889 raw3270_assign_activate_view(struct raw3270 *rp, struct raw3270_view *view) raw3270_assign_activate_view() argument
895 __raw3270_activate_view(struct raw3270 *rp, struct raw3270_view *view) __raw3270_activate_view() argument
937 raw3270_activate_view(struct raw3270_view *view) raw3270_activate_view() argument
956 raw3270_deactivate_view(struct raw3270_view *view) raw3270_deactivate_view() argument
988 raw3270_add_view(struct raw3270_view *view, struct raw3270_fn *fn, int minor, int subclass) raw3270_add_view() argument
1028 struct raw3270_view *view, *tmp; raw3270_find_view() local
1055 raw3270_del_view(struct raw3270_view *view) raw3270_del_view() argument
[all...]
H A Draw3270.h22 struct raw3270_view *view; /* view of this request */ member
51 * Functions of a 3270 view.
56 void (*intv)(struct raw3270_view *view,
58 void (*release)(struct raw3270_view *view);
59 void (*free)(struct raw3270_view *view);
60 void (*resize)(struct raw3270_view *view,
67 * be embedded at the start of the real view data structure, e.g.:
69 * struct raw3270_view view;
75 spinlock_t lock; /* protects members of view */
104 raw3270_get_view(struct raw3270_view *view) raw3270_get_view() argument
112 raw3270_put_view(struct raw3270_view *view) raw3270_put_view() argument
[all...]
H A Dfs3270.c34 struct raw3270_view view; member
39 int active; /* Fullscreen view is active. */
56 * The fullscreen view is in working order if the view in fs3270_working()
62 static int fs3270_do_io(struct raw3270_view *view, struct raw3270_request *rq) in fs3270_do_io() argument
67 fp = (struct fs3270 *)view; in fs3270_do_io()
73 /* Fullscreen view isn't ready yet. */ in fs3270_do_io()
79 rc = raw3270_start(view, rq); in fs3270_do_io()
89 * Switch to the fullscreen view.
95 fp = (struct fs3270 *)rq->view; in fs3270_reset_callback()
114 fs3270_activate(struct raw3270_view *view) fs3270_activate() argument
187 fs3270_deactivate(struct raw3270_view *view) fs3270_deactivate() argument
388 fs3270_free_view(struct raw3270_view *view) fs3270_free_view() argument
402 fs3270_release(struct raw3270_view *view) fs3270_release() argument
[all...]
H A Dcon3270.c74 * The main tty view data structure.
81 struct raw3270_view view; member
147 return tp->view.rows - TTY3270_INPUT_AREA_ROWS; in tty3270_tty_rows()
153 raw3270_buffer_address(tp->view.dev, cp, x, y); in tty3270_add_ba()
223 *cp++ = tp->view.ascebc['>']; in tty3270_add_prompt()
228 tp->view.cols * 2 - TTY3270_STATUS_AREA_SIZE - 2); in tty3270_add_prompt()
236 if (count < tp->view.cols * 2 - 11) in tty3270_add_prompt()
244 *d++ = tp->view.ascebc[(int)*s++]; in tty3270_ebcdic_convert()
275 codepage_convert(tp->view.ascebc, cp, len); in tty3270_add_status()
303 struct tty3270 *tp = container_of(rq->view, struc in tty3270_write_callback()
782 tty3270_activate(struct raw3270_view *view) tty3270_activate() argument
791 tty3270_deactivate(struct raw3270_view *view) tty3270_deactivate() argument
962 tty3270_resize(struct raw3270_view *view, int new_model, int new_rows, int new_cols, int old_model, int old_rows, int old_cols) tty3270_resize() argument
1041 tty3270_release(struct raw3270_view *view) tty3270_release() argument
1058 tty3270_free(struct raw3270_view *view) tty3270_free() argument
1078 struct raw3270_view *view = raw3270_find_view(&tty3270_fn, i); tty3270_del_views() local
1182 struct raw3270_view *view; tty3270_install() local
2149 struct raw3270_view *view; con3270_init() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_so.c37 * to it, and all context bindings of that view. Similarly we must restore
38 * the view bindings, views and surfaces pointed to by the views when a
43 * struct vmw_view - view metadata
46 * @ctx: Non-refcounted pointer to the context this view belongs to.
47 * @srf: Refcounted pointer to the surface pointed to by this view.
48 * @cotable: Refcounted pointer to the cotable holding this view.
49 * @srf_head: List head for the surface-to-view list.
52 * @view_id: User-space per context view id. Currently used also as per
53 * context device view id.
54 * @cmd_size: Size of the SVGA3D define view comman
128 struct vmw_view *view = vmw_view(res); vmw_view_commit_notify() local
159 struct vmw_view *view = vmw_view(res); vmw_view_create() local
204 struct vmw_view *view = vmw_view(res); vmw_view_destroy() local
285 struct vmw_view *view = vmw_view(res); vmw_view_res_free() local
328 struct vmw_view *view; vmw_view_add() local
[all...]
/kernel/linux/linux-5.10/drivers/usb/phy/
H A Dphy-ulpi-viewport.c22 static int ulpi_viewport_wait(void __iomem *view, u32 mask) in ulpi_viewport_wait() argument
26 return readl_poll_timeout_atomic(view, val, !(val & mask), 1, 2000); in ulpi_viewport_wait()
32 void __iomem *view = otg->io_priv; in ulpi_viewport_read() local
34 writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); in ulpi_viewport_read()
35 ret = ulpi_viewport_wait(view, ULPI_VIEW_WAKEUP); in ulpi_viewport_read()
39 writel(ULPI_VIEW_RUN | ULPI_VIEW_READ | ULPI_VIEW_ADDR(reg), view); in ulpi_viewport_read()
40 ret = ulpi_viewport_wait(view, ULPI_VIEW_RUN); in ulpi_viewport_read()
44 return ULPI_VIEW_DATA_READ(readl(view)); in ulpi_viewport_read()
50 void __iomem *view = otg->io_priv; in ulpi_viewport_write() local
52 writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); in ulpi_viewport_write()
[all...]
/kernel/linux/linux-6.6/drivers/usb/phy/
H A Dphy-ulpi-viewport.c22 static int ulpi_viewport_wait(void __iomem *view, u32 mask) in ulpi_viewport_wait() argument
26 return readl_poll_timeout_atomic(view, val, !(val & mask), 1, 2000); in ulpi_viewport_wait()
32 void __iomem *view = otg->io_priv; in ulpi_viewport_read() local
34 writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); in ulpi_viewport_read()
35 ret = ulpi_viewport_wait(view, ULPI_VIEW_WAKEUP); in ulpi_viewport_read()
39 writel(ULPI_VIEW_RUN | ULPI_VIEW_READ | ULPI_VIEW_ADDR(reg), view); in ulpi_viewport_read()
40 ret = ulpi_viewport_wait(view, ULPI_VIEW_RUN); in ulpi_viewport_read()
44 return ULPI_VIEW_DATA_READ(readl(view)); in ulpi_viewport_read()
50 void __iomem *view = otg->io_priv; in ulpi_viewport_write() local
52 writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); in ulpi_viewport_write()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/selftests/
H A Di915_vma.c65 const struct i915_ggtt_view *view) in checked_vma_instance()
70 vma = i915_vma_instance(obj, vm, view); in checked_vma_instance()
87 if (i915_vma_compare(vma, vm, view)) { in checked_vma_instance()
518 struct i915_ggtt_view view; in igt_vma_rotate_remap() local
526 view.type = *t; in igt_vma_rotate_remap()
527 view.rotated.plane[0] = *a; in igt_vma_rotate_remap()
528 view.rotated.plane[1] = *b; in igt_vma_rotate_remap()
530 for_each_prime_number_from(view.rotated.plane[0].offset, 0, max_offset) { in igt_vma_rotate_remap()
531 for_each_prime_number_from(view.rotated.plane[1].offset, 0, max_offset) { in igt_vma_rotate_remap()
535 vma = checked_vma_instance(obj, vm, &view); in igt_vma_rotate_remap()
63 checked_vma_instance(struct drm_i915_gem_object *obj, struct i915_address_space *vm, const struct i915_ggtt_view *view) checked_vma_instance() argument
651 assert_pin(struct i915_vma *vma, struct i915_ggtt_view *view, u64 size, const char *name) assert_pin() argument
729 struct i915_ggtt_view view; igt_vma_partial() local
886 struct i915_ggtt_view view = { igt_vma_remapped_gtt() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/dispnv50/
H A Dhead.c67 if (asyh->set.view ) head->func->view (head, asyh); in nv50_head_flush_set()
151 asyh->view.iW = umode->hdisplay; in nv50_head_atomic_check_view()
152 asyh->view.iH = umode_vdisplay; in nv50_head_atomic_check_view()
155 asyh->view.oW = omode_hdisplay; in nv50_head_atomic_check_view()
156 asyh->view.oH = omode_vdisplay; in nv50_head_atomic_check_view()
167 u32 r = (asyh->view.oH << 19) / asyh->view.oW; in nv50_head_atomic_check_view()
170 asyh->view.oW -= (bX * 2); in nv50_head_atomic_check_view()
171 if (bY) asyh->view in nv50_head_atomic_check_view()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/dispnv50/
H A Dhead.c67 if (asyh->set.view ) head->func->view (head, asyh); in nv50_head_flush_set()
151 asyh->view.iW = umode->hdisplay; in nv50_head_atomic_check_view()
152 asyh->view.iH = umode_vdisplay; in nv50_head_atomic_check_view()
155 asyh->view.oW = omode_hdisplay; in nv50_head_atomic_check_view()
156 asyh->view.oH = omode_vdisplay; in nv50_head_atomic_check_view()
167 u32 r = (asyh->view.oH << 19) / asyh->view.oW; in nv50_head_atomic_check_view()
170 asyh->view.oW -= (bX * 2); in nv50_head_atomic_check_view()
171 if (bY) asyh->view in nv50_head_atomic_check_view()
[all...]
/kernel/linux/linux-5.10/security/apparmor/
H A Dpolicy_ns.c30 * aa_ns_visible - test if @view is visible from @curr
32 * @view: namespace to test if visible from @curr (NOT NULL)
33 * @subns: whether view of a subns is allowed
35 * Returns: true if @view is visible from @curr else false
37 bool aa_ns_visible(struct aa_ns *curr, struct aa_ns *view, bool subns) in aa_ns_visible() argument
39 if (curr == view) in aa_ns_visible()
45 for ( ; view; view = view->parent) { in aa_ns_visible()
46 if (view in aa_ns_visible()
61 aa_ns_name(struct aa_ns *curr, struct aa_ns *view, bool subns) aa_ns_name() argument
200 __aa_lookupn_ns(struct aa_ns *view, const char *hname, size_t n) __aa_lookupn_ns() argument
231 aa_lookupn_ns(struct aa_ns *view, const char *name, size_t n) aa_lookupn_ns() argument
[all...]
/kernel/linux/linux-6.6/security/apparmor/
H A Dpolicy_ns.c33 * aa_ns_visible - test if @view is visible from @curr
35 * @view: namespace to test if visible from @curr (NOT NULL)
36 * @subns: whether view of a subns is allowed
38 * Returns: true if @view is visible from @curr else false
40 bool aa_ns_visible(struct aa_ns *curr, struct aa_ns *view, bool subns) in aa_ns_visible() argument
42 if (curr == view) in aa_ns_visible()
48 for ( ; view; view = view->parent) { in aa_ns_visible()
49 if (view in aa_ns_visible()
64 aa_ns_name(struct aa_ns *curr, struct aa_ns *view, bool subns) aa_ns_name() argument
211 __aa_lookupn_ns(struct aa_ns *view, const char *hname, size_t n) __aa_lookupn_ns() argument
242 aa_lookupn_ns(struct aa_ns *view, const char *name, size_t n) aa_lookupn_ns() argument
[all...]
/kernel/linux/linux-5.10/tools/perf/ui/gtk/
H A Dhists.c281 static void on_row_activated(GtkTreeView *view, GtkTreePath *path, in on_row_activated() argument
285 bool expanded = gtk_tree_view_row_expanded(view, path); in on_row_activated()
288 gtk_tree_view_collapse_row(view, path); in on_row_activated()
290 gtk_tree_view_expand_row(view, path, FALSE); in on_row_activated()
301 GtkWidget *view; in perf_gtk__show_hists() local
319 view = gtk_tree_view_new(); in perf_gtk__show_hists()
336 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), in perf_gtk__show_hists()
345 column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); in perf_gtk__show_hists()
349 gtk_tree_view_set_expander_column(GTK_TREE_VIEW(view), in perf_gtk__show_hists()
354 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODE in perf_gtk__show_hists()
402 gtk_container_add(GTK_CONTAINER(window), view); perf_gtk__show_hists() local
505 GtkWidget *view; perf_gtk__show_hierarchy() local
590 gtk_container_add(GTK_CONTAINER(window), view); perf_gtk__show_hierarchy() local
[all...]
/kernel/linux/linux-6.6/tools/perf/ui/gtk/
H A Dhists.c281 static void on_row_activated(GtkTreeView *view, GtkTreePath *path, in on_row_activated() argument
285 bool expanded = gtk_tree_view_row_expanded(view, path); in on_row_activated()
288 gtk_tree_view_collapse_row(view, path); in on_row_activated()
290 gtk_tree_view_expand_row(view, path, FALSE); in on_row_activated()
301 GtkWidget *view; in perf_gtk__show_hists() local
319 view = gtk_tree_view_new(); in perf_gtk__show_hists()
336 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), in perf_gtk__show_hists()
345 column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); in perf_gtk__show_hists()
349 gtk_tree_view_set_expander_column(GTK_TREE_VIEW(view), in perf_gtk__show_hists()
354 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODE in perf_gtk__show_hists()
402 gtk_container_add(GTK_CONTAINER(window), view); perf_gtk__show_hists() local
505 GtkWidget *view; perf_gtk__show_hierarchy() local
590 gtk_container_add(GTK_CONTAINER(window), view); perf_gtk__show_hierarchy() local
[all...]
/kernel/linux/linux-5.10/arch/s390/kernel/
H A Ddebug.c52 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,
389 struct debug_view *view in debug_format_entry() local
1133 debug_register_view(debug_info_t *id, struct debug_view *view) debug_register_view() argument
1182 debug_unregister_view(debug_info_t *id, struct debug_view *view) debug_unregister_view() argument
1249 debug_prolog_pages_fn(debug_info_t *id, struct debug_view *view, char *out_buf) debug_prolog_pages_fn() argument
1259 debug_input_pages_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_pages_fn() argument
1298 debug_prolog_level_fn(debug_info_t *id, struct debug_view *view, char *out_buf) debug_prolog_level_fn() argument
1313 debug_input_level_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_level_fn() argument
1383 debug_input_flush_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_flush_fn() argument
1422 debug_hex_ascii_format_fn(debug_info_t *id, struct debug_view *view, char *out_buf, const char *in_buf) debug_hex_ascii_format_fn() argument
1445 debug_dflt_header_fn(debug_info_t *id, struct debug_view *view, int area, debug_entry_t *entry, char *out_buf) debug_dflt_header_fn() argument
1477 debug_sprintf_format_fn(debug_info_t *id, struct debug_view *view, char *out_buf, debug_sprintf_entry_t *curr_event) debug_sprintf_format_fn() argument
[all...]
/kernel/linux/linux-6.6/arch/s390/kernel/
H A Ddebug.c52 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,
389 struct debug_view *view in debug_format_entry() local
1179 debug_register_view(debug_info_t *id, struct debug_view *view) debug_register_view() argument
1229 debug_unregister_view(debug_info_t *id, struct debug_view *view) debug_unregister_view() argument
1296 debug_prolog_pages_fn(debug_info_t *id, struct debug_view *view, char *out_buf) debug_prolog_pages_fn() argument
1306 debug_input_pages_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_pages_fn() argument
1345 debug_prolog_level_fn(debug_info_t *id, struct debug_view *view, char *out_buf) debug_prolog_level_fn() argument
1360 debug_input_level_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_level_fn() argument
1430 debug_input_flush_fn(debug_info_t *id, struct debug_view *view, struct file *file, const char __user *user_buf, size_t user_len, loff_t *offset) debug_input_flush_fn() argument
1469 debug_hex_ascii_format_fn(debug_info_t *id, struct debug_view *view, char *out_buf, const char *in_buf) debug_hex_ascii_format_fn() argument
1492 debug_dflt_header_fn(debug_info_t *id, struct debug_view *view, int area, debug_entry_t *entry, char *out_buf) debug_dflt_header_fn() argument
1524 debug_sprintf_format_fn(debug_info_t *id, struct debug_view *view, char *out_buf, const char *inbuf) debug_sprintf_format_fn() argument
[all...]
/kernel/linux/linux-5.10/scripts/kconfig/
H A Dgconf.c60 static struct menu *current; // current node for SINGLE view
61 static struct menu *browsed; // browsed node for SPLIT view
224 GtkTreeView *view = GTK_TREE_VIEW(tree1_w); in init_left_tree() local
229 gtk_tree_view_set_model(view, model1); in init_left_tree()
230 gtk_tree_view_set_headers_visible(view, TRUE); in init_left_tree()
231 gtk_tree_view_set_rules_hint(view, TRUE); in init_left_tree()
234 gtk_tree_view_append_column(view, column); in init_left_tree()
255 sel = gtk_tree_view_get_selection(view); in init_left_tree()
266 GtkTreeView *view = GTK_TREE_VIEW(tree2_w); in init_right_tree() local
272 gtk_tree_view_set_model(view, model in init_right_tree()
883 GtkTreeView *view = GTK_TREE_VIEW(widget); on_treeview2_button_press_event() local
940 GtkTreeView *view = GTK_TREE_VIEW(widget); on_treeview2_key_press_event() local
1001 GtkTreeView *view = GTK_TREE_VIEW(widget); on_treeview1_button_press_event() local
[all...]
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dgconf.c56 static struct menu *current; // current node for SINGLE view
57 static struct menu *browsed; // browsed node for SPLIT view
220 GtkTreeView *view = GTK_TREE_VIEW(tree1_w); in init_left_tree() local
225 gtk_tree_view_set_model(view, model1); in init_left_tree()
226 gtk_tree_view_set_headers_visible(view, TRUE); in init_left_tree()
227 gtk_tree_view_set_rules_hint(view, TRUE); in init_left_tree()
230 gtk_tree_view_append_column(view, column); in init_left_tree()
251 sel = gtk_tree_view_get_selection(view); in init_left_tree()
262 GtkTreeView *view = GTK_TREE_VIEW(tree2_w); in init_right_tree() local
268 gtk_tree_view_set_model(view, model in init_right_tree()
876 GtkTreeView *view = GTK_TREE_VIEW(widget); on_treeview2_button_press_event() local
933 GtkTreeView *view = GTK_TREE_VIEW(widget); on_treeview2_key_press_event() local
994 GtkTreeView *view = GTK_TREE_VIEW(widget); on_treeview1_button_press_event() local
[all...]
/kernel/linux/linux-6.6/arch/s390/include/asm/
H A Ddebug.h66 struct debug_view *view,
72 struct debug_view *view, char *out_buf,
75 struct debug_view *view,
78 struct debug_view *view,
83 int debug_dflt_header_fn(debug_info_t *id, struct debug_view *view,
391 int debug_register_view(debug_info_t *id, struct debug_view *view);
393 int debug_unregister_view(debug_info_t *id, struct debug_view *view);
451 #define __REGISTER_STATIC_DEBUG_INFO(var, name, pages, areas, view) \
455 debug_register_view(&var, (view)); \
468 * @view
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/
H A Di915_vma.h45 const struct i915_ggtt_view *view);
154 const struct i915_ggtt_view *view) in i915_vma_compare()
158 GEM_BUG_ON(view && !i915_is_ggtt(vm)); in i915_vma_compare()
166 if (!view) in i915_vma_compare()
169 cmp -= view->type; in i915_vma_compare()
188 BUILD_BUG_ON(offsetof(typeof(*view), rotated) != in i915_vma_compare()
189 offsetof(typeof(*view), partial)); in i915_vma_compare()
190 BUILD_BUG_ON(offsetof(typeof(*view), rotated) != in i915_vma_compare()
191 offsetof(typeof(*view), remapped)); in i915_vma_compare()
192 return memcmp(&vma->ggtt_view.partial, &view in i915_vma_compare()
152 i915_vma_compare(struct i915_vma *vma, struct i915_address_space *vm, const struct i915_ggtt_view *view) i915_vma_compare() argument
[all...]

Completed in 20 milliseconds

12345