Home | History | Annotate | Download | only in binary_search_tool

Lines Matching full:bisector

20 class Bisector(object):
23 # Make Bisector an abstract class
27 """Constructor for Bisector abstract base class
126 class BisectPackage(Bisector):
153 self.logger.LogError('Package bisector setup failed w/ error %d' % ret)
164 self.logger.LogError('Package bisector cleanup failed w/ error %d' % ret)
173 class BisectObject(Bisector):
206 self.logger.LogError('Object bisector setup failed w/ error %d' % ret)
219 self.logger.LogError('Object bisector cleanup failed w/ error %d' % ret)
227 class BisectAndroid(Bisector):
266 self.logger.LogError('Android bisector setup failed w/ error %d' % ret)
279 self.logger.LogError('Android bisector cleanup failed w/ error %d' % ret)
287 def Run(bisector):
291 ret = bisector.PreRun()
296 ret = bisector.Run()
301 ret = bisector.PostRun()
371 'scripts for bisector can spawn. Setting '
392 bisector = subcmd(options, overrides)
393 return Run(bisector)