Searched refs:text (Results 26 - 50 of 273) sorted by relevance

1234567891011

/osnet-11/usr/src/grub/grub2/grub-core/kern/x86_64/efi/
H A Dstartup.S24 .text
/osnet-11/usr/src/lib/libc/i386/crt/
H A D_rtboot.s30 / we get control from exec which has loaded our text and
76 .text
/osnet-11/usr/src/lib/libresolv2/common/irs/
H A Dirp_ng.c129 char text[256]; local
141 code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
145 group, text);
166 char text[256]; local
176 text, sizeof text,
207 char text[256]; local
221 code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
[all...]
H A Dirp_ho.c175 char text[256]; local
192 text, sizeof text,
230 char text[256]; local
255 text, sizeof text,
291 char text[256]; local
302 text, sizeof text,
331 char text[25 local
[all...]
H A Dirp_nw.c149 char text[256]; local
164 text, sizeof text,
197 char text[256]; local
213 text, sizeof text,
242 char text[256]; local
253 code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
256 syslog(LOG_WARNING, "setnetent failed: %s", text);
275 char text[256]; local
[all...]
H A Dirp_pr.c138 char text[256]; local
153 text, sizeof text,
187 char text[256]; local
202 text, sizeof text,
231 char text[256]; local
242 code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
245 syslog(LOG_WARNING, "setprotoent failed: %s", text);
264 char text[256]; local
[all...]
H A Dirp_sv.c142 char text[256]; local
153 text, sizeof text,
185 char text[256]; local
204 text, sizeof text,
237 char text[256]; local
256 text, sizeof text,
285 char text[25 local
[all...]
H A Dirp_p.h50 int irs_irp_read_response(struct irp_p *pvt, char *text, size_t textlen);
53 char *text, size_t textlen,
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A DInputObjects.t32 my $p_p1 = Pod::Paragraph->new( -text => 'NAME', -name => 'head2' );
43 is( $p_p1->text(), 'NAME', 'Pod::Paragraph->text()' );
44 is( $p_p2->text(), 'test - This is the test suite',
45 'Pod::Paragraph->text() revisited' );
47 is( $p_p2->text( $new_text ), $new_text,
48 'Pod::Paragraph->text( ... )' );
112 my $text = 'This is the test suite.';
113 $p_pt2->append( $text );
114 is( $p_pt2->raw_text(), $text, 'Po
[all...]
/osnet-11/usr/src/lib/sasl_plugins/plain/
H A Dplain.c286 client_context_t *text; local
289 text = params->utils->malloc(sizeof(client_context_t));
290 if (text == NULL) {
295 memset(text, 0, sizeof(client_context_t));
297 *conn_context = text;
311 client_context_t *text = (client_context_t *) conn_context; local
372 _plug_make_prompts(params->utils, &text->h, prompt_need,
374 convert_prompt(params->utils, &text->h,
379 convert_prompt(params->utils, &text->h,
384 convert_prompt(params->utils, &text
466 client_context_t *text = (client_context_t *) conn_context; local
[all...]
/osnet-11/usr/src/lib/libldap4/sec/
H A Dcram_md5.c17 /* text is the challenge, key is the password, digest is an allocated
19 void hmac_md5(unsigned char *text, int text_len, unsigned char *key, argument
51 (void) MD5Update(&context, text, text_len);
/osnet-11/usr/src/lib/libntsvcs/common/
H A Dmsgsvc_svc.c77 if (param->from == NULL || param->to == NULL || param->text == NULL) {
82 syslog(LOG_INFO, "%s to %s: %s", param->from, param->to, param->text);
/osnet-11/usr/src/grub/grub2/grub-core/kern/sparc64/
H A Dcache.S24 .text
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/MakeMaker/Test/Setup/
H A DRecurs.pm32 while(my($file, $text) = each %Files) {
39 print FILE $text;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DParseLink.pm1 # Pod::ParseLink -- Parse an L<> formatting code in POD text.
9 # This module implements parsing of the text of an L<> formatting code as
69 # Infer link text from the page and section.
83 # Given the contents of an L<> formatting code, parse it into the link text,
84 # the possibly inferred link text, the name or URL, the section, and the type
92 my $text;
94 ($text, $link) = split (/\|/, $link, 2);
97 my $inferred = $text || _infer_text ($name, $section);
99 return ($text, $inferred, $name, $section, $type);
114 Pod::ParseLink - Parse an LE<lt>E<gt> formatting code in POD text
[all...]
H A DInputObjects.pm38 reading and parsing POD text from an input source. The following objects
47 An object corresponding to a source of POD input text. It is mostly a
56 An object corresponding to a paragraph of POD input text. It may be a
63 input text (see L<perlpod>).
67 An object corresponding to a tree of parsed POD text. Each "node" in
68 a parse-tree (or I<ptree>) is either a text-string or a reference to
228 An object representing a paragraph of POD input text.
237 my $pod_para1 = Pod::Paragraph->new(-text => $text);
239 -text
314 sub text { subroutine
[all...]
H A DHtml.pm72 Creates header and footer blocks containing the text of the C<NAME>
290 $Backlink = ''; # text for "back to top" links
292 @Listend = (); # the text to use to end the list.
294 $Ignore = 1; # whether or not to format text. we don't
295 # format text until we hit our first pod
449 $csslink = qq(\n<link rel="stylesheet" href="$Css" type="text/css" />);
521 } elsif (/^=item\s*(.*\S)?/sm) { # =item text
543 my $text = $_;
544 if( $text =~ /\A\s+/ ){
545 process_pre( \$text );
[all...]
/osnet-11/usr/src/lib/libast/common/string/
H A Dfmtsignal.c27 * if sig>=0 then return signal text for signal sig
43 buf = sig_info.text[sig];
/osnet-11/usr/src/grub/grub2/grub-core/gfxmenu/
H A Dgui_label.c1 /* gui_label.c - GUI component to display a line of text. */
48 char *text; member in struct:grub_gui_label
63 grub_free (self->text);
98 - grub_font_get_string_width (self->font, self->text)) / 2;
101 - grub_font_get_string_width (self->font, self->text));
110 grub_font_draw_string (self->text,
150 *width = grub_font_get_string_width (self->font, self->text);
162 grub_free (self->text);
163 self->text = grub_xasprintf (self->template ? : "%d", self->value);
170 if (grub_strcmp (name, "text")
[all...]
/osnet-11/usr/src/common/crypto/ecc/
H A Decl_curve.c69 if (params->text != NULL) {
71 ret->text = kmem_alloc(strlen(params->text) + 1, kmflag);
72 bcopy(params->text, ret->text, strlen(params->text) + 1);
74 CHECK(ret->text = strdup(params->text));
157 if (params->text != NULL)
159 kmem_free(params->text, strle
[all...]
/osnet-11/usr/src/lib/libbsm/common/
H A Daudit_plugin.c101 * text - when used with options soft and hard: which file was being
108 __audit_dowarn(char *option, char *text, int count) argument
126 if (text == NULL) {
127 text = empty;
132 (void) execl(auditwarn, auditwarn, option, text, NULL);
135 (strcmp(option, "soft") == 0) ? "soft" : "hard", text);
143 (void) execl(auditwarn, auditwarn, option, text,
149 (void) execl(auditwarn, auditwarn, option, text, 0);
151 LOG_AUTH, LOG_ALERT, "error %s - %s.", option, text);
169 * text
176 __audit_dowarn2(char *option, char *name, char *error, char *text, int count) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/kern/i386/coreboot/
H A Dstartup.S37 .text
/osnet-11/usr/src/grub/grub2/grub-core/kern/powerpc/ieee1275/
H A Dstartup.S26 .text
/osnet-11/usr/src/grub/grub2/grub-core/lib/sparc64/
H A Dsetjmp.S26 .text
/osnet-11/usr/src/grub/grub-0.97/docs/
H A Dboot.S21 .text

Completed in 55 milliseconds

1234567891011