Home
last modified time | relevance | path

Searched refs:show (Results 1 – 25 of 533) sorted by relevance

12345678910>>...22

/freebsd-10-stable/contrib/bmake/unit-tests/
Dvarcmd.mk14 show:
17 one: show
20 two: show
23 three: show
32 four: show
41 show-v:
44 five: show show-v
47 six: show-v
48 @${.MAKE} -f ${MAKEFILE} V=override show-v
Dmodmatch.mk18 all: show-libs check-cclass
20 show-libs:
21 @for x in $X; do ${.MAKE} -f ${MAKEFILE} show LIB=$$x; done
24 show:
/freebsd-10-stable/contrib/gdb/gdb/
Dada-typeprint.c351 print_array_type (struct type *type, struct ui_file *stream, int show, in print_array_type() argument
361 if (show < 0) in print_array_type()
414 show == 0 ? 0 : show - 1, level + 1); in print_array_type()
501 int show, int level) in print_variant_clauses() argument
527 outer_type, stream, show, level + 4) <= 0) in print_variant_clauses()
542 struct ui_file *stream, int show, int level) in print_variant_part() argument
547 print_variant_clauses (type, field_num, outer_type, stream, show, in print_variant_part()
563 struct ui_file *stream, int show, int level) in print_record_field_types() argument
581 stream, show, level); in print_record_field_types()
584 print_variant_part (type, i, outer_type, stream, show, level); in print_record_field_types()
[all …]
Dc-typeprint.c66 int show, int level) in c_print_type() argument
72 if (show > 0) in c_print_type()
75 c_type_print_base (type, stream, show, level); in c_print_type()
81 ((show > 0 || TYPE_NAME (type) == 0) in c_print_type()
90 c_type_print_varspec_prefix (type, stream, show, 0, need_post_space); in c_print_type()
100 c_type_print_varspec_suffix (type, stream, show, 0, demangled_args); in c_print_type()
205 int show, int passed_a_ptr, int need_post_space) in c_type_print_varspec_prefix() argument
211 if (TYPE_NAME (type) && show <= 0) in c_type_print_varspec_prefix()
219 c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, show, 1, 1); in c_type_print_varspec_prefix()
227 c_type_print_varspec_prefix (TYPE_TARGET_TYPE (type), stream, show, 0, 0); in c_type_print_varspec_prefix()
[all …]
Djv-typeprint.c36 struct ui_file *stream, int show,
86 java_type_print_base (struct type *type, struct ui_file *stream, int show, in java_type_print_base() argument
106 if (show <= 0 in java_type_print_base()
118 java_type_print_base (TYPE_TARGET_TYPE (type), stream, show, level); in java_type_print_base()
130 if (show >= 0) in java_type_print_base()
136 if (show > 0) in java_type_print_base()
142 if (show < 0) in java_type_print_base()
148 else if (show > 0 || TYPE_TAG_NAME (type) == NULL) in java_type_print_base()
194 stream, show - 1, level + 4); in java_type_print_base()
315 c_type_print_base (type, stream, show, level); in java_type_print_base()
[all …]
Df-typeprint.c60 int show, int level) in f_print_type() argument
65 f_type_print_base (type, stream, show, level); in f_print_type()
71 ((show > 0 || TYPE_NAME (type) == 0) in f_print_type()
79 f_type_print_varspec_prefix (type, stream, show, 0); in f_print_type()
87 f_type_print_varspec_suffix (type, stream, show, 0, demangled_args); in f_print_type()
100 int show, int passed_a_ptr) in f_type_print_varspec_prefix() argument
105 if (TYPE_NAME (type) && show <= 0) in f_type_print_varspec_prefix()
157 int show, int passed_a_ptr, int demangled_args) in f_type_print_varspec_suffix() argument
167 if (TYPE_NAME (type) && show <= 0) in f_type_print_varspec_suffix()
286 f_type_print_base (struct type *type, struct ui_file *stream, int show, in f_type_print_base() argument
[all …]
Dp-typeprint.c51 int show, int level) in pascal_print_type() argument
58 if (show > 0) in pascal_print_type()
64 pascal_type_print_varspec_prefix (type, stream, show, 0); in pascal_print_type()
79 pascal_type_print_varspec_prefix (type, stream, show, 0); in pascal_print_type()
82 pascal_type_print_base (type, stream, show, level); in pascal_print_type()
87 pascal_type_print_varspec_suffix (type, stream, show, 0, demangled_args); in pascal_print_type()
192 int show, int passed_a_ptr) in pascal_type_print_varspec_prefix() argument
198 if (TYPE_NAME (type) && show <= 0) in pascal_type_print_varspec_prefix()
337 int show, int passed_a_ptr, in pascal_type_print_varspec_suffix() argument
343 if (TYPE_NAME (type) && show <= 0) in pascal_type_print_varspec_suffix()
[all …]
/freebsd-10-stable/contrib/netbsd-tests/sbin/gpt/
Dt_gpt.sh92 file "$src/gpt.2part.show.normal" gpt show "$disk"
93 file "$src/gpt.2part.show.uuid" gpt show -u "$disk"
141 file "$src/gpt.empty.show.normal" gpt show "$disk"
162 save attr gpt show -i 1 "$disk"
165 save attr gpt show -i 1 "$disk"
177 save type gpt show -i 1 "$disk"
181 save type gpt show -i 1 "$disk"
243 file "$src/gpt.resizedisk.show.normal" gpt show "$disk"
245 file "$src/gpt.resizepart.show.normal" gpt show "$disk"
258 gpt show "$disk"
[all …]
/freebsd-10-stable/contrib/ncurses/ncurses/tinfo/
Dlib_acs.c172 char show[ACS_LEN * 2 + 1]; in _nc_init_acs() local
175 show[m++] = (char) n; in _nc_init_acs()
176 show[m++] = (char) ChCharOf(real_map[n]); in _nc_init_acs()
179 show[m] = 0; in _nc_init_acs()
180 if (acs_chars == NULL || strcmp(acs_chars, show)) in _nc_init_acs()
187 : (strcmp(acs_chars, show) in _nc_init_acs()
190 _nc_visbuf(show)); in _nc_init_acs()
/freebsd-10-stable/etc/
Dddb.conf9 script lockinfo=show locks; show alllocks; show lockedvnods
12 script kdb.enter.panic=textdump set; capture on; run lockinfo; show pcpu; bt; ps; alltrace; capture…
/freebsd-10-stable/contrib/gdb/
Dltmain.sh105 show="$echo"
217 show=:
590 $show "Waiting for $lockfile to be removed"
643 $show "$mkdir ${xdir}$objdir"
658 $show "$command"
687 $show "$mv $output_obj $lobj"
728 $show "$command"
757 $show "$mv $output_obj $obj"
1598 $show "$mkdir $output_objdir"
2083 $show "extracting exported symbol list from \`$soname'"
[all …]
/freebsd-10-stable/contrib/netbsd-tests/share/mk/
Dt_own.sh34 .PHONY: show-config-var
35 show-config-var:
46 make MAKECONF="$(pwd)/empty.conf" show-config-var
48 make MAKECONF="$(pwd)/custom.conf" show-config-var
/freebsd-10-stable/share/examples/printing/
Dmake-ps-header57 ($user) show
60 % Now show the boring particulars
65 200 y moveto show /y y 18 sub def
71 270 y moveto show /y y 18 sub def
/freebsd-10-stable/usr.sbin/ppp/
DREADME.changes67 with the appropriate `show' command.
82 values can be seen using the relevant show commands.
84 o `show auto', `show loopback' and `show mtu' are all part of `show bundle'.
85 o `show mru' is part of `show lcp'
86 o `show msext' and `show vj' are part of `show ipcp'
87 o `show reconnect' and `show redial' are part of `show link'
113 o The ``show modem'' command is deprecated and has been changed to
114 ``show physical''.
/freebsd-10-stable/contrib/wpa/src/utils/
Dwpa_debug.c252 size_t len, int show) in _wpa_hexdump() argument
263 } else if (!show) { in _wpa_hexdump()
285 } else if (show && len) { in _wpa_hexdump()
323 } else if (show && len) { in _wpa_hexdump()
353 } else if (show) { in _wpa_hexdump()
365 } else if (show) { in _wpa_hexdump()
391 size_t len, int show) in _wpa_hexdump_ascii() argument
404 } else if (!show) { in _wpa_hexdump_ascii()
419 _wpa_hexdump(level, title, buf, len, show); in _wpa_hexdump_ascii()
424 if (!show) { in _wpa_hexdump_ascii()
[all …]
/freebsd-10-stable/usr.sbin/fdcontrol/
Dfdcontrol.c44 static int format, verbose, show = 1, showfmt; variable
85 show = 0; in main()
97 show = 0; in main()
102 show = 0; in main()
127 if (show) { in main()
/freebsd-10-stable/sbin/atm/atmconfig/
Datmconfig.help45 ^^ help show help information
64 -t don't print headings for 'show'-type commands
68 ^^ help commands show available commands
74 ^^ diag show/modify ATM hardware interfaces
88 atmconfig [common-options] diag phy show <device>
115 To show the type of the PHY and its state:
117 atmconfig [common-options] diag phy show <device>
131 ^2 show
132 usage: atmconfig [common-options] diag phy show <device>
188 atmconfig [common-options] natm show
[all …]
/freebsd-10-stable/contrib/ofed/management/doc/
Ddiagtools.txt39 -e show umad send receive errors (timeouts and others)
40 -h show the usage message
43 -V show the internal version info.
81 ibstatus mthca1:1 mthca0:2 # show status of specified ports
98 ibstat mthca1 2 # show status of specified ports
117 -a show all lids in range, even invalid entries.
119 -M show multicast forwarding tables. In this case the range
127 ibroute -M 2 # show multicast tables
144 -n simple format; don't show additional information.
145 -m <mlid> show the multicast trace of the specified mlid.
[all …]
/freebsd-10-stable/contrib/dialog/
Dmsgbox.c57 bool show = TRUE; in dialog_msgbox() local
112 if (show) { in dialog_msgbox()
116 show = FALSE; in dialog_msgbox()
134 show = TRUE; in dialog_msgbox()
166 &show, in dialog_msgbox()
/freebsd-10-stable/contrib/ofed/management/infiniband-diags/
DREADME39 -e show umad send receive errors (timeouts and others)
40 -h show the usage message
43 -V show the internal version info.
81 ibstatus mthca1:1 mthca0:2 # show status of specified ports
98 ibstat mthca1 2 # show status of specified ports
117 -a show all lids in range, even invalid entries.
119 -M show multicast forwarding tables. In this case the range
127 ibroute -M 2 # show multicast tables
144 -n simple format; don't show additional information.
145 -m <mlid> show the multicast trace of the specified mlid.
[all …]
/freebsd-10-stable/sys/ofed/include/linux/
Dsysfs.h42 ssize_t (*show)(struct kobject *, struct attribute *, char *); member
56 .show = _show, .store = _store, \
61 .show = _name##_show, \
91 if (ops->show) { in sysctl_handle_attr()
92 len = ops->show(kobj, attr, buf); in sysctl_handle_attr()
Ddevice.h78 ssize_t (*show)(struct class *, struct class_attribute *, char *); member
89 ssize_t (*show)(struct device *, member
178 if (dattr->show) in class_show()
179 error = dattr->show(container_of(kobj, struct class, kobj), in class_show()
210 .show = class_show,
258 if (dattr->show) in dev_show()
259 error = dattr->show(container_of(kobj, struct device, kobj), in dev_show()
279 static struct sysfs_ops dev_sysfs = { .show = dev_show, .store = dev_store, };
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
DValueObjectPrinter.h113 SetShowTypes(bool show = false)
115 m_show_types = show;
120 SetShowLocation(bool show = false)
122 m_show_location = show;
134 SetShowSummary(bool show = true)
136 if (show == false)
/freebsd-10-stable/contrib/ncurses/progs/
Dtic.c934 char show[80]; in check_keypad() local
980 show[0] = '\0'; in check_keypad()
991 assert(strlen(show) < (MAX_KP * 4)); in check_keypad()
994 strcat(show, " ka1"); in check_keypad()
997 strcat(show, " ka3"); in check_keypad()
1000 strcat(show, " kb2"); in check_keypad()
1003 strcat(show, " kc1"); in check_keypad()
1006 strcat(show, " kc3"); in check_keypad()
1011 _nc_warning("vt100 keypad order inconsistent: %s", show); in check_keypad()
1019 show[0] = '\0'; in check_keypad()
[all …]
/freebsd-10-stable/contrib/gdb/gdb/doc/
Drefcard.tex289 show args&display argument list\cr
291 show env&show all environment variables\cr
292 show env {\it var}&show value of environment variable {\it var}\cr
305 \line{\smrm \opt{ } surround optional arguments \hfill $\ldots$ show
329 info break&show defined breakpoints\cr
330 info watch&show defined watchpoints\cr
412 p \opt{\tt/{\it f}\/} \opt{\it expr}&show value of {\it expr} \opt{or
439 display \opt{\tt/\it f\/} {\it expr}&show value of {\it expr} each time
469 show values \opt{{\it n}}&show last 10 values \opt{or surrounding
471 show conv&display all convenience variables\cr
[all …]

12345678910>>...22