Lines Matching refs:olen
108 * *olen. If length == 0, the length is assumed to be strlen(string).
121 char **ostring, size_t *olen,
164 if(olen)
166 *olen = ns - *ostring;
173 * pointer to a malloced string with length given in *olen.
175 * If olen == NULL, no output length is stored.
179 int length, int *olen)
191 if(olen) {
193 *olen = curlx_uztosi(outputlen);
217 unsigned char *out, size_t olen) /* output buffer size */
220 DEBUGASSERT(src && len && (olen >= 3));
221 if(src && len && (olen >= 3)) {
222 while(len-- && (olen >= 3)) {
228 olen -= 2;
232 else if(olen)