Home
last modified time | relevance | path

Searched refs:title (Results 1 – 25 of 153) sorted by relevance

1234567

/titanic_52/usr/src/cmd/dtrace/demo/
H A Dchapters2 title: Solaris Dynamic Tracing Guide
7 title: Actions and Subroutines
12 title: Aggregations
17 title: Anonymous Tracing
22 title: Buffers and Buffering
27 title: dtrace Provider
32 title: fbt Provider
37 title: Introduction
42 title: io Provider
47 title
[all...]
/titanic_52/usr/src/cmd/tsol/misc/
H A Dtxzonemgr.sh67 title="Labeled Zone Manager 2.1"
224 --title="$title" \
288 --title="$title" \
301 --title="$title" \
312 --title="$title" \
323 --title
[all...]
/titanic_52/usr/src/grub/grub-0.97/docs/
H A Dmenu.lst15 title GNU/Hurd
21 title GNU/Linux
27 title GNU/kFreeBSD
32 title GNU/kNetBSD
37 title Utah Mach4 multiboot
44 title FreeBSD
49 title NetBSD
54 title OpenBSD
59 title OS/2
68 title Window
[all...]
/titanic_52/usr/src/cmd/auditrecord/
H A Dauditrecord.pl35 $title, $note, $name, $col1, $col2, $col3, $skip);
142 our ($title, $note, $name, $col1, $col2, $col3);
150 ($name, $description, $title, $skip, @case) =
267 <title>$docTitle</title>
280 our ($title, $name, $note, $col1, $col2, $col3);
290 ($name, $description, $title, $skip, @case) =
309 my $titleName = $title;
314 $titleName = '&nbsp;' if ($titleName eq $title);
462 my ($description, $title,
[all...]
H A Dmkmsg.pl86 my ($name, $description, $title, $skip, @case) = ('', '', '', '', ());
88 ($name, $description, $title, $skip, @case) = @{$attr{$label}};
91 $title = $name if (($title eq 'none') || (!defined($title)));
98 addToMsgFile($title);
H A Daudit_record_xml62 my $title = $event->getTitle;
63 print " title=$title\n" if (defined $title && length($title));
/titanic_52/usr/src/cmd/sgs/elfdump/common/
H A Dcorenote.c108 int ns_t2col; /* Column where 2up title starts */
118 typedef void (* dump_func_t)(note_state_t *state, const char *title);
199 * On entry, a title is output, and the indentation level is raised
204 indent_enter(note_state_t *state, const char *title, in indent_enter() argument
209 * available data, then return without printing a title. That note in indent_enter()
214 dbg_print(0, MSG_ORIG(MSG_CNOTE_FMT_TITLE), INDENT, title); in indent_enter()
228 * title: value
231 print_num(note_state_t *state, const char *title, in print_num() argument
246 state->ns_vcol - state->ns_indent, title, in print_num()
284 * title
287 print_strbuf(note_state_t * state,const char * title,const sl_field_t * fdesc) print_strbuf() argument
324 print_str(note_state_t * state,const char * title,const char * str) print_str() argument
338 print_subtype(note_state_t * state,const char * title,const sl_field_t * fdesc,dump_func_t dump_func) print_subtype() argument
381 print_array(note_state_t * state,const sl_field_t * base_desc,sl_fmt_num_t fmt_type,int nelts,int check_nelts,const char * title) print_array() argument
431 dump_auxv(note_state_t * state,const char * title) dump_auxv() argument
586 dump_fltset(note_state_t * state,const char * title) dump_fltset() argument
618 dump_sigset(note_state_t * state,const char * title) dump_sigset() argument
650 dump_sigaction(note_state_t * state,const char * title) dump_sigaction() argument
676 dump_siginfo(note_state_t * state,const char * title) dump_siginfo() argument
760 dump_stack(note_state_t * state,const char * title) dump_stack() argument
786 dump_sysset(note_state_t * state,const char * title) dump_sysset() argument
818 dump_timestruc(note_state_t * state,const char * title) dump_timestruc() argument
835 dump_utsname(note_state_t * state,const char * title) dump_utsname() argument
855 dump_prgregset(note_state_t * state,const char * title) dump_prgregset() argument
906 dump_lwpstatus(note_state_t * state,const char * title) dump_lwpstatus() argument
1030 dump_pstatus(note_state_t * state,const char * title) dump_pstatus() argument
1113 dump_prstatus(note_state_t * state,const char * title) dump_prstatus() argument
1300 dump_lwpsinfo(note_state_t * state,const char * title) dump_lwpsinfo() argument
1379 dump_psinfo(note_state_t * state,const char * title) dump_psinfo() argument
1446 dump_prpsinfo(note_state_t * state,const char * title) dump_prpsinfo() argument
1525 dump_prcred(note_state_t * state,const char * title) dump_prcred() argument
1554 dump_prpriv(note_state_t * state,const char * title) dump_prpriv() argument
1575 dump_prfdinfo(note_state_t * state,const char * title) dump_prfdinfo() argument
1618 dump_priv_impl_info(note_state_t * state,const char * title) dump_priv_impl_info() argument
1654 dump_asrset(note_state_t * state,const char * title) dump_asrset() argument
[all...]
/titanic_52/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmMessageDialog.java49 public pmMessageDialog(String title, String msg) { in pmMessageDialog() argument
50 this(null, title, msg, null, null); in pmMessageDialog()
53 public pmMessageDialog(Frame f, String title, String msg) { in pmMessageDialog() argument
54 this(f, title, msg, null, null); in pmMessageDialog()
58 String title, in pmMessageDialog() argument
63 super(f, title, true); // modal in pmMessageDialog()
91 Debug.message("CLNT: MessageDialog: " + title + " , " + msg); in pmMessageDialog()
H A DpmOKCancelDialog.java45 public pmOKCancelDialog(Frame f, String title, String msg) { in pmOKCancelDialog() argument
46 this(f, title, msg, null, null, true); in pmOKCancelDialog()
49 public pmOKCancelDialog(Frame f, String title, String msg, boolean ok) { in pmOKCancelDialog() argument
50 this(f, title, msg, null, null, ok); in pmOKCancelDialog()
53 public pmOKCancelDialog(Frame f, String title, String msg, in pmOKCancelDialog() argument
55 this(f, title, msg, t, h, true); in pmOKCancelDialog()
58 public pmOKCancelDialog(Frame f, String title, String msg, in pmOKCancelDialog() argument
60 super(f, title, true); // modal in pmOKCancelDialog()
H A DpmHelpItem.java41 String title; field in pmHelpItem
49 title = null; in pmHelpItem()
58 * s += ("\ttitle: " + title + "\n"); in toString()
63 return title; in toString()
74 title = new String(s); in setTitle()
H A DpmDialog.java52 public pmDialog(Frame owner, String title) { in pmDialog() argument
53 this(owner, title, false); in pmDialog()
56 public pmDialog(Frame f, String title, boolean modal) { in pmDialog() argument
58 super(f, title, modal); in pmDialog()
H A DpmOther.java54 public pmOther(JFrame f, String title, String msg) { in pmOther() argument
55 this(f, title, msg, null, null); in pmOther()
58 public pmOther(JFrame f, String title, String msg, pmTop t, String h) { in pmOther() argument
60 super(f, title, true); // modal in pmOther()
/titanic_52/usr/src/cmd/format/
H A Dmenu.c138 run_menu(menu, title, prompt, display_flag) in run_menu() argument
140 char *title;
155 (void) strcpy(cur_title, title);
156 fmt_print("\n\n%s MENU:\n", title);
203 (void) strcpy(cur_title, title);
204 fmt_print("\n\n%s MENU:\n", title);
/titanic_52/usr/src/lib/libsmbfs/smb/
H A Dprint.c58 smb_open_printer(struct smb_ctx *ctx, const char *title, in smb_open_printer() argument
65 tlen = strlen(title); in smb_open_printer()
89 strlcpy(ioc.ioc_title, title, SMBIOC_MAX_NAME); in smb_open_printer()
/titanic_52/usr/src/cmd/tail/tests/
H A Dsun_solaris_tail.sh403 typeset title="$1"
426 [[ "$( < "${OUTFILE}")" == "${followstr}" ]] || err_exit "${title}: Expected $(doublebackslashquote "${followstr}"), got "$(doublebackslashquote "$( < "${OUTFILE}")")""
434 err_exit "${title}: tail pid=${tailchild} hung."
460 typeset title="$1"
478 err_exit "${title}: tail pid=${tailchild} hung."
486 [[ "${outstr}" == 49991*50000 ]] || err_exit "${title}: Expected match for 49991*50000, got "$(singlebackslashquote "${outstr}")""
/titanic_52/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_builtin_tail.sh395 typeset title="$1"
418 [[ "$( < "${OUTFILE}")" == "${followstr}" ]] || err_exit "${title}: Expected $(doublebackslashquote "${followstr}"), got "$(doublebackslashquote "$( < "${OUTFILE}")")""
426 err_exit "${title}: tail pid=${tailchild} hung."
452 typeset title="$1"
470 err_exit "${title}: tail pid=${tailchild} hung."
478 [[ "${outstr}" == 49991*50000 ]] || err_exit "${title}: Expected match for 49991*50000, got "$(singlebackslashquote "${outstr}")""
/titanic_52/usr/src/cmd/lp/model/
H A Duri104 ${title}
129 (${title}) 100 660 /Times-Bold 36 PrintLine
148 title=$3
196 IO_HANDLER_ARGS="${request_id} ${user} \"${title}\" 1
/titanic_52/usr/src/cmd/mandoc/
H A Dman_term.c1016 char *title; in print_man_foot() local
1020 assert(meta->title); in print_man_foot()
1032 * the title. in print_man_foot()
1040 mandoc_asprintf(&title, "%s(%s)", in print_man_foot()
1041 meta->title, meta->msec); in print_man_foot()
1043 title = mandoc_strdup(meta->source); in print_man_foot()
1045 title = mandoc_strdup(""); in print_man_foot()
1064 titlen = term_strlen(p, title); in print_man_foot()
1071 /* Bottom right corner: manual title and section. */ in print_man_foot()
1079 term_word(p, title); in print_man_foot()
1089 char *title; print_man_head() local
[all...]
H A Dman_html.c184 assert(man->title); in print_man_head()
186 bufcat_fmt(h, "%s(%s)", man->title, man->msec); in print_man_head()
298 char *title; in man_root_pre() local
300 assert(man->title); in man_root_pre()
302 mandoc_asprintf(&title, "%s(%s)", man->title, man->msec); in man_root_pre()
313 print_text(h, title); in man_root_pre()
324 print_text(h, title); in man_root_pre()
326 free(title); in man_root_pre()
H A Dman_validate.c141 if (NULL == man->meta.title) { in check_root()
146 * If a title hasn't been set, do so now (by in check_root()
150 man->meta.title = mandoc_strdup(""); in check_root()
305 free(man->meta.title); in post_TH()
311 man->meta.title = man->meta.vol = man->meta.date = in post_TH()
331 man->meta.title = mandoc_strdup(n->string); in post_TH()
333 man->meta.title = mandoc_strdup(""); in post_TH()
347 nb->line, nb->pos, "TH %s", man->meta.title); in post_TH()
/titanic_52/usr/src/lib/librstp/common/
H A Dvector.c148 STP_VECT_br_id_print (IN char *title, IN BRIDGE_ID* br_id, IN Bool cr) in STP_VECT_br_id_print() argument
151 title, in STP_VECT_br_id_print()
165 STP_VECT_print (IN char *title, IN PRIO_VECTOR_T *v) in STP_VECT_print() argument
167 stp_trace ("%s:", title); in STP_VECT_print()
/titanic_52/usr/src/cmd/perl/contrib/Sun/Solaris/BSM/
H A D_BSMparse.pm110 my $title = 'none';
211 [$callName, $description, $title,
215 $format = $description = $title = 'none';
233 elsif (/^\s*title\s*=\s*(.*)/i) {
234 $title = $1;
266 $attr{$label} = [$callName, $description, $title, $skip,
/titanic_52/usr/src/cmd/ast/libshell/common/scripts/
H A Dshman.sh281 typeset name namesec title
297 while IFS=$'\t' read name namesec title ; do
298 if [[ "${name}${namesec}${title}" == ~(Fi)${manname} ]] ; then
299 printf "%s\t%s\t%s\n" "${name}" "${namesec}" "${title}"
/titanic_52/usr/src/grub/
H A Dinstall_menu27 title Solaris Express
30 title Solaris Express Serial Console ttya
33 title Solaris Express Serial Console ttyb (for lx50, v60x and v65x)
/titanic_52/usr/src/cmd/lp/lib/requests/
H A Dfreerequest.c72 if (reqbufp->title)
73 Free (reqbufp->title);

1234567