Searched refs:outstr (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dobjnames-test08.sh86 outstr=`curl_8char_object_name $argstr`
87 echo "result: $outstr expected: $expect input: $argstr"
91 outstr=`curl_8char_object_name $argstr`
92 echo "result: $outstr expected: $expect input: $argstr"
96 outstr=`curl_8char_object_name $argstr`
97 echo "result: $outstr expected: $expect input: $argstr"
101 outstr=`curl_8char_object_name $argstr`
102 echo "result: $outstr expected: $expect input: $argstr"
106 outstr=`curl_8char_object_name $argstr`
107 echo "result: $outstr expecte
[all...]
H A Dobjnames-test10.sh86 outstr=`curl_10char_object_name $argstr`
87 echo "result: $outstr expected: $expect input: $argstr"
91 outstr=`curl_10char_object_name $argstr`
92 echo "result: $outstr expected: $expect input: $argstr"
96 outstr=`curl_10char_object_name $argstr`
97 echo "result: $outstr expected: $expect input: $argstr"
101 outstr=`curl_10char_object_name $argstr`
102 echo "result: $outstr expected: $expect input: $argstr"
106 outstr=`curl_10char_object_name $argstr`
107 echo "result: $outstr expecte
[all...]
/macosx-10.9.5/xnu-2422.115.4/tools/lldbmacros/plugins/
H A Dzprint_perf_log.py12 returns: (status, outstr, further_cmds)
14 outstr: str - string output for user to be printed at the prompt
18 outstr = 'Nothing to be done here'
26 outstr += "Num of zones analyzed =" + str(num_zones) + "\n"
27 return (status, outstr, further_cmds)
H A Dspeedtracer.py13 returns: (status, outstr, further_cmds)
15 outstr: str - string output for user to be printed at the prompt
19 outstr = ''
32 outstr += "CrashTracer data found at " + response.info()['location']
38 outstr += "unknown response from server \n" + str(response.info())
41 return (status, outstr, further_cmds)
/macosx-10.9.5/ppp-727.90.1/Helpers/vpnd/
H A Dcf_utils.h48 int GetStrFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen, char *defaultval);
50 Boolean GetStrAddrFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen);
52 Boolean GetStrNetFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen);
H A Dcf_utils.c197 int GetStrFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen, char *defaultval) argument
203 || !CFStringGetCString(ref, outstr, maxlen, kCFStringEncodingUTF8))
204 strncpy(outstr, defaultval, maxlen);
206 return strlen(outstr);
212 Boolean GetStrAddrFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen) argument
219 && CFStringGetCString(ref, outstr, maxlen, kCFStringEncodingUTF8)) {
220 addr = inet_addr(outstr);
230 Boolean GetStrNetFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen) argument
237 && CFStringGetCString(ref, outstr, maxlen, kCFStringEncodingUTF8)) {
238 net = inet_network(outstr);
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/tests/progs/
H A Dslapd-mtread.c178 char outstr[BUFSIZ]; local
338 snprintf(outstr, BUFSIZ, "MT Test Start: conns: %d (%s)", noconns, uri);
339 tester_error(outstr);
340 snprintf(outstr, BUFSIZ, "Threads: RO: %d RW: %d", threads, rwthreads);
341 tester_error(outstr);
346 snprintf(outstr, BUFSIZ, "Created RO thread %d", i);
347 thread_verbose(-1, outstr);
352 snprintf(outstr, BUFSIZ, "Created RW thread %d", i + MAX_THREAD);
353 thread_verbose(-1, outstr);
373 snprintf(outstr, BUFSI
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dutfconv.h172 * pointed to by outstr. The size of the output in bytes (not including
174 * are not supported (i.e. instr != outstr). Both buffers must reside
192 utf8_normalizestr(const u_int8_t* instr, size_t inlen, u_int8_t* outstr,
/macosx-10.9.5/vim-53/src/proto/
H A Dos_mswin.pro25 int utf8_to_utf16 __ARGS((char_u *instr, int inlen, short_u *outstr, int *unconvlenp));
26 int utf16_to_utf8 __ARGS((short_u *instr, int inlen, char_u *outstr));
/macosx-10.9.5/Heimdal-323.92.1/appl/ftp/ftpd/
H A Dftpd.c1334 * Tranfer the contents of "instr" to "outstr" peer using the appropriate
1340 send_data(FILE *instr, FILE *outstr) argument
1355 sec_putc('\r', outstr);
1356 sec_putc(c, outstr);
1358 sec_fflush(outstr);
1363 if (ferror(outstr))
1388 sec_write(fileno(outstr), chunk + restart_point, cnt);
1391 sec_fflush(outstr);
1403 netfd = fileno(outstr);
1419 sec_fflush(outstr); /* t
1456 receive_data(FILE *instr, FILE *outstr) argument
[all...]
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dpattern.c1076 * If outstr is non-NULL the compiled form is placed there. It
1088 pattern_range_to_string(char *rangestr, char *outstr) argument
1098 if (outstr)
1100 *outstr++ = Meta;
1101 *outstr++ = rangestr[1] ^ 32;
1111 if (outstr) {
1112 *outstr++ = Meta;
1113 *outstr++ = rangestr[1];
1118 if (outstr)
1119 *outstr
[all...]
/macosx-10.9.5/syslog-217.1.4/libsystem_asl.tproj/src/
H A Dasl_legacy1.c374 char *outstr, *p, tmp[DB_RECORD_LEN]; local
396 outstr = calloc(1, len);
397 if (outstr == NULL) return ASL_STATUS_NO_MEMORY;
399 p = outstr;
416 free(outstr);
423 free(outstr);
439 free(outstr);
443 *out = outstr;
/macosx-10.9.5/xnu-2422.115.4/bsd/vfs/
H A Dvfs_utfconv.c713 * pointed to by outstr. The size of the output in bytes (not including
715 * are not supported (i.e. instr != outstr).]
732 utf8_normalizestr(const u_int8_t* instr, size_t inlen, u_int8_t* outstr, argument
754 outbufstart = outstr;
760 if (outstr >= outbufend) {
768 *outstr++ = byte;
771 *outlen = outstr - outbufstart;
773 if (outstr < outbufend)
774 *outstr++ = '\0';
816 outstr
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/dlz/drivers/
H A Ddlz_mysql_driver.c105 char *outstr; local
113 outstr = isc_mem_allocate(ns_g_mctx ,(2 * len * sizeof(char)) + 1);
114 if (outstr == NULL)
117 mysql_real_escape_string(mysql, outstr, instr, len);
119 return outstr;
H A Ddlz_postgres_driver.c250 char *outstr; local
258 outstr = isc_mem_allocate(ns_g_mctx ,(2 * len * sizeof(char)) + 1);
259 if (outstr == NULL)
262 postgres_makesafe(outstr, instr, len);
263 /* PQescapeString(outstr, instr, len); */
265 return outstr;
H A Ddlz_odbc_driver.c386 char *outstr; local
394 outstr = isc_mem_allocate(ns_g_mctx ,(2 * len * sizeof(char)) + 1);
395 if (outstr == NULL)
398 odbc_makesafe(outstr, instr, len);
400 return outstr;
/macosx-10.9.5/zsh-60/zsh/Src/Zle/
H A Dzle_utils.c369 * zfree(outstr, *outsz) or free(outstr), not zfree(outstr, *outll).
376 ZLE_STRING_T outstr; local
435 outstr = (ZLE_STRING_T)zalloc(sz);
440 wchar_t *outptr = outstr;
485 *outcs = outptr - outstr;
496 rhp->start = outptr - outstr + sub;
500 rhp->end = outptr - outstr + sub;
511 *outcs = outptr - outstr;
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/build_vxworks/db_load/
H A Ddb_load.c1024 * means that outstr cannot contain any nuls.
1031 char *outstr; local
1040 if ((outstr = malloc(strlen(instr) + 1)) == NULL)
1043 *outstrp = outstr;
1048 *outstr++ = '\\';
1051 DIGITIZE(*outstr++, *instr, *++instr);
1053 *outstr++ = *instr;
1055 *outstr = '\0';
/macosx-10.9.5/BerkeleyDB-21/db/db_load/
H A Ddb_load.c1009 * means that outstr cannot contain any nuls.
1016 char *outstr; local
1025 if ((outstr = malloc(strlen(instr) + 1)) == NULL)
1028 *outstrp = outstr;
1033 *outstr++ = '\\';
1036 DIGITIZE(*outstr++, *instr, *++instr);
1038 *outstr++ = *instr;
1040 *outstr = '\0';
/macosx-10.9.5/launchd-842.92.1/liblaunch/
H A Dvproc_priv.h119 const char *instr, char **outstr);
/macosx-10.9.5/less-23/less/
H A Dscreen.c1427 tmodes(incap, outcap, instr, outstr, def_instr, def_outstr, spp)
1431 char **outstr;
1441 *outstr = def_outstr;
1445 *outstr = ltgetstr(outcap, spp);
1446 if (*outstr == NULL)
1448 *outstr = ltgetstr("me", spp);
1449 if (*outstr == NULL)
1451 *outstr = "";
/macosx-10.9.5/Heimdal-323.92.1/lib/akadmin/
H A Dadmin.c953 char *outstr, *cpOut;
958 cpOut = outstr = (char *)malloc((2 * CC_SHA1_DIGEST_LENGTH) + 1);
959 if (outstr == NULL)
964 return outstr;
/macosx-10.9.5/MITKerberosShim-62.1/
H A Dmisc.c648 char *outstr, *cpOut; local
658 cpOut = outstr = (char *)malloc((2 * CC_SHA1_DIGEST_LENGTH) + 1);
659 if(outstr == NULL)
665 return outstr;
/macosx-10.9.5/ppp-727.90.1/Controller/
H A Dscnc_utils.c676 int GetStrFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen, char *defaultval) argument
682 || !CFStringGetCString(ref, outstr, maxlen, kCFStringEncodingUTF8))
683 strncpy(outstr, defaultval, maxlen);
685 return strlen(outstr);
691 Boolean GetStrAddrFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen) argument
698 && CFStringGetCString(ref, outstr, maxlen, kCFStringEncodingUTF8)) {
699 addr = inet_addr(outstr);
709 Boolean GetStrNetFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen) argument
716 && CFStringGetCString(ref, outstr, maxlen, kCFStringEncodingUTF8)) {
717 net = inet_network(outstr);
[all...]
/macosx-10.9.5/vim-53/src/
H A Dos_mswin.c902 * When "outstr" is NULL only return the number of UTF-16 words produced.
903 * Otherwise "outstr" must be a buffer of sufficient size.
907 utf8_to_utf16(char_u *instr, int inlen, short_u *outstr, int *unconvlenp) argument
932 if (outstr != NULL)
934 *outstr++ = (0xD800 - (0x10000 >> 10)) + (ch >> 10);
935 *outstr++ = 0xDC00 | (ch & 0x3FF);
938 else if (outstr != NULL)
939 *outstr++ = ch;
951 * When "outstr" is NULL only return the required number of bytes.
952 * Otherwise "outstr" mus
956 utf16_to_utf8(short_u *instr, int inlen, char_u *outstr) argument
[all...]

Completed in 324 milliseconds

12