Lines Matching refs:buff
3492 match_records(struct ftrace_hash *hash, char *buff, in match_records() argument
3499 char *search = buff; in match_records()
3504 type = filter_parse_regex(buff, len, &search, ¬); in match_records()
3530 ftrace_match_records(struct ftrace_hash *hash, char *buff, int len) in ftrace_match_records() argument
3532 return match_records(hash, buff, len, NULL, 0); in ftrace_match_records()
3536 ftrace_match_module_records(struct ftrace_hash *hash, char *buff, char *mod) in ftrace_match_module_records() argument
3541 if (strcmp(buff, "*") == 0) in ftrace_match_module_records()
3542 buff[0] = 0; in ftrace_match_module_records()
3545 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) { in ftrace_match_module_records()
3546 buff[0] = 0; in ftrace_match_module_records()
3550 return match_records(hash, buff, strlen(buff), mod, not); in ftrace_match_module_records()
3962 char *buff, int len, int enable) in ftrace_process_regex() argument
3964 char *func, *command, *next = buff; in ftrace_process_regex()