Lines Matching refs:ParameterError
93 ParameterError file2string(char **bufp, FILE *file) in file2string()
127 ParameterError file2memory(char **bufp, size_t *size, FILE *file) in file2memory()
165 static ParameterError getnum(long *val, const char *str, int base) in getnum()
184 ParameterError str2num(long *val, const char *str) in str2num()
189 ParameterError oct2nummax(long *val, const char *str, long max) in oct2nummax()
191 ParameterError result = getnum(val, str, 8); in oct2nummax()
211 ParameterError str2unum(long *val, const char *str) in str2unum()
213 ParameterError result = getnum(val, str, 10); in str2unum()
232 ParameterError str2unummax(long *val, const char *str, long max) in str2unummax()
234 ParameterError result = str2unum(val, str); in str2unummax()
256 static ParameterError str2double(double *val, const char *str, double max) in str2double()
290 ParameterError secs2ms(long *valp, const char *str) in secs2ms()
293 ParameterError result = str2double(&value, str, (double)LONG_MAX/1000); in secs2ms()
363 ParameterError proto2num(struct OperationConfig *config, in proto2num()
485 ParameterError check_protocol(const char *str) in check_protocol()
503 ParameterError str2offset(curl_off_t *val, const char *str) in str2offset()
584 ParameterError add2list(struct curl_slist **list, const char *ptr) in add2list()
674 ParameterError err = PARAM_OK; in get_args()
720 ParameterError str2tls_max(long *val, const char *str) in str2tls_max()