Home | History | Annotate | Download | only in tools

Lines Matching refs:stub

48 # x86 assembler templates for each syscall stub
79 # ARM assembler templates for each syscall stub
140 # ARM thumb assembler templates for each syscall stub
191 # SuperH assembler templates for each syscall stub
499 # now generate each syscall stub
536 D( "scanning for existing architecture-specific stub files" )
547 D( "found %d stub files" % len(self.old_stubs) )
571 for stub in self.new_stubs + self.other_files:
572 if not os.path.exists( bionic_root + stub ):
574 D( "new file: " + stub)
575 adds.append( bionic_root + stub )
576 shutil.copyfile( bionic_temp + stub, bionic_root + stub )
578 elif not filecmp.cmp( bionic_temp + stub, bionic_root + stub ):
579 D( "changed file: " + stub)
580 edits.append( stub )
583 for stub in self.old_stubs:
584 if not stub in self.new_stubs:
585 D( "deleted file: " + stub)
586 deletes.append( bionic_root + stub )