Home
last modified time | relevance | path

Searched refs:view (Results 1 – 25 of 115) sorted by relevance

12345

/linux-3.4.99/drivers/s390/char/
Draw3270.c44 struct raw3270_view *view; /* Active view. */ member
253 __raw3270_start(struct raw3270 *rp, struct raw3270_view *view, in __raw3270_start() argument
256 rq->view = view; in __raw3270_start()
257 raw3270_get_view(view); in __raw3270_start()
264 raw3270_put_view(view); in __raw3270_start()
273 raw3270_start(struct raw3270_view *view, struct raw3270_request *rq) in raw3270_start() argument
279 spin_lock_irqsave(get_ccwdev_lock(view->dev->cdev), flags); in raw3270_start()
280 rp = view->dev; in raw3270_start()
281 if (!rp || rp->view != view || in raw3270_start()
287 rc = __raw3270_start(rp, view, rq); in raw3270_start()
[all …]
Dcon3270.c37 struct raw3270_view view; member
93 codepage_convert(cp->view.ascebc, cp->status->string + 24, 7); in con3270_update_status()
109 raw3270_buffer_address(cp->view.dev, cp->status->string + 1, in con3270_create_status()
110 cp->view.cols * (cp->view.rows - 1)); in con3270_create_status()
111 raw3270_buffer_address(cp->view.dev, cp->status->string + 21, in con3270_create_status()
112 cp->view.cols * cp->view.rows - 8); in con3270_create_status()
114 codepage_convert(cp->view.ascebc, cp->status->string + 8, 12); in con3270_create_status()
115 codepage_convert(cp->view.ascebc, cp->status->string + 24, 7); in con3270_create_status()
124 if (s->len >= cp->view.cols - 5) in con3270_update_string()
126 raw3270_buffer_address(cp->view.dev, s->string + s->len - 3, in con3270_update_string()
[all …]
Dfs3270.c32 struct raw3270_view view; member
63 fs3270_do_io(struct raw3270_view *view, struct raw3270_request *rq) in fs3270_do_io() argument
68 fp = (struct fs3270 *) view; in fs3270_do_io()
80 rc = raw3270_start(view, rq); in fs3270_do_io()
97 fp = (struct fs3270 *) rq->view; in fs3270_reset_callback()
107 fp = (struct fs3270 *) rq->view; in fs3270_restore_callback()
118 fs3270_activate(struct raw3270_view *view) in fs3270_activate() argument
124 fp = (struct fs3270 *) view; in fs3270_activate()
151 rc = fp->init->rc = raw3270_start_locked(view, fp->init); in fs3270_activate()
167 fp = (struct fs3270 *) rq->view; in fs3270_save_callback()
[all …]
Dtty3270.c63 struct raw3270_view view; member
145 if (count > tp->view.cols * 2 - 11) in tty3270_update_prompt()
146 count = tp->view.cols * 2 - 11; in tty3270_update_prompt()
150 if (count < tp->view.cols * 2 - 11) { in tty3270_update_prompt()
153 off = tp->view.cols * tp->view.rows - 9; in tty3270_update_prompt()
154 raw3270_buffer_address(tp->view.dev, line->string+count+8, off); in tty3270_update_prompt()
172 sizeof(blueprint) + tp->view.cols * 2 - 9); in tty3270_create_prompt()
179 offset = tp->view.cols * (tp->view.rows - 2); in tty3270_create_prompt()
180 raw3270_buffer_address(tp->view.dev, line->string + 1, offset); in tty3270_create_prompt()
181 offset = tp->view.cols * tp->view.rows - 9; in tty3270_create_prompt()
[all …]
Draw3270.h98 struct raw3270_view *view; /* view of this request */ member
177 raw3270_get_view(struct raw3270_view *view) in raw3270_get_view() argument
179 atomic_inc(&view->ref_count); in raw3270_get_view()
185 raw3270_put_view(struct raw3270_view *view) in raw3270_put_view() argument
187 if (atomic_dec_return(&view->ref_count) == 0) in raw3270_put_view()
/linux-3.4.99/arch/arm/plat-mxc/
Dulpi.c43 static int ulpi_poll(void __iomem *view, u32 bit) in ulpi_poll() argument
48 u32 data = __raw_readl(view); in ulpi_poll()
64 void __iomem *view = otg->io_priv; in ulpi_read() local
67 if (!(__raw_readl(view) & ULPIVW_SS)) { in ulpi_read()
68 __raw_writel(ULPIVW_WU, view); in ulpi_read()
71 ret = ulpi_poll(view, ULPIVW_WU); in ulpi_read()
77 __raw_writel((ULPIVW_RUN | (reg << ULPIVW_ADDR_SHIFT)), view); in ulpi_read()
80 ret = ulpi_poll(view, ULPIVW_RUN); in ulpi_read()
84 return (__raw_readl(view) >> ULPIVW_RDATA_SHIFT) & ULPIVW_RDATA_MASK; in ulpi_read()
90 void __iomem *view = otg->io_priv; in ulpi_write() local
[all …]
/linux-3.4.99/drivers/usb/otg/
Dulpi_viewport.c29 static int ulpi_viewport_wait(void __iomem *view, u32 mask) in ulpi_viewport_wait() argument
34 if (!(readl(view) & mask)) in ulpi_viewport_wait()
46 void __iomem *view = otg->io_priv; in ulpi_viewport_read() local
48 writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); in ulpi_viewport_read()
49 ret = ulpi_viewport_wait(view, ULPI_VIEW_WAKEUP); in ulpi_viewport_read()
53 writel(ULPI_VIEW_RUN | ULPI_VIEW_READ | ULPI_VIEW_ADDR(reg), view); in ulpi_viewport_read()
54 ret = ulpi_viewport_wait(view, ULPI_VIEW_RUN); in ulpi_viewport_read()
58 return ULPI_VIEW_DATA_READ(readl(view)); in ulpi_viewport_read()
64 void __iomem *view = otg->io_priv; in ulpi_viewport_write() local
66 writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); in ulpi_viewport_write()
[all …]
/linux-3.4.99/arch/s390/kernel/
Ddebug.c51 struct debug_view *view; /* used view of debug info */ member
81 struct debug_view *view, char *out_buf);
82 static int debug_input_level_fn(debug_info_t * id, struct debug_view *view,
86 struct debug_view *view, char *out_buf);
87 static int debug_input_pages_fn(debug_info_t * id, struct debug_view *view,
90 static int debug_input_flush_fn(debug_info_t * id, struct debug_view *view,
93 static int debug_hex_ascii_format_fn(debug_info_t * id, struct debug_view *view,
96 struct debug_view *view, char *out_buf,
98 static int debug_raw_header_fn(debug_info_t * id, struct debug_view *view,
101 static int debug_sprintf_format_fn(debug_info_t * id, struct debug_view *view,
[all …]
/linux-3.4.99/scripts/kconfig/
Dgconf.c249 GtkTreeView *view = GTK_TREE_VIEW(tree1_w); in init_left_tree() local
254 gtk_tree_view_set_model(view, model1); in init_left_tree()
255 gtk_tree_view_set_headers_visible(view, TRUE); in init_left_tree()
256 gtk_tree_view_set_rules_hint(view, TRUE); in init_left_tree()
259 gtk_tree_view_append_column(view, column); in init_left_tree()
280 sel = gtk_tree_view_get_selection(view); in init_left_tree()
291 GtkTreeView *view = GTK_TREE_VIEW(tree2_w); in init_right_tree() local
297 gtk_tree_view_set_model(view, model2); in init_right_tree()
298 gtk_tree_view_set_headers_visible(view, TRUE); in init_right_tree()
299 gtk_tree_view_set_rules_hint(view, TRUE); in init_right_tree()
[all …]
/linux-3.4.99/tools/perf/util/gtk/
Dbrowser.c57 GtkWidget *view; in perf_gtk_show_hists() local
75 view = gtk_tree_view_new(); in perf_gtk_show_hists()
82 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), in perf_gtk_show_hists()
91 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), in perf_gtk_show_hists()
97 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store)); in perf_gtk_show_hists()
133 gtk_container_add(GTK_CONTAINER(window), view); in perf_gtk_show_hists()
/linux-3.4.99/arch/sparc/kernel/
Dptrace_32.c343 const struct user_regset_view *view; in arch_ptrace() local
348 view = task_user_regset_view(current); in arch_ptrace()
355 ret = copy_regset_to_user(child, view, REGSET_GENERAL, in arch_ptrace()
360 copy_regset_to_user(child, view, REGSET_GENERAL, in arch_ptrace()
368 ret = copy_regset_from_user(child, view, REGSET_GENERAL, in arch_ptrace()
373 copy_regset_from_user(child, view, REGSET_GENERAL, in arch_ptrace()
381 ret = copy_regset_to_user(child, view, REGSET_FP, in arch_ptrace()
386 ret = copy_regset_to_user(child, view, REGSET_FP, in arch_ptrace()
402 ret = copy_regset_from_user(child, view, REGSET_FP, in arch_ptrace()
407 ret = copy_regset_from_user(child, view, REGSET_FP, in arch_ptrace()
Dptrace_64.c863 const struct user_regset_view *view = task_user_regset_view(current); in compat_arch_ptrace() local
881 ret = copy_regset_to_user(child, view, REGSET_GENERAL, in compat_arch_ptrace()
886 ret = copy_regset_to_user(child, view, REGSET_GENERAL, in compat_arch_ptrace()
893 ret = copy_regset_from_user(child, view, REGSET_GENERAL, in compat_arch_ptrace()
898 ret = copy_regset_from_user(child, view, REGSET_GENERAL, in compat_arch_ptrace()
905 ret = copy_regset_to_user(child, view, REGSET_FP, in compat_arch_ptrace()
910 ret = copy_regset_to_user(child, view, REGSET_FP, in compat_arch_ptrace()
924 ret = copy_regset_from_user(child, view, REGSET_FP, in compat_arch_ptrace()
929 ret = copy_regset_from_user(child, view, REGSET_FP, in compat_arch_ptrace()
974 const struct user_regset_view *view = task_user_regset_view(current); in arch_ptrace() local
[all …]
/linux-3.4.99/arch/s390/include/asm/
Ddebug.h80 struct debug_view* view,
86 struct debug_view* view, char* out_buf,
89 struct debug_view* view,
92 struct debug_view* view,
97 int debug_dflt_header_fn(debug_info_t* id, struct debug_view* view,
222 int debug_register_view(debug_info_t* id, struct debug_view* view);
223 int debug_unregister_view(debug_info_t* id, struct debug_view* view);
/linux-3.4.99/Documentation/s390/
Ds390dbf.txt66 a view can be inspected simply by reading the corresponding debugfs file.
288 int debug_register_view (debug_info_t * id, struct debug_view *view);
291 view: pointer to debug view struct
296 Description: registers new debug view and creates debugfs dir entry
299 int debug_unregister_view (debug_info_t * id, struct debug_view *view);
302 view: pointer to debug view struct
307 Description: unregisters debug view and removes debugfs dir entry
322 * hex_ascii- + raw-view Example
356 * sprintf-view Example
487 The hex_ascii view shows the data field in hex and ascii representation
[all …]
/linux-3.4.99/include/linux/
Dregset.h332 const struct user_regset_view *view, in copy_regset_to_user() argument
337 const struct user_regset *regset = &view->regsets[setno]; in copy_regset_to_user()
358 const struct user_regset_view *view, in copy_regset_from_user() argument
363 const struct user_regset *regset = &view->regsets[setno]; in copy_regset_from_user()
/linux-3.4.99/security/apparmor/
Dpolicy.c231 bool aa_ns_visible(struct aa_namespace *curr, struct aa_namespace *view) in aa_ns_visible() argument
233 if (curr == view) in aa_ns_visible()
236 for ( ; view; view = view->parent) { in aa_ns_visible()
237 if (view->parent == curr) in aa_ns_visible()
250 const char *aa_ns_name(struct aa_namespace *curr, struct aa_namespace *view) in aa_ns_name() argument
253 if (curr == view) in aa_ns_name()
256 if (aa_ns_visible(curr, view)) { in aa_ns_name()
263 return view->base.hname + strlen(curr->base.hname) + 2; in aa_ns_name()
/linux-3.4.99/Documentation/isdn/
DREADME.FAQ11 http://www.mhessler.de/i4lfaq/ (view + download)
13 http://www.isdn4linux.de/faq/ (view)
/linux-3.4.99/kernel/
Dptrace.c671 find_regset(const struct user_regset_view *view, unsigned int type) in find_regset() argument
676 for (n = 0; n < view->n; ++n) { in find_regset()
677 regset = view->regsets + n; in find_regset()
688 const struct user_regset_view *view = task_user_regset_view(task); in ptrace_regset() local
689 const struct user_regset *regset = find_regset(view, type); in ptrace_regset()
695 regset_no = regset - view->regsets; in ptrace_regset()
700 return copy_regset_to_user(task, view, regset_no, 0, in ptrace_regset()
703 return copy_regset_from_user(task, view, regset_no, 0, in ptrace_regset()
/linux-3.4.99/arch/arm/boot/dts/
Domap3.dtsi30 * The soc node represents the soc top level view. It is uses for IPs
31 * that are not memory mapped in the MPU view or for the MPU itself.
Domap4.dtsi40 * The soc node represents the soc top level view. It is uses for IPs
41 * that are not memory mapped in the MPU view or for the MPU itself.
/linux-3.4.99/tools/firewire/
Dnosy-dump.c908 int length, retval, view; in main() local
949 view = VIEW_TRANSACTION; in main()
951 view = VIEW_STATS; in main()
953 view = VIEW_PACKET; in main()
970 if (view == VIEW_STATS) in main()
1010 switch (view) { in main()
/linux-3.4.99/fs/
Dbinfmt_elf.c1424 const struct user_regset_view *view, in fill_thread_core_info() argument
1436 (void) view->regsets[0].get(t->task, &view->regsets[0], in fill_thread_core_info()
1444 do_thread_regset_writeback(t->task, &view->regsets[0]); in fill_thread_core_info()
1451 for (i = 1; i < view->n; ++i) { in fill_thread_core_info()
1452 const struct user_regset *regset = &view->regsets[i]; in fill_thread_core_info()
1488 const struct user_regset_view *view = task_user_regset_view(dump_task); in fill_note_info() local
1507 for (i = 0; i < view->n; ++i) in fill_note_info()
1508 if (view->regsets[i].core_note_type != 0) in fill_note_info()
1516 unlikely(view->regsets[0].core_note_type != NT_PRSTATUS)) { in fill_note_info()
1525 view->e_machine, view->e_flags, view->ei_osabi); in fill_note_info()
[all …]
/linux-3.4.99/fs/configfs/
DKconfig7 view of kernel objects, configfs is a filesystem-based manager
/linux-3.4.99/drivers/bcma/
DREADME2 however from programming point of view there is nothing AMBA specific we use.
/linux-3.4.99/Documentation/vm/
Dnuma6 hardware view and the Linux software view.
11 disambiguate the hardware view of these physical components/assemblies
42 This leads to the Linux software view of a NUMA system:

12345