Home
last modified time | relevance | path

Searched refs:obuf (Results 1 – 5 of 5) sorted by relevance

/curl/src/
H A Dtool_help.c214 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 Dtool_paramhlp.c370 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 Dtool_help.h40 char obuf[160]; member
H A Dtool_paramhlp.h48 const char * const *val, char **obuf,
/curl/lib/
H A Durl.c2614 char *obuf = NULL; local
2616 obuf = Curl_memdup0(&osep[1], olen);
2617 if(!obuf)
2620 *optionsp = obuf;

Completed in 25 milliseconds