Searched refs:obuf (Results 1 – 6 of 6) sorted by relevance
/curl/lib/ |
H A D | curl_multibyte.c | 122 char *obuf = NULL; in fix_excessive_path() local 221 obuf = malloc(needed); in fix_excessive_path() 222 if(!obuf) in fix_excessive_path() 224 count = wcstombs(obuf, fbuf, needed); in fix_excessive_path() 227 *out = obuf; in fix_excessive_path() 228 obuf = NULL; in fix_excessive_path() 238 free(obuf); in fix_excessive_path()
|
H A D | url.c | 2617 char *obuf = NULL; local 2619 obuf = Curl_memdup0(&osep[1], olen); 2620 if(!obuf) 2623 *optionsp = obuf;
|
/curl/src/ |
H A D | tool_help.c | 206 DEBUGASSERT(ctx->olen < sizeof(ctx->obuf)); in helpscan() 207 if(ctx->olen == sizeof(ctx->obuf)) in helpscan() 209 ctx->obuf[ctx->olen++] = 0; in helpscan() 211 puts(ctx->obuf); in helpscan() 214 DEBUGASSERT(ctx->olen < sizeof(ctx->obuf)); in helpscan() 215 if(ctx->olen == sizeof(ctx->obuf)) in helpscan() 217 ctx->obuf[ctx->olen++] = buf[i]; in helpscan()
|
H A D | tool_paramhlp.c | 431 struct curlx_dynbuf obuf; in proto2num() local 435 curlx_dyn_init(&obuf, MAX_PROTOSTRING); in proto2num() 527 result = curlx_dyn_addn(&obuf, "", 0); in proto2num() 529 result = curlx_dyn_addf(&obuf, "%s,", protoset[proto]); in proto2num() 531 curlx_dyn_setlen(&obuf, curlx_dyn_len(&obuf) - 1); in proto2num() 533 *ostr = curlx_dyn_ptr(&obuf); in proto2num()
|
H A D | tool_help.h | 40 char obuf[160]; member
|
H A D | tool_paramhlp.h | 50 const char * const *val, char **obuf,
|
Completed in 27 milliseconds