Lines Matching full:syscalls
4 # to be placed into arch-{arm,x86,mips}/syscalls, as well as the content
197 self.syscalls = []
277 self.syscalls = parser.syscalls
280 for t in self.syscalls:
296 E("cid for dispatch syscalls is only supported for x86 in "
308 syscalls = set() # MIPS defines everything three times; work around that.
312 syscalls.add(m.group(1))
313 for syscall in sorted(syscalls):
319 glibc_syscalls_h_path = "include/sys/glibc-syscalls.h"
339 # now dump the contents of syscalls.mk
341 path = "arch-%s/syscalls.mk" % arch
352 for sc in self.syscalls:
354 fp.write("syscall_src += arch-%s/syscalls/%s.S\n" %
362 for sc in self.syscalls:
364 fname = "arch-arm/syscalls/%s.S" % sc["func"]
372 fname = "arch-x86/syscalls/%s.S" % sc["func"]
380 fname = "arch-mips/syscalls/%s.S" % sc["func"]
395 files = glob.glob( arch_path + "/syscalls/*.S" )
444 commands.getoutput("git add %s%s" % (bionic_libc_root,"SYSCALLS.TXT"))
454 state.process_file(bionic_libc_root+"SYSCALLS.TXT")