Lines Matching refs:args
26 static int match_one(char *s, const char *p, substring_t args[]) in match_one() argument
58 args[argc].from = s; in match_one()
67 args[argc].to = s + len; in match_one()
71 simple_strtol(s, &args[argc].to, 0); in match_one()
74 simple_strtoul(s, &args[argc].to, 0); in match_one()
77 simple_strtoul(s, &args[argc].to, 8); in match_one()
80 simple_strtoul(s, &args[argc].to, 16); in match_one()
82 if (args[argc].to == args[argc].from) in match_one()
88 s = args[argc].to; in match_one()
107 int match_token(char *s, const match_table_t table, substring_t args[]) in match_token() argument
111 for (p = table; !match_one(s, p->pattern, args) ; p++) in match_token()