Home
last modified time | relevance | path

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

/curl/lib/
H A Dcurl_multibyte.c122 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 Durl.c2617 char *obuf = NULL; local
2619 obuf = Curl_memdup0(&osep[1], olen);
2620 if(!obuf)
2623 *optionsp = obuf;
/curl/src/
H A Dtool_help.c206 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 Dtool_paramhlp.c431 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 Dtool_help.h40 char obuf[160]; member
H A Dtool_paramhlp.h50 const char * const *val, char **obuf,

Completed in 27 milliseconds