Home
last modified time | relevance | path

Searched refs:tempstring (Results 1 – 3 of 3) sorted by relevance

/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_smb.c1190 char tempstring[256]; in interpret_tconX() local
1202 length = snprintf(tempstring, sizeof (tempstring), "%s", in interpret_tconX()
1204 sprintf(xtra, "Share=%s ", tempstring); in interpret_tconX()
1209 length = snprintf(tempstring, sizeof (tempstring), "%s", in interpret_tconX()
1211 sprintf(xtra, "Type=%s ", tempstring); in interpret_tconX()
1232 length = snprintf(tempstring, sizeof (tempstring), "%s", in interpret_tconX()
1235 sprintf(GETLINE, "FileName = %s", tempstring); in interpret_tconX()
1236 length = snprintf(tempstring, sizeof (tempstring), "%s", in interpret_tconX()
1239 sprintf(GETLINE, "ServiceName = %s", tempstring); in interpret_tconX()
1256 length = snprintf(tempstring, sizeof (tempstring), "%s", in interpret_tconX()
[all …]
/onnv-gate/usr/src/lib/libc/port/i18n/
H A Dwsscanf.c59 char *tempstring = stackbuf; in wsscanf() local
63 i = wcstombs(tempstring, string, MAXINSTR); in wsscanf()
68 tempstring = malloc(malloced = MB_CUR_MAX*wcslen(string)+1); in wsscanf()
69 if (tempstring == 0) in wsscanf()
71 i = wcstombs(tempstring, string, malloced); /* Try again. */ in wsscanf()
73 free(tempstring); in wsscanf()
79 j = vsscanf(tempstring, format, ap); in wsscanf()
81 if (malloced) free(tempstring); in wsscanf()
H A Dwsprintf.c52 char tempstring[1024]; in wsprintf() local
73 p2 = tempstring; in wsprintf()