Lines Matching refs:stub
48 # x86 assembler templates for each syscall stub
79 # ARM assembler templates for each syscall stub
135 # ARM thumb assembler templates for each syscall stub
186 # SuperH assembler templates for each syscall stub
550 # now generate each syscall stub
587 D( "scanning for existing architecture-specific stub files" )
598 D( "found %d stub files" % len(self.old_stubs) )
622 for stub in self.new_stubs + self.other_files:
623 if not os.path.exists( bionic_root + stub ):
625 D( "new file: " + stub)
626 adds.append( bionic_root + stub )
627 shutil.copyfile( bionic_temp + stub, bionic_root + stub )
629 elif not filecmp.cmp( bionic_temp + stub, bionic_root + stub ):
630 D( "changed file: " + stub)
631 edits.append( stub )
634 for stub in self.old_stubs:
635 if not stub in self.new_stubs:
636 D( "deleted file: " + stub)
637 deletes.append( bionic_root + stub )