Home
last modified time | relevance | path

Searched refs:text (Results 26 – 50 of 1143) sorted by relevance

12345678910>>...46

/illumos-gate/usr/src/common/crypto/ecc/
H A Decl_curve.c67 if (params->text != NULL) { in ECCurveParams_dup()
69 ret->text = kmem_alloc(strlen(params->text) + 1, kmflag); in ECCurveParams_dup()
70 bcopy(params->text, ret->text, strlen(params->text) + 1); in ECCurveParams_dup()
72 CHECK(ret->text = strdup(params->text)); in ECCurveParams_dup()
155 if (params->text != NULL) in EC_FreeCurveParams()
157 kmem_free(params->text, strlen(params->text) + 1); in EC_FreeCurveParams()
159 free(params->text); in EC_FreeCurveParams()
/illumos-gate/usr/src/common/ficl/
H A Dcallback.c10 ficlCallbackTextOut(ficlCallback *callback, char *text) in ficlCallbackTextOut() argument
20 text); in ficlCallbackTextOut()
33 (textOut)(callback, text); in ficlCallbackTextOut()
41 ficlCallbackErrorOut(ficlCallback *callback, char *text) in ficlCallbackErrorOut() argument
51 text); in ficlCallbackErrorOut()
62 ficlCallbackTextOut(callback, text); in ficlCallbackErrorOut()
66 (errorOut)(callback, text); in ficlCallbackErrorOut()
H A Dutility.c209 ficlCompatibilityTextOutCallback(ficlCallback *callback, char *text, in ficlCompatibilityTextOutCallback() argument
215 if (text == NULL) { in ficlCompatibilityTextOutCallback()
220 while (*text) { in ficlCompatibilityTextOutCallback()
223 while ((*text) && (trace < bufferStop)) { in ficlCompatibilityTextOutCallback()
224 switch (*text) { in ficlCompatibilityTextOutCallback()
227 text++; in ficlCompatibilityTextOutCallback()
230 text++; in ficlCompatibilityTextOutCallback()
234 *trace++ = *text++; in ficlCompatibilityTextOutCallback()
/illumos-gate/usr/src/tools/scripts/
H A Dvalidate_flg.pl64 my ($expfile, $newpath, $line, $cont, $firstline, $text);
85 $text = $text . $_;
88 $text = $_;
92 $text =~ s/\\$//;
96 if ($text =~ /\s*echo_file\s+(\S+)/) {
99 } elsif ($text =~ /\s*find_files\s+['"]([^'"]+)['"]\s+(.*)/) {
111 } elsif ($text =~ /\s*exec_file\s+(\S+)/) {
120 warn "$0: $fname:$firstline: unknown entry: $text\n";
/illumos-gate/usr/src/cmd/tsol/misc/
H A Dtxzonemgr.sh226 --entry-text="" \
531 --text="$msg_clone" \
812 --entry-text a.b.c.d)
845 --text="$msg" )
857 --entry-text="" \
903 --entry-text a.b.c.d)
926 --text="$syntax")
1010 --text="$syntax")
1340 --hide-text \
1345 --hide-text \
[all …]
/illumos-gate/usr/src/cmd/bnu/
H A Dstatlog.c46 char text[ 100 ]; local
61 (void) sprintf(text, "%s %lu / %lu.%.3lu secs, %lu bytes/sec %s",
65 sprintf(text + strlen(text), " %d retries", Retries);
69 CDEBUG(4, "%s\n", text);
70 usyslog(text);
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A Dsymreport.pl631 my $text;
659 if (! defined($text)) {
662 return $text;
678 my $text;
681 $text = sprintf(gettext(
688 return $text;
819 $text .= sprintf(gettext(
822 $text .= "\n";
826 $text .= sprintf(gettext(
829 $text .= "\n";
[all …]
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dtable.test26 two text
34 two text
147 f4 text,
148 f5 text,
149 f6 text,
150 f7 text,
151 f8 text,
152 f9 text,
163 f20 text
496 } {numeric numeric text text text text text numeric}
[all …]
/illumos-gate/usr/src/lib/libresolv2/common/irs/
H A Dirp_ho.c171 char text[256]; in ho_byname2() local
188 text, sizeof text, in ho_byname2()
226 char text[256]; in ho_byaddr() local
251 text, sizeof text, in ho_byaddr()
287 char text[256]; in ho_next() local
298 text, sizeof text, in ho_next()
327 char text[256]; in ho_rewind() local
338 code = irs_irp_read_response(pvt->girpdata, text, sizeof text); in ho_rewind()
341 syslog(LOG_WARNING, "sethostent failed: %s", text); in ho_rewind()
/illumos-gate/usr/src/cmd/gencat/
H A Dgencat.c282 new_msg(no, len, text) in new_msg() argument
285 char *text;
307 char *text;
577 if (text) in extend_text()
578 text = REALLOC(text, text_size); in extend_text()
581 if (text == NULL) { in extend_text()
599 text[i] = c;
608 text[i] = NUL;
845 text[0] = DOLLAR;
849 text[text_len] = c;
[all …]
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dfsck.h395 #define LINK_RANGE(text, current, offset) { \ argument
397 text = NULL; \
399 text = "UNDERFLOW"; \
401 text = "OVERFLOW"; \
419 #define LINK_CLEAR(text, ino, mode, idp) { \ argument
438 LINK_RANGE(text, current, offset); \
439 if (text != NULL) { \
440 LINK_CLEAR(text, lfdir, IFDIR, idp); \
451 LINK_RANGE(text, current, offset); \
452 if (text != NULL) { \
[all …]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A DiscsiAuthClientGlue.c211 iscsiAuthClientTextToNumber(const char *text, unsigned long *pNumber) in iscsiAuthClientTextToNumber() argument
216 if (text[0] == '0' && (text[1] == 'x' || text[1] == 'X')) { in iscsiAuthClientTextToNumber()
217 if (ddi_strtoul(text + 2, &pEnd, 16, &number) != 0) { in iscsiAuthClientTextToNumber()
221 if (ddi_strtoul(text, &pEnd, 10, &number) != 0) { in iscsiAuthClientTextToNumber()
226 if (*text != '\0' && *pEnd == '\0') { in iscsiAuthClientTextToNumber()
236 iscsiAuthClientNumberToText(unsigned long number, char *text, in iscsiAuthClientNumberToText() argument
239 (void) sprintf(text, "%lu", number); in iscsiAuthClientNumberToText()
H A DiscsiAuthClient.c253 *text = '\0'; in iscsiAuthClientDataToHex()
258 *text = '\0'; in iscsiAuthClientDataToHex()
262 *text++ = '0'; in iscsiAuthClientDataToHex()
263 *text++ = 'x'; in iscsiAuthClientDataToHex()
283 *text = '\0'; in iscsiAuthClientDataToHex()
365 *text = '\0'; in iscsiAuthClientDataToBase64()
475 while (*text != '\0' && *text != '=') { in iscsiAuthClientBase64ToData()
553 if (text[0] == '0' && (text[1] == 'x' || text[1] == 'X')) { in iscsiAuthClientTextToData()
557 text += 2; in iscsiAuthClientTextToData()
561 } else if (text[0] == '0' && (text[1] == 'b' || text[1] == 'B')) { in iscsiAuthClientTextToData()
[all …]
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Dscn.c214 scn_text_t *text in free_scn_text() argument
218 free(text->iscsi); in free_scn_text()
219 free(text); in free_scn_text()
221 text->ref --; in free_scn_text()
1067 text->flag = 0; in scn_gen_iscsi()
1080 return (text); in scn_gen_iscsi()
1153 l = text; in scn_gen_portal()
1371 scn_text_t *text in scn_disp() argument
1383 t = text; in scn_disp()
1425 t = text->next; in scn_disp()
[all …]
/illumos-gate/usr/src/boot/efi/loader/arch/i386/
H A Dldscript.i3866 /* Read-only sections, merged into text segment: */
11 .text : {
12 mb_header.o(.text)
13 *(.text .stub .text.* .gnu.linkonce.t.*)
56 *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*)
/illumos-gate/usr/src/cmd/man/
H A Dmakewhatis.c213 (void) memcpy(sbuf->end, text, length); in sbuf_append()
225 sbuf_append(sbuf, text, strlen(text)); in sbuf_append_str()
236 if ((length = strlen(text)) > 0) { in sbuf_append_edited()
480 add_nroff(char *text) in add_nroff() argument
608 arg = text; in collect_names()
609 text = strchr(text, ','); in collect_names()
610 if (text != NULL) in collect_names()
611 *text++ = '\0'; in collect_names()
613 if (text == NULL) in collect_names()
615 if (*text == ' ') in collect_names()
[all …]
/illumos-gate/usr/src/test/util-tests/tests/awk/gnu/
H A Dgawksub.awk2 text = "here is some text"
4 printf "orig = \"%s\", repl = \"%s\"\n", text, repl
5 sub(/some/, repl, text)
6 printf "result is \"%s\"\n", text
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/mech/
H A Dk5seal.c61 gss_buffer_t text, in make_seal_token_v1() argument
118 msglen = conflen + text->length+1; in make_seal_token_v1()
123 msglen = (conflen+text->length+8)&(~7); in make_seal_token_v1()
124 pad = 8-(text->length%8); in make_seal_token_v1()
129 msglen = text->length; in make_seal_token_v1()
210 (void) memcpy(plain+conflen, text->value, text->length); in make_seal_token_v1()
211 if (pad) (void) memset(plain+conflen+text->length, pad, pad); in make_seal_token_v1()
217 (bigend ? text->length : msglen)))) { in make_seal_token_v1()
224 (void) memcpy(data_ptr+8, text->value, text->length); in make_seal_token_v1()
227 plaind.length = 8 + (bigend ? text->length : msglen); in make_seal_token_v1()
[all …]
/illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/
H A Dt.format42 text=sprintf ("%125s", "x")
3 print length (text)
4 print text
5 xxx=substr (text,1,105)
/illumos-gate/usr/src/cmd/more/
H A Dmore.help5 <space> Display next k lines of text [current screen size]
6 z Display next k lines of text [current screen size]*
7 <return> Display next k lines of text [1]*
10 s Skip forward k lines of text [1]
11 f Skip forward k screenfuls of text [1]
12 b or ctrl-B Skip backwards k screenfuls of text [1]
/illumos-gate/usr/src/cmd/mandoc/
H A Deqn_term.c80 (*bp->prev->text == '\\' || in eqn_box()
81 isalpha((unsigned char)*bp->prev->text)))))) in eqn_box()
94 if (bp->text != NULL) { in eqn_box()
95 if (strchr("!\"'),.:;?]}", *bp->text) != NULL) in eqn_box()
97 term_word(p, bp->text); in eqn_box()
98 if ((cp = strchr(bp->text, '\0')) > bp->text && in eqn_box()
101 (cp >= bp->text + 5 && in eqn_box()
/illumos-gate/usr/src/tools/cscope-fast/
H A Dmouse.c102 for (i = 0; loadedmenu[i].text != NULL; ++i) { in cleanupmouse()
122 (void) printf("\033M0@%s@%s@", menu[0].text, in downloadmenu()
124 for (i = 1; menu[i].text != NULL; ++i) { in downloadmenu()
125 (void) printf("\033M@%s@%s@", menu[i].text, in downloadmenu()
135 for (i = 0; menu[i].text != NULL; ++i) { in downloadmenu()
136 len = strlen(menu[i].text); in downloadmenu()
139 menu[i].text, menu[i].value); in downloadmenu()
/illumos-gate/usr/src/tools/smatch/src/
H A Dast-model.h49 const gchar *text; member
71 AstNode* ast_append_child(AstNode *parent, const char *text, in ast_append_child() argument
76 text, ptr, inspect); in ast_append_child()
84 void ast_append_attribute(AstNode *parent, const char *text) in ast_append_attribute() argument
86 AstNode *child = ast_new(parent, parent->childnodes->len, text, NULL, NULL); in ast_append_attribute()
/illumos-gate/usr/src/boot/efi/loader/arch/arm64/
H A Dldscript.arm649 /* Read-only sections, merged into text segment: */
12 .text : {
14 *(.text .stub .text.* .gnu.linkonce.t.*)
63 *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
/illumos-gate/usr/src/test/test-runner/stf/contrib/include/
H A Dlogapi.shlib33 # $@ - assertion text
42 # $@ - comment text
293 # $@ - message text
302 # $@ - message text
311 # $@ - message text
320 # $@ - message text
329 # $@ - message text
338 # $@ - message text
347 # $@ - message text
356 # $@ - message text
[all …]

12345678910>>...46