Searched refs:cstr (Results 1 - 25 of 97) sorted by relevance

1234

/macosx-10.10/mDNSResponder-561.1.1/Clients/
H A DClientCommon.c46 const char *GetNextLabel(const char *cstr, char label[64]) argument
49 while (*cstr && *cstr != '.') // While we have characters in the label...
51 char c = *cstr++;
52 if (c == '\\' && *cstr) // If we have a backslash, and it's not the last character of the string
54 c = *cstr++;
55 if (isdigit(cstr[-1]) && isdigit(cstr[0]) && isdigit(cstr[1]))
57 int v0 = cstr[
[all...]
H A DClientCommon.h41 extern const char *GetNextLabel(const char *cstr, char label[64]);
/macosx-10.10/swig-12/Lib/tcl/
H A Dtclstrings.swg10 char *cstr = Tcl_GetStringFromObj(obj, &len);
11 if (cstr) {
12 if (cptr) *cptr = cstr;
H A Djstring.i8 const char *cstr = Tcl_GetStringFromObj(obj, &len);
9 if (!cstr || (strcmp(cstr,"NULL") == 0)) {
/macosx-10.10/Heimdal-398.1.2/lib/hx509/
H A Derror.c144 const char *cstr; local
149 cstr = com_right_r(context->et_list, error_code, buf, sizeof(buf));
150 if (cstr)
151 return strdup(cstr);
152 cstr = strerror(error_code);
153 if (cstr)
154 return strdup(cstr);
/macosx-10.10/Security-57031.1.35/Security/utilities/src/
H A DSecCFWrappers.c40 const char *cstr = CFStringGetCStringPtr(inStr, kCFStringEncodingUTF8); local
41 if (cstr) {
42 operation(cstr, strlen(cstr));
71 const char *cstr = CFStringGetCStringPtr(inStr, kCFStringEncodingUTF8); local
72 if (cstr) {
73 operation(cstr);
/macosx-10.10/Security-57031.1.35/Security/utilities/utilities/
H A DSecCFWrappers.c40 const char *cstr = CFStringGetCStringPtr(inStr, kCFStringEncodingUTF8); local
41 if (cstr) {
42 operation(cstr, strlen(cstr));
71 const char *cstr = CFStringGetCStringPtr(inStr, kCFStringEncodingUTF8); local
72 if (cstr) {
73 operation(cstr);
/macosx-10.10/WebCore-7600.1.25/html/
H A DFormDataList.cpp36 CString cstr = m_encoding.encode(s, EntitiesForUnencodables); local
37 m_items.append(normalizeLineEndingsToCRLF(cstr));
/macosx-10.10/swig-12/Lib/ruby/
H A Drubystrings.swg11 char *cstr = StringValuePtr(obj);
13 char *cstr = STR2CSTR(obj);
19 *cptr = %new_copy_array(cstr, size, char);
21 *cptr = cstr;
H A Djstring.i13 char *cstr = rb_string_value_ptr(&(obj));
15 *val = JvNewStringLatin1(cstr, len);
/macosx-10.10/KerberosHelper-151/Source/
H A DDeconstructServiceName.c65 const char *cstr = cstring; local
68 while (*cstr && ptr < lim) // While more characters, and space to put them...
71 if (*cstr == '.') { /* fprintf(stderr, "AppendDNSNameString: Illegal empty label in name \"%s\"", cstring); */ return(NULL); }
72 while (*cstr && *cstr != '.' && ptr < lim) // While we have characters in the label...
74 UInt8 c = (UInt8)*cstr++; // Read the character
77 c = (UInt8)*cstr++; // Assume we'll just take the next character
78 if (mdnsIsDigit(c) && mdnsIsDigit(cstr[0]) && mdnsIsDigit(cstr[1])) { // If three decimal digits,
80 int v1 = cstr[
157 MakeDomainNameFromDNSNameString(domainname *const name, const char *cstr) argument
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/isc/include/isc/
H A Dbase64.h59 isc_base64_decodestring(const char *cstr, isc_buffer_t *target);
64 *\li 'cstr' is non-null.
70 *\li #ISC_R_BADBASE64 -- 'cstr' is not a valid base64 encoding.
H A Dhex.h59 isc_hex_decodestring(const char *cstr, isc_buffer_t *target);
64 *\li 'cstr' is non-null.
70 *\li #ISC_R_BADHEX -- 'cstr' is not a valid hex encoding.
H A Dbase32.h69 isc_base32_decodestring(const char *cstr, isc_buffer_t *target);
71 isc_base32hex_decodestring(const char *cstr, isc_buffer_t *target);
76 *\li 'cstr' is non-null.
82 *\li #ISC_R_BADBASE32 -- 'cstr' is not a valid base32 encoding.
/macosx-10.10/bind9-45.101/bind9/lib/isccc/include/isccc/
H A Dbase64.h68 isccc_base64_decode(const char *cstr, isccc_region_t *target);
73 *\li 'cstr' is non-null.
79 *\li #ISC_R_BADBASE64 -- 'cstr' is not a valid base64 encoding.
/macosx-10.10/ntp-92/lib/isc/include/isc/
H A Dbase64.h59 isc_base64_decodestring(const char *cstr, isc_buffer_t *target);
64 *\li 'cstr' is non-null.
70 *\li #ISC_R_BADBASE64 -- 'cstr' is not a valid base64 encoding.
H A Dhex.h59 isc_hex_decodestring(const char *cstr, isc_buffer_t *target);
64 *\li 'cstr' is non-null.
70 *\li #ISC_R_BADHEX -- 'cstr' is not a valid hex encoding.
H A Dbase32.h69 isc_base32_decodestring(const char *cstr, isc_buffer_t *target);
71 isc_base32hex_decodestring(const char *cstr, isc_buffer_t *target);
76 *\li 'cstr' is non-null.
82 *\li #ISC_R_BADBASE32 -- 'cstr' is not a valid base32 encoding.
/macosx-10.10/swig-12/Lib/python/
H A Dpystrings.swg14 char *cstr; Py_ssize_t len;
24 PyBytes_AsStringAndSize(obj, &cstr, &len);
27 PyString_AsStringAndSize(obj, &cstr, &len);
46 *cptr = %new_copy_array(cstr, len + 1, char);
50 *cptr = cstr;
/macosx-10.10/swig-12/Lib/perl5/
H A Dperlstrings.swg16 char *cstr = SvPV(obj, len);
21 *cptr = %new_copy_array(cstr, size, char);
23 *cptr = cstr;
/macosx-10.10/webdavfs-367/mount.tproj/
H A DLogMessage.c149 char *cstr = NULL; local
152 cstr = createUTF8CStringFromCFString(str);
155 if (cstr == NULL)
157 syslog(LOG_DEBUG, "%s\n", cstr);
160 if (cstr != NULL)
161 syslog(LOG_DEBUG, "%s %s\n", msg, cstr);
166 if (cstr != NULL)
167 free(cstr);
/macosx-10.10/security_dotmac_tp-55107.1/lib/
H A DdotMacTpMutils.h46 const char *cstr,
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dutf-8.c484 const char *cstr; local
487 for( cstr = str; *cstr != '\0'; LDAP_UTF8_INCR(cstr) ) {
489 if( ldap_x_utf8_to_ucs4( cstr ) == ldap_x_utf8_to_ucs4( cset ) ) {
490 return cstr - str;
495 return cstr - str;
501 const char *cstr; local
504 for( cstr = str; *cstr !
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/InspectorServer/gtk/
H A DWebInspectorServerGtk.cpp66 CString cstr = builder.toString().utf8(); local
67 data.append(cstr.data(), cstr.length());
128 CString cstr = builder.toString().utf8(); local
129 data.append(cstr.data(), cstr.length());
/macosx-10.10/system_cmds-643.1.1/passwd.tproj/
H A Dod_passwd.c41 char* cstr; local
51 cstr = malloc(size);
52 if (cstr && CFStringGetCString(str, cstr, size, kCFStringEncodingUTF8)) {
53 result = fprintf(file, "%s", cstr);
54 free(cstr);

Completed in 294 milliseconds

1234