Home
last modified time | relevance | path

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

/aosp_15_r20/external/curl/src/
H A Dtool_paramhlp.h31 ParameterError file2string(char **bufp, FILE *file);
39 ParameterError file2memory(char **bufp, size_t *size, FILE *file);
41 ParameterError str2num(long *val, const char *str);
42 ParameterError str2unum(long *val, const char *str);
43 ParameterError oct2nummax(long *val, const char *str, long max);
44 ParameterError str2unummax(long *val, const char *str, long max);
45 ParameterError secs2ms(long *val, const char *str);
47 ParameterError proto2num(struct OperationConfig *config,
51 ParameterError check_protocol(const char *str);
53 ParameterError str2offset(curl_off_t *val, const char *str);
[all …]
H A Dtool_paramhlp.c93 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()
[all …]
H A Dvar.c95 static ParameterError varfunc(struct GlobalConfig *global, in varfunc()
103 ParameterError err = PARAM_OK; in varfunc()
207 ParameterError varexpand(struct GlobalConfig *global, in varexpand()
300 ParameterError err = varfunc(global, value, vlen, funcp, flen, in varexpand()
347 static ParameterError addvariable(struct GlobalConfig *global, in addvariable()
377 ParameterError setvariable(struct GlobalConfig *global, in setvariable()
386 ParameterError err = PARAM_OK; in setvariable()
H A Dtool_getparam.c55 static ParameterError getstr(char **str, const char *val, bool allowblank) in getstr()
501 static ParameterError GetSizeParameter(struct GlobalConfig *global, in GetSizeParameter()
569 static ParameterError data_urlencode(struct GlobalConfig *global, in data_urlencode()
580 ParameterError err; in data_urlencode()
811 static ParameterError url_query(char *nextarg, in url_query()
816 ParameterError err = PARAM_OK; in url_query()
847 static ParameterError set_data(cmdline_t cmd, in set_data()
855 ParameterError err = PARAM_OK; in set_data()
928 static ParameterError set_rate(struct GlobalConfig *global, in set_rate()
939 ParameterError err = PARAM_OK; in set_rate()
[all …]
H A Dtool_getparam.h351 } ParameterError; typedef
359 ParameterError getparameter(const char *flag, char *nextarg,
371 ParameterError parse_args(struct GlobalConfig *config, int argc,
H A Dvar.h39 ParameterError setvariable(struct GlobalConfig *global, const char *input);
40 ParameterError varexpand(struct GlobalConfig *global,
H A Dtool_helpers.h28 const char *param2text(ParameterError error);
H A Dtool_helpers.c41 const char *param2text(ParameterError error) in param2text()
H A Dtool_parsecfg.c101 ParameterError res; in parseconfig()
H A Dtool_operate.c1940 ParameterError pe; in single_transfer()
3171 ParameterError res = parse_args(global, argc, argv); in operate()
/aosp_15_r20/external/skia/experimental/rust_png/patches/
H A D0106-Avoid-infinite-loop-when-retrying-after-earlier-fata.patch39 impl From<ParameterErrorKind> for ParameterError {
40 @@ -807,6 +811,9 @@ impl fmt::Display for ParameterError {
57 AnimationControl, BitDepth, BlendOp, ColorType, DisposeOp, FrameControl, Info, ParameterError,
H A D0301-Add-support-for-parsing-mDCv-and-cLLi-chunks.-528.patch123 - AnimationControl, BitDepth, BlendOp, ColorType, DisposeOp, FrameControl, Info, ParameterError,
126 + Info, MasteringDisplayColorVolume, ParameterError, ParameterErrorKind, PixelDimensions,
H A D0107-New-API-Reader.next_frame_control-for-advancing-to-t.patch32 + /// Returns a [`ParameterError`] when there are no more animation frames.
/aosp_15_r20/external/skia/experimental/rust_png/ffi/
H A DFFI.rs32 ParameterError, enumerator
62 ParameterError, enumerator
227 png::DecodingError::Parameter(_) => Self::ParameterError, in from()
241 png::EncodingError::Parameter(_) => Self::ParameterError, in from()
/aosp_15_r20/external/skia/experimental/rust_png/decoder/impl/
H A DSkPngRustCodec.cpp218 case rust_png::DecodingResult::ParameterError: in ToSkCodecResult()