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