Home
last modified time | relevance | path

Searched refs:stringp (Results 1 – 15 of 15) sorted by relevance

/external/curl/src/
Dtool_writeout.c113 char *stringp = NULL; in ourWriteOut() local
145 curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &stringp)) in ourWriteOut()
146 && stringp) in ourWriteOut()
147 fputs(stringp, stream); in ourWriteOut()
152 &stringp)) in ourWriteOut()
153 && stringp) in ourWriteOut()
154 fputs(stringp, stream); in ourWriteOut()
254 curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &stringp)) in ourWriteOut()
255 && stringp) in ourWriteOut()
256 fputs(stringp, stream); in ourWriteOut()
[all …]
/external/minijail/
Dutil.c228 static char *tokenize_parenthesized_expression(char **stringp) in tokenize_parenthesized_expression() argument
234 if (stringp == NULL || *stringp == NULL) in tokenize_parenthesized_expression()
238 if (**stringp != '(') in tokenize_parenthesized_expression()
241 for (found = *stringp + 1; *found; ++found) { in tokenize_parenthesized_expression()
250 ret = *stringp + 1; in tokenize_parenthesized_expression()
251 *stringp = found + 1; in tokenize_parenthesized_expression()
259 warn("unclosed parenthesis: '%s'", *stringp); in tokenize_parenthesized_expression()
405 char *tokenize(char **stringp, const char *delim) in tokenize() argument
410 if (stringp == NULL || *stringp == NULL) in tokenize()
418 ret = *stringp; in tokenize()
[all …]
Dutil.h172 char *tokenize(char **stringp, const char *delim);
/external/tcpdump/missing/
Dstrsep.c56 strsep(char **stringp, const char *delim) in strsep() argument
63 if ((s = *stringp) == NULL) in strsep()
74 *stringp = s; in strsep()
/external/openssh/openbsd-compat/
Dstrsep.c53 strsep(char **stringp, const char *delim) in strsep() argument
60 if ((s = *stringp) == NULL) in strsep()
71 *stringp = s; in strsep()
Dopenbsd-compat.h161 char *strsep(char **stringp, const char *delim);
/external/llvm-project/clang/tools/clang-format/
Dclang-format.el57 :safe #'stringp)
69 :safe #'stringp)
187 ((stringp status)
/external/clang/tools/clang-format/
Dclang-format.el56 :safe #'stringp)
143 ((stringp status)
/external/curl/lib/
Dkrb5.c227 char *stringp; in krb5_auth() local
257 stringp = aprintf("%s@%s", service, host); in krb5_auth()
258 if(!stringp) in krb5_auth()
261 input_buffer.value = stringp; in krb5_auth()
262 input_buffer.length = strlen(stringp); in krb5_auth()
265 free(stringp); in krb5_auth()
/external/google-java-format/core/src/main/scripts/
Dgoogle-java-format.el83 ((stringp status)
/external/curl/packages/OS400/
Dccsidcurl.c378 convert_version_info_string(const char * * stringp, in convert_version_info_string() argument
387 if(*stringp) { in convert_version_info_string()
388 int l = convert(*bufp, *left, ccsid, *stringp, -1, ASCII_CCSID); in convert_version_info_string()
393 *stringp = *bufp; in convert_version_info_string()
/external/openssh/
Dssh-keyscan.c189 strnnsep(char **stringp, char *delim) in strnnsep() argument
194 tok = xstrsep(stringp, delim); in strnnsep()
Dsftp-server.c336 handle_to_string(int handle, u_char **stringp, int *hlenp) in handle_to_string() argument
338 if (stringp == NULL || hlenp == NULL) in handle_to_string()
340 *stringp = xmalloc(sizeof(int32_t)); in handle_to_string()
341 put_u32(*stringp, handle); in handle_to_string()
/external/clang/test/Analysis/
Dstring.c1098 char *strsep(char **stringp, const char *delim);
/external/llvm-project/clang/test/Analysis/
Dstring.c1217 char *strsep(char **stringp, const char *delim);