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

12

/macosx-10.10.1/ppp-786.1.1/Controller/
H A Dscnc_utils.c677 int GetStrFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen, char *defaultval) argument
683 || !CFStringGetCString(ref, outstr, maxlen, kCFStringEncodingUTF8))
684 strncpy(outstr, defaultval, maxlen);
686 return strlen(outstr);
692 Boolean GetStrAddrFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen) argument
699 && CFStringGetCString(ref, outstr, maxlen, kCFStringEncodingUTF8)) {
700 addr = inet_addr(outstr);
710 Boolean GetStrNetFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen) argument
717 && CFStringGetCString(ref, outstr, maxlen, kCFStringEncodingUTF8)) {
718 net = inet_network(outstr);
[all...]
H A Dscnc_utils.h62 int GetStrFromDict (CFDictionaryRef dict, CFStringRef property, char *outstr, int maxlen, char *defaultval);
/macosx-10.10.1/vim-55/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...]
/macosx-10.10.1/gnutar-453/gnutar/src/
H A Dxheader.c824 char *outstr;
825 if (!utf8_convert (true, string, &outstr))
828 outstr = xstrdup (string);
830 xheader_print (xhdr, keyword, outstr);
831 free (outstr);
819 char *outstr; local
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dutils.c3510 VARARR(char, outstr, MB_CUR_MAX);
3523 len = wcrtomb(outstr, c, &mbs);
3528 } else if (len == 1 && isascii(outstr[0])) {
3529 return zistype(outstr[0], itype);
4403 char *ums, *ptr, *fmt, *outstr, *outptr; local
4408 outptr = outstr = zalloc(outalloc);
4411 outptr = outstr = NULL;
4455 if (outstr) {
4460 int outoffset = outptr - outstr;
4464 outstr
[all...]
/macosx-10.10.1/bootstrap_cmds-91/migcom.tproj/
H A Dtype.c377 itShortDecl(u_int inname, string_t instr, u_int outname, string_t outstr, u_int defsize) argument
388 it->itOutNameStr = outstr;
/macosx-10.10.1/Heimdal-398.1.2/lib/akadmin/
H A Dadmin.c1069 char *outstr, *cpOut;
1074 cpOut = outstr = (char *)malloc((2 * CC_SHA1_DIGEST_LENGTH) + 1);
1075 if (outstr == NULL)
1080 return outstr;
/macosx-10.10.1/autofs-246/automountd/
H A Dautod_parse.c158 char *outstr; local
161 outstr = malloc(outstrsize);
162 if (outstr == NULL)
164 *outstr = '/';
165 memcpy(outstr + 1, str, outstrsize - 1);
166 return (outstr);
/macosx-10.10.1/CPANInternal-159.1/Perl-Tidy-20121207/lib/Perl/
H A DTidy.pm3147 my $outstr = "";
3155 $outstr .= $1;
3158 $outstr .= $1;
3176 $outstr .= $1;
3186 $outstr .= $1;
3193 return ( $outstr, $msg );
[all...]

Completed in 373 milliseconds

12