Home
last modified time | relevance | path

Searched refs:subopt (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/include/
H A Dhwconfig.h23 extern int hwconfig_sub_f(const char *opt, const char *subopt, char *buf);
24 extern const char *hwconfig_subarg_f(const char *opt, const char *subopt,
26 extern int hwconfig_subarg_cmp_f(const char *opt, const char *subopt,
48 static inline int hwconfig_sub_f(const char *opt, const char *subopt, char *buf) in hwconfig_sub_f() argument
53 static inline const char *hwconfig_subarg_f(const char *opt, const char *subopt, in hwconfig_subarg_f() argument
60 static inline int hwconfig_subarg_cmp_f(const char *opt, const char *subopt, in hwconfig_subarg_cmp_f() argument
83 static inline int hwconfig_sub(const char *opt, const char *subopt) in hwconfig_sub() argument
85 return hwconfig_sub_f(opt, subopt, NULL); in hwconfig_sub()
88 static inline const char *hwconfig_subarg(const char *opt, const char *subopt, in hwconfig_subarg() argument
91 return hwconfig_subarg_f(opt, subopt, subarglen, NULL); in hwconfig_subarg()
[all …]
/rk3399_rockchip-uboot/common/
H A Dhwconfig.c184 int hwconfig_sub_f(const char *opt, const char *subopt, char *buf) in hwconfig_sub_f() argument
192 return !!hwconfig_parse(arg, arglen, subopt, ",;", '=', NULL); in hwconfig_sub_f()
205 const char *hwconfig_subarg_f(const char *opt, const char *subopt, in hwconfig_subarg_f() argument
214 return hwconfig_parse(arg, arglen, subopt, ",;", '=', subarglen); in hwconfig_subarg_f()
227 int hwconfig_subarg_cmp_f(const char *opt, const char *subopt, in hwconfig_subarg_cmp_f() argument
233 argstr = hwconfig_subarg_f(opt, subopt, &arglen, buf); in hwconfig_subarg_cmp_f()