Home
last modified time | relevance | path

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

/external/curl/src/
Dtool_paramhlp.h28 ParameterError file2string(char **bufp, FILE *file);
30 ParameterError file2memory(char **bufp, size_t *size, FILE *file);
34 ParameterError str2num(long *val, const char *str);
35 ParameterError str2unum(long *val, const char *str);
36 ParameterError str2udouble(double *val, const char *str, long max);
42 ParameterError str2offset(curl_off_t *val, const char *str);
46 ParameterError add2list(struct curl_slist **list, const char *ptr);
54 ParameterError str2tls_max(long *val, const char *str);
Dtool_paramhlp.c59 ParameterError file2string(char **bufp, FILE *file) in file2string()
90 ParameterError file2memory(char **bufp, size_t *size, FILE *file) in file2memory()
163 ParameterError str2num(long *val, const char *str) in str2num()
189 ParameterError str2unum(long *val, const char *str) in str2unum()
191 ParameterError result = str2num(val, str); in str2unum()
212 static ParameterError str2double(double *val, const char *str, long max) in str2double()
245 ParameterError str2udouble(double *valp, const char *str, long max) in str2udouble()
248 ParameterError result = str2double(&value, str, max); in str2udouble()
397 ParameterError str2offset(curl_off_t *val, const char *str) in str2offset()
485 ParameterError add2list(struct curl_slist **list, const char *ptr) in add2list()
[all …]
Dtool_getparam.h46 } ParameterError; typedef
51 ParameterError getparameter(const char *flag, char *nextarg, bool *usedarg,
61 ParameterError parse_args(struct GlobalConfig *config, int argc,
Dtool_helpers.c43 ParameterError error = (ParameterError)res; in param2text()
Dtool_getparam.c442 static ParameterError GetSizeParameter(struct GlobalConfig *global, in GetSizeParameter()
491 ParameterError getparameter(const char *flag, /* f or -long-flag */ in getparameter()
507 ParameterError err; in getparameter()
670 ParameterError pe = GetSizeParameter(global, nextarg, "rate", &value); in getparameter()
810 ParameterError pe = in getparameter()
2174 ParameterError parse_args(struct GlobalConfig *config, int argc, in parse_args()
2180 ParameterError result = PARAM_OK; in parse_args()
Dtool_operate.c2049 ParameterError res = parse_args(config, argc, argv); in operate()