Lines Matching defs:sym
62 static inline bool arch_syscall_match_sym_name(const char *sym,
65 if (!strcmp(sym, "sys_mmap2"))
66 sym = "sys_mmap_pgoff";
67 else if (!strcmp(sym, "sys_statfs64_wrapper"))
68 sym = "sys_statfs64";
69 else if (!strcmp(sym, "sys_fstatfs64_wrapper"))
70 sym = "sys_fstatfs64";
71 else if (!strcmp(sym, "sys_arm_fadvise64_64"))
72 sym = "sys_fadvise64_64";
74 /* Ignore case since sym may start with "SyS" instead of "sys" */
75 return !strcasecmp(sym, name);