Searched refs:ParameterError (Results 1 – 6 of 6) sorted by relevance
/external/curl/src/ |
D | tool_paramhlp.h | 28 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 str2unummax(long *val, const char *str, long max); 37 ParameterError str2udouble(double *val, const char *str, long max); 43 ParameterError str2offset(curl_off_t *val, const char *str); 47 ParameterError add2list(struct curl_slist **list, const char *ptr); 55 ParameterError str2tls_max(long *val, const char *str);
|
D | tool_paramhlp.c | 59 ParameterError file2string(char **bufp, FILE *file) in file2string() 107 ParameterError file2memory(char **bufp, size_t *size, FILE *file) in file2memory() 180 ParameterError str2num(long *val, const char *str) in str2num() 206 ParameterError str2unum(long *val, const char *str) in str2unum() 208 ParameterError result = str2num(val, str); in str2unum() 227 ParameterError str2unummax(long *val, const char *str, long max) in str2unummax() 229 ParameterError result = str2unum(val, str); in str2unummax() 251 static ParameterError str2double(double *val, const char *str, long max) in str2double() 284 ParameterError str2udouble(double *valp, const char *str, long max) in str2udouble() 287 ParameterError result = str2double(&value, str, max); in str2udouble() [all …]
|
D | tool_getparam.h | 47 } ParameterError; typedef 52 ParameterError getparameter(const char *flag, char *nextarg, bool *usedarg, 62 ParameterError parse_args(struct GlobalConfig *config, int argc,
|
D | tool_helpers.c | 43 ParameterError error = (ParameterError)res; in param2text()
|
D | tool_getparam.c | 448 static ParameterError GetSizeParameter(struct GlobalConfig *global, in GetSizeParameter() 497 ParameterError getparameter(const char *flag, /* f or -long-flag */ in getparameter() 513 ParameterError err; in getparameter() 681 ParameterError pe = GetSizeParameter(global, nextarg, "rate", &value); in getparameter() 821 ParameterError pe = in getparameter() 2208 ParameterError parse_args(struct GlobalConfig *global, int argc, in parse_args() 2214 ParameterError result = PARAM_OK; in parse_args()
|
D | tool_operate.c | 2329 ParameterError res = parse_args(global, argc, argv); in operate()
|