Lines Matching refs:ParameterError
68 ParameterError file2string(char **bufp, FILE *file)
91 ParameterError file2memory(char **bufp, size_t *size, FILE *file)
130 static ParameterError getnum(long *val, const char *str, int base)
149 ParameterError str2num(long *val, const char *str)
154 ParameterError oct2nummax(long *val, const char *str, long max)
156 ParameterError result = getnum(val, str, 8);
176 ParameterError str2unum(long *val, const char *str)
178 ParameterError result = getnum(val, str, 10);
197 ParameterError str2unummax(long *val, const char *str, long max)
199 ParameterError result = str2unum(val, str);
221 static ParameterError str2double(double *val, const char *str, double max)
255 ParameterError secs2ms(long *valp, const char *str)
258 ParameterError result = str2double(&value, str, (double)LONG_MAX/1000);
328 ParameterError proto2num(struct OperationConfig *config,
450 ParameterError check_protocol(const char *str)
468 ParameterError str2offset(curl_off_t *val, const char *str)
549 ParameterError add2list(struct curl_slist **list, const char *ptr)
639 ParameterError err = PARAM_OK;
685 ParameterError str2tls_max(long *val, const char *str)