| /freebsd-13-stable/usr.sbin/tzsetup/ |
| HD | tzsetup.c | 91 char *title; member 129 xdialog_menu(const char *title, const char *cprompt, int height, int width, in xdialog_menu() argument 143 listitems[i].text = ditems[i].title; in xdialog_menu() 165 width = MAX(xdialog_count_columns(cprompt), title != NULL ? in xdialog_menu() 166 xdialog_count_columns(title) : 0); in xdialog_menu() 175 result = dlg_menu(title, cprompt, height, width, in xdialog_menu() 239 char title[30]; member 262 char title[64], prompt[64]; in continent_country_menu() local 268 if (strcmp(continent->title, "UTC") == 0) in continent_country_menu() 277 snprintf(title, sizeof(title), "Countries in %s", in continent_country_menu() [all …]
|
| /freebsd-13-stable/usr.sbin/spkrtest/ |
| HD | spkrtest.sh | 55 /usr/bin/dialog --title "Speaker test" --checklist \ 74 title="(default melody)" 78 title="Reveille" 82 title="Contact theme from Close Encounters" 86 title="Lord of the Dance (aka Simple Gifts)" 90 title="Loony Toons theme" 94 title="standard villain's entrance music" 98 title="a trope from 'The Right Stuff' score by Bill Conti" 102 title="opening bars of Bach's Toccata and Fugue in D Minor" 106 title="opening bars of the theme from Star Trek Classic" [all …]
|
| /freebsd-13-stable/contrib/dialog/ |
| HD | dialog.pl | 102 my ( $title, $file, $width, $height ) = @_; 107 . "ed($title) 114 my ( $title, $message, $width ) = @_; 123 . "ed($title) 136 my ( $title, $message, $width ) = @_; 145 . "ed($title) 152 my ( $title, $message, $width ) = @_; 161 . "ed($title) 176 my ( $title, $message, $width, $percent ) = @_; 187 . "ed($title) [all …]
|
| HD | guage.c | 42 char *title; member 129 dlg_draw_title(dialog, obj->title); in repaint_text() 273 free(obj->title); in my_cleanup() 297 const char *title, in dlg_reallocate_gauge() argument 315 dlg_auto_size(title, prompt, &height, &width, MIN_HIGH, MIN_WIDE); in dlg_reallocate_gauge() 340 if (obj->title == 0 || strcmp(obj->title, title)) { in dlg_reallocate_gauge() 341 dlg_finish_string(obj->title); in dlg_reallocate_gauge() 342 free(obj->title); in dlg_reallocate_gauge() 343 obj->title = dlg_strclone(title); in dlg_reallocate_gauge() 365 dlg_allocate_gauge(const char *title, in dlg_allocate_gauge() argument [all …]
|
| HD | progressbox.c | 83 start_obj(MY_OBJ * obj, const char *title, const char *cprompt) in start_obj() argument 90 dlg_auto_size(title, obj->prompt, &obj->high, &obj->wide, MIN_HIGH, MIN_WIDE); in start_obj() 107 dlg_draw_title(obj->obj.win, title); in start_obj() 275 pause_for_ok(MY_OBJ * obj, const char *title, const char *cprompt) in pause_for_ok() argument 343 start_obj(obj, title, cprompt); in pause_for_ok() 371 dlg_progressbox(const char *title, in dlg_progressbox() argument 385 DLG_TRACE2S("title", title); in dlg_progressbox() 407 start_obj(obj, title, cprompt); in dlg_progressbox() 451 result = pause_for_ok(obj, title, cprompt); in dlg_progressbox() 466 dialog_progressbox(const char *title, const char *cprompt, int height, int width) in dialog_progressbox() argument [all …]
|
| /freebsd-13-stable/contrib/dialog/samples/ |
| HD | dialog.py | 97 def __handleTitle(self, title): argument 98 if len(title) == 0: 101 return '--title "%s" ' % title 104 def yesno(self, text, height=10, width=30, title=''): argument 110 (code, output) = self.__perform(self.__handleTitle(title) +\ 115 def msgbox(self, text, height=10, width=30, title=''): argument 120 self.__perform(self.__handleTitle(title) +\ 129 def inputbox(self, text, height=10, width=30, init='', title=''): argument 134 (c, o) = self.__perform(self.__handleTitle(title) +\ 145 def textbox(self, filename, height=20, width=60, title=None): argument [all …]
|
| HD | msgbox1 | 6 $DIALOG --title "MESSAGE BOX" --clear "$@" \ 13 $DIALOG --aspect 12 --title "MESSAGE BOX aspect=12" --clear "$@" \ 20 $DIALOG --aspect 6 --title "MESSAGE BOX aspect=6" --clear "$@" \ 27 $DIALOG --aspect 6 --cr-wrap --title "MESSAGE BOX aspect=6 with --cr-wrap" \
|
| HD | msgbox2 | 6 $DIALOG --title "MESSAGE BOX" --trim "$@" \ 13 $DIALOG --aspect 12 --title "MESSAGE BOX aspect=12" --trim "$@" \ 20 $DIALOG --aspect 6 --title "MESSAGE BOX aspect=6" --trim "$@" \ 27 $DIALOG --aspect 6 --cr-wrap --title "MESSAGE BOX aspect=6 with --cr-wrap" \
|
| /freebsd-13-stable/contrib/wpa/src/utils/ |
| HD | trace.h | 28 #define wpa_trace_dump(title, ptr) \ argument 29 wpa_trace_dump_func((title), (ptr)->btrace, (ptr)->btrace_num) 30 void wpa_trace_dump_func(const char *title, void **btrace, int btrace_num); 33 void wpa_trace_show(const char *title); 49 #define wpa_trace_dump(title, ptr) do { } while (0) argument 51 #define wpa_trace_show(title) do { } while (0) argument 61 void wpa_trace_dump_funcname(const char *title, void *pc); 65 #define wpa_trace_dump_funcname(title, pc) do { } while (0) argument
|
| HD | browser.c | 26 char *title; member 50 ctx->title ? ctx->title : in browser_update_title() 56 ctx->title ? ctx->title : "Hotspot 2.0 client"); in browser_update_title() 186 const char *title; in view_cb_notify_title() local 188 title = webkit_web_view_get_title(ctx->view); in view_cb_notify_title() 189 wpa_printf(MSG_DEBUG, "BROWSER:%s title=%s", __func__, title); in view_cb_notify_title() 190 os_free(ctx->title); in view_cb_notify_title() 191 ctx->title = os_strdup(title); in view_cb_notify_title() 264 static void view_cb_hovering_over_link(WebKitWebView *view, gchar *title, in view_cb_hovering_over_link() argument 267 wpa_printf(MSG_DEBUG, "BROWSER:%s title=%s uri=%s", __func__, title, in view_cb_hovering_over_link() [all …]
|
| HD | wpa_debug.c | 258 static void _wpa_hexdump(int level, const char *title, const u8 *buf, in _wpa_hexdump() argument 267 level, title, (unsigned long) len); in _wpa_hexdump() 315 title, (long unsigned int) len, display, in _wpa_hexdump() 348 title, (unsigned long) len, display); in _wpa_hexdump() 358 title, (unsigned long) len); in _wpa_hexdump() 371 printf("%s - hexdump(len=%lu):", title, (unsigned long) len); in _wpa_hexdump() 385 void wpa_hexdump(int level, const char *title, const void *buf, size_t len) in wpa_hexdump() argument 387 _wpa_hexdump(level, title, buf, len, 1, 0); in wpa_hexdump() 391 void wpa_hexdump_key(int level, const char *title, const void *buf, size_t len) in wpa_hexdump_key() argument 393 _wpa_hexdump(level, title, buf, len, wpa_debug_show_keys, 0); in wpa_hexdump_key() [all …]
|
| HD | wpa_debug.h | 88 void wpa_hexdump(int level, const char *title, const void *buf, size_t len); 90 static inline void wpa_hexdump_buf(int level, const char *title, in wpa_hexdump_buf() argument 93 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL, in wpa_hexdump_buf() 110 void wpa_hexdump_key(int level, const char *title, const void *buf, size_t len); 112 static inline void wpa_hexdump_buf_key(int level, const char *title, in wpa_hexdump_buf_key() argument 115 wpa_hexdump_key(level, title, buf ? wpabuf_head(buf) : NULL, in wpa_hexdump_buf_key() 132 void wpa_hexdump_ascii(int level, const char *title, const void *buf, 149 void wpa_hexdump_ascii_key(int level, const char *title, const void *buf,
|
| /freebsd-13-stable/contrib/wpa/wpa_supplicant/doc/docbook/ |
| HD | wpa_passphrase.sgml | 25 <title>Overview</title> 34 <title>Options</title> 54 <title>See Also</title> 68 <title>Legal</title>
|
| HD | wpa_gui.sgml | 30 <title>Overview</title> 42 <title>Command Arguments</title> 84 <title>See Also</title> 97 <title>Legal</title>
|
| HD | wpa_priv.sgml | 29 <title>Overview</title> 53 <title>Example configuration</title> 90 <title>Command Arguments</title> 134 <title>See Also</title> 143 <title>Legal</title>
|
| /freebsd-13-stable/usr.sbin/lpr/lp/ |
| HD | lp.sh | 46 title="" 74 title="${OPTARG}";; 82 exec /usr/bin/lpr "-P${dest}" ${symlink} ${ncopies} ${mailafter} ${title:+-J"${title}"} "$@"
|
| /freebsd-13-stable/share/doc/papers/ |
| HD | bsdreferences.bib | 9 title = {{TESLA: temporally enhanced system logic assertions}}, 16 title = {Maximising Student Exposure to Networking Using FreeBSD Virtual Hosts}, 36 …title = {An Independent H-TCP Implementation Under FreeBSD 7.0: Description and Observed Behaviour… 56 title = {Integration of the FreeBSD TCP/IP-stack into the Discrete Event Simulator OMNet++}, 71 title = {Social Interactions Around Cross-system Bug Fixings: The Case of FreeBSD and OpenBSD}, 90 title = {Evaluation of Source Code Copy Detection Methods on Freebsd}, 108 title = {Beyond the PDP-11: Architectural Support for a Memory-Safe C Abstract Machine}, 128 title = {Beyond the PDP-11: Architectural Support for a Memory-Safe C Abstract Machine}, 148 title = {Beyond the PDP-11: Architectural Support for a Memory-Safe C Abstract Machine}, 166 title = {Forth and the FreeBSD Bootloader}, [all …]
|
| /freebsd-13-stable/usr.sbin/bsdinstall/scripts/ |
| HD | auto | 74 local title="$msg_abort" 83 "$title" "$btitle" "$prompt" "$hline" 86 --title "$title" \ 106 local title="$DIALOG_TITLE" 132 --title "$title" \ 360 dialog --backtitle "FreeBSD Installer" --title "Add User Accounts" --yesno \ 367 --title "Final Configuration" --no-cancel --menu \ 426 dialog --backtitle "FreeBSD Installer" --title "Manual Configuration" \
|
| HD | keymap | 73 local title= # Calculated below 91 title="$DIALOG_TITLE" 97 "$title" "$btitle" "$prompt" "" "$hline" 100 --title "$title" \
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/Core/ |
| HD | Progress.cpp | 23 Progress::Progress(std::string title, std::string details, in Progress() argument 28 m_progress_data{title, ++g_id, in Progress() 78 Debugger::ReportProgress(m_progress_data.progress_id, m_progress_data.title, in ReportProgress() 114 llvm::StringRef key = progress_data.title; in Increment() 116 Entry &entry = m_entries[progress_data.title]; in Increment() 143 llvm::StringRef key = progress_data.title; in Decrement() 172 Debugger::ReportProgress(progress_data.progress_id, progress_data.title, "", in ReportProgress()
|
| /freebsd-13-stable/usr.sbin/bsdconfig/timezone/ |
| HD | timezone | 82 local title="$DIALOG_TITLE" 213 --title "$title" \ 222 --title "$title" \ 329 f_dialog_title "$title" 337 f_dialog_title "$title" 404 f_dialog_title "$title"
|
| /freebsd-13-stable/contrib/libxo/tests/core/saved/ |
| HD | test_03.H.out | 1 …title"> Type</div><div class="text"> </div><div class="title">InUse</div><div class="text"…
|
| HD | test_03.HP.out | 7 <div class="title"> Type</div> 9 <div class="title">InUse</div> 11 <div class="title">MemUse</div> 13 <div class="title">HighUse</div> 15 <div class="title">Requests</div> 17 <div class="title">Size(s)</div>
|
| HD | test_09.HP.out | 2 <div class="title">Item </div> 3 <div class="title"> Count</div> 30 <div class="title">Item </div> 31 <div class="title"> Count</div> 58 <div class="title">Test </div> 59 <div class="title"> Three</div>
|
| /freebsd-13-stable/release/ |
| HD | rc.local | 52 …dialog --backtitle "FreeBSD Installer" --title "Complete" --no-cancel --ok-label "Reboot" --pause … 55 dialog --backtitle "FreeBSD Installer" --title "Error" --textbox /tmp/bsdinstall_log 0 0 60 dialog --backtitle "FreeBSD Installer" --title "Welcome" --extra-button --extra-label "Shell" --ok-… 73 …dialog --backtitle "FreeBSD Installer" --title "Complete" --yes-label "Reboot" --no-label "Live CD…
|