/external/curl/src/ |
D | tool_writeout.c | 115 char *stringp = NULL; in ourWriteOut() local 147 curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &stringp)) in ourWriteOut() 148 && stringp) in ourWriteOut() 149 fputs(stringp, stream); in ourWriteOut() 246 curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &stringp)) in ourWriteOut() 247 && stringp) in ourWriteOut() 248 fputs(stringp, stream); in ourWriteOut() 252 curl_easy_getinfo(curl, CURLINFO_FTP_ENTRY_PATH, &stringp)) in ourWriteOut() 253 && stringp) in ourWriteOut() 254 fputs(stringp, stream); in ourWriteOut() [all …]
|
/external/minijail/ |
D | util.c | 214 static char *tokenize_parenthesized_expression(char **stringp) in tokenize_parenthesized_expression() argument 220 if (stringp == NULL || *stringp == NULL) in tokenize_parenthesized_expression() 224 if (**stringp != '(') in tokenize_parenthesized_expression() 227 for (found = *stringp + 1; *found; ++found) { in tokenize_parenthesized_expression() 236 ret = *stringp + 1; in tokenize_parenthesized_expression() 237 *stringp = found + 1; in tokenize_parenthesized_expression() 245 warn("unclosed parenthesis: '%s'", *stringp); in tokenize_parenthesized_expression() 391 char *tokenize(char **stringp, const char *delim) in tokenize() argument 396 if (stringp == NULL || *stringp == NULL) in tokenize() 404 ret = *stringp; in tokenize() [all …]
|
D | util.h | 136 char *tokenize(char **stringp, const char *delim);
|
/external/openssh/openbsd-compat/ |
D | strsep.c | 53 strsep(char **stringp, const char *delim) in strsep() argument 60 if ((s = *stringp) == NULL) in strsep() 71 *stringp = s; in strsep()
|
D | openbsd-compat.h | 148 char *strsep(char **stringp, const char *delim);
|
/external/tcpdump/missing/ |
D | strsep.c | 56 strsep(char **stringp, const char *delim) in strsep() argument 63 if ((s = *stringp) == NULL) in strsep() 74 *stringp = s; in strsep()
|
/external/libmtp/src/ |
D | unicode.c | 82 char *stringp = (char *) unicstr; in utf16_to_utf8() local 91 nconv = iconv(params->cd_ucs2_to_locale, &stringp, &convlen, &locp, &convmax); in utf16_to_utf8() 115 char *stringp = (char *) localstr; // cast away "const" in utf8_to_utf16() local 126 nconv = iconv(params->cd_locale_to_ucs2, &stringp, &convlen, &unip, &convmax); in utf8_to_utf16()
|
D | ptp-pack.c | 206 char *stringp = string; in ptp_pack_string() local 208 nconv = iconv(params->cd_locale_to_ucs2, &stringp, &convlen, in ptp_pack_string()
|
/external/curl/lib/ |
D | krb5.c | 167 char *stringp; in krb5_auth() local 197 stringp = aprintf("%s@%s", service, host); in krb5_auth() 198 if(!stringp) in krb5_auth() 201 input_buffer.value = stringp; in krb5_auth() 202 input_buffer.length = strlen(stringp); in krb5_auth() 205 free(stringp); in krb5_auth()
|
/external/clang/tools/clang-format/ |
D | clang-format.el | 56 :safe #'stringp) 143 ((stringp status)
|
/external/curl/packages/OS400/ |
D | ccsidcurl.c | 377 convert_version_info_string(const char * * stringp, in convert_version_info_string() argument 386 if(*stringp) { in convert_version_info_string() 387 int l = convert(*bufp, *left, ccsid, *stringp, -1, ASCII_CCSID); in convert_version_info_string() 392 *stringp = *bufp; in convert_version_info_string()
|
/external/openssh/ |
D | sftp-server.c | 332 handle_to_string(int handle, u_char **stringp, int *hlenp) in handle_to_string() argument 334 if (stringp == NULL || hlenp == NULL) in handle_to_string() 336 *stringp = xmalloc(sizeof(int32_t)); in handle_to_string() 337 put_u32(*stringp, handle); in handle_to_string()
|
D | ssh-keyscan.c | 180 strnnsep(char **stringp, char *delim) in strnnsep() argument 185 tok = xstrsep(stringp, delim); in strnnsep()
|
/external/clang/test/Analysis/ |
D | string.c | 1098 char *strsep(char **stringp, const char *delim);
|