Lines Matching refs:args
24 static int match_one(char *s, const char *p, substring_t args[]) in match_one() argument
56 args[argc].from = s; in match_one()
65 args[argc].to = s + len; in match_one()
69 simple_strtol(s, &args[argc].to, 0); in match_one()
72 simple_strtoul(s, &args[argc].to, 0); in match_one()
75 simple_strtoul(s, &args[argc].to, 8); in match_one()
78 simple_strtoul(s, &args[argc].to, 16); in match_one()
80 if (args[argc].to == args[argc].from) in match_one()
86 s = args[argc].to; in match_one()
105 int match_token(char *s, const match_table_t table, substring_t args[]) in match_token() argument
109 for (p = table; !match_one(s, p->pattern, args) ; p++) in match_token()