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
135 # ARM thumb assembler templates for each syscall stub
457 # now generate each syscall stub
486 D( "scanning for existing architecture-specific stub files" )
497 D( "found %d stub files" % len(self.old_stubs) )
520 for stub in self.new_stubs + self.other_files:
521 if not os.path.exists( bionic_root + stub ):
523 D( "new file: " + stub)
524 adds.append( bionic_root + stub )
525 shutil.copyfile( bionic_temp + stub, bionic_root + stub )
527 elif not filecmp.cmp( bionic_temp + stub, bionic_root + stub ):
528 D( "changed file: " + stub)
529 edits.append( stub )
532 for stub in self.old_stubs:
533 if not stub in self.new_stubs:
534 D( "deleted file: " + stub)
535 deletes.append( bionic_root + stub )