Lines Matching defs:out
102 struct curlx_dynbuf *out)
130 curlx_dyn_reset(out);
131 if(curlx_dyn_addn(out, c, len)) {
138 curlx_dyn_reset(out);
140 if(jsonquoted(c, clen, out, FALSE)) {
148 curlx_dyn_reset(out);
157 if(curlx_dyn_add(out, enc))
166 curlx_dyn_reset(out);
177 if(curlx_dyn_addn(out, enc, elen))
194 clen = curlx_dyn_len(out);
195 c = Memdup(curlx_dyn_ptr(out), clen);
205 curlx_dyn_free(out);
210 const char *line, struct curlx_dynbuf *out,
218 curlx_dyn_init(out, MAX_EXPAND_CONTENT);
225 result = curlx_dyn_addn(out, line, envp - line - 1);
230 result = curlx_dyn_addn(out, "{{", 2);
261 result = curlx_dyn_addn(out, line, clp - line + prefix);
267 result = curlx_dyn_addn(out, line, envp - prefix - line);
281 result = curlx_dyn_addn(out, envp - prefix,
320 result = curlx_dyn_addn(out, value, vlen);
334 result = curlx_dyn_add(out, line);
340 curlx_dyn_free(out);
440 /* in case of out of memory, this should fail the entire operation */