Lines Matching refs:opt

19 extern int hwconfig_f(const char *opt, char *buf);
20 extern const char *hwconfig_arg_f(const char *opt, size_t *arglen, char *buf);
21 extern int hwconfig_arg_cmp_f(const char *opt, const char *arg, char *buf);
22 extern int hwconfig_sub_f(const char *opt, const char *subopt, char *buf);
23 extern const char *hwconfig_subarg_f(const char *opt, const char *subopt,
25 extern int hwconfig_subarg_cmp_f(const char *opt, const char *subopt,
29 static inline int hwconfig_f(const char *opt, char *buf)
34 static inline const char *hwconfig_arg_f(const char *opt, size_t *arglen,
41 static inline int hwconfig_arg_cmp_f(const char *opt, const char *arg,
47 static inline int hwconfig_sub_f(const char *opt, const char *subopt, char *buf)
52 static inline const char *hwconfig_subarg_f(const char *opt, const char *subopt,
59 static inline int hwconfig_subarg_cmp_f(const char *opt, const char *subopt,
67 static inline int hwconfig(const char *opt)
69 return hwconfig_f(opt, NULL);
72 static inline const char *hwconfig_arg(const char *opt, size_t *arglen)
74 return hwconfig_arg_f(opt, arglen, NULL);
77 static inline int hwconfig_arg_cmp(const char *opt, const char *arg)
79 return hwconfig_arg_cmp_f(opt, arg, NULL);
82 static inline int hwconfig_sub(const char *opt, const char *subopt)
84 return hwconfig_sub_f(opt, subopt, NULL);
87 static inline const char *hwconfig_subarg(const char *opt, const char *subopt,
90 return hwconfig_subarg_f(opt, subopt, subarglen, NULL);
93 static inline int hwconfig_subarg_cmp(const char *opt, const char *subopt,
96 return hwconfig_subarg_cmp_f(opt, subopt, subarg, NULL);