Lines Matching refs:syscalls
34 syscall_lists.append(parser.syscalls)
45 syscalls = bionic_minus_blacklist + whitelist
48 syscalls = [x for x in syscalls if architecture in x and x[architecture]]
51 names = [x["name"] for x in syscalls]
91 syscalls = []
103 syscalls.append((name, value))
105 return syscalls
108 def convert_NRs_to_ranges(syscalls): argument
110 syscalls = sorted(syscalls, lambda x, y: cmp(x[1], y[1]))
114 for name, value in syscalls:
195 syscalls = convert_names_to_NRs(names, header_dir, extra_switches)
196 ranges = convert_NRs_to_ranges(syscalls)