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 str2double(double *val, const char *str);
37 ParameterError str2udouble(double *val, const char *str);
41 ParameterError str2offset(curl_off_t *val, const char *str);
45 ParameterError add2list(struct curl_slist **list, const char *ptr);
Dtool_paramhlp.c59 ParameterError file2string(char **bufp, FILE *file) in file2string()
87 ParameterError file2memory(char **bufp, size_t *size, FILE *file) in file2memory()
158 ParameterError str2num(long *val, const char *str) in str2num()
180 ParameterError str2unum(long *val, const char *str) in str2unum()
182 ParameterError result = str2num(val, str); in str2unum()
200 ParameterError str2double(double *val, const char *str) in str2double()
222 ParameterError str2udouble(double *val, const char *str) in str2udouble()
224 ParameterError result = str2double(val, str); in str2udouble()
349 ParameterError str2offset(curl_off_t *val, const char *str) in str2offset()
433 ParameterError add2list(struct curl_slist **list, const char *ptr) in add2list()
Dtool_getparam.h43 } ParameterError; typedef
48 ParameterError getparameter(char *flag, char *nextarg, bool *usedarg,
58 ParameterError parse_args(struct GlobalConfig *config, int argc,
Dtool_helpers.c43 ParameterError error = (ParameterError)res; in param2text()
Dtool_getparam.c382 ParameterError getparameter(char *flag, /* f or -long-flag */ in getparameter()
398 ParameterError err; in getparameter()
1838 ParameterError parse_args(struct GlobalConfig *config, int argc, in parse_args()
1844 ParameterError result = PARAM_OK; in parse_args()
Dtool_operate.c1839 ParameterError res = parse_args(config, argc, argv); in operate()