Lines Matching refs:args
34 static int match_one(char *s, const char *p, substring_t args[]) in match_one() argument
66 args[argc].from = s; in match_one()
75 args[argc].to = s + len; in match_one()
79 simple_strtol(s, &args[argc].to, 0); in match_one()
82 simple_strtoul(s, &args[argc].to, 0); in match_one()
85 simple_strtoul(s, &args[argc].to, 8); in match_one()
88 simple_strtoul(s, &args[argc].to, 16); in match_one()
90 if (args[argc].to == args[argc].from) in match_one()
96 s = args[argc].to; in match_one()
115 int match_token(char *s, const match_table_t table, substring_t args[]) in match_token() argument
119 for (p = table; !match_one(s, p->pattern, args) ; p++) in match_token()