Searched refs:obuf (Results 1 – 5 of 5) sorted by relevance
/curl/src/ |
H A D | tool_help.c | 214 DEBUGASSERT(ctx->olen < sizeof(ctx->obuf)); in helpscan() 215 if(ctx->olen == sizeof(ctx->obuf)) in helpscan() 217 ctx->obuf[ctx->olen++] = 0; in helpscan() 219 puts(ctx->obuf); in helpscan() 222 DEBUGASSERT(ctx->olen < sizeof(ctx->obuf)); in helpscan() 223 if(ctx->olen == sizeof(ctx->obuf)) in helpscan() 225 ctx->obuf[ctx->olen++] = buf[i]; in helpscan()
|
H A D | tool_paramhlp.c | 370 struct curlx_dynbuf obuf; in proto2num() local 374 curlx_dyn_init(&obuf, MAX_PROTOSTRING); in proto2num() 466 result = curlx_dyn_addn(&obuf, "", 0); in proto2num() 468 result = curlx_dyn_addf(&obuf, "%s,", protoset[proto]); in proto2num() 470 curlx_dyn_setlen(&obuf, curlx_dyn_len(&obuf) - 1); in proto2num() 472 *ostr = curlx_dyn_ptr(&obuf); in proto2num()
|
H A D | tool_help.h | 40 char obuf[160]; member
|
H A D | tool_paramhlp.h | 48 const char * const *val, char **obuf,
|
/curl/lib/ |
H A D | url.c | 2611 char *obuf = NULL; local 2613 obuf = Curl_memdup0(&osep[1], olen); 2614 if(!obuf) 2617 *optionsp = obuf;
|
Completed in 22 milliseconds