/external/autotest/client/bin/ |
boottool.py | 3 from autotest_lib.client.common_lib import boottool as common_boottool 5 class boottool(common_boottool.boottool): class in inherits:common_boottool.boottool 7 super(boottool, self).__init__() 13 self._boottool_exec = autodir + '/tools/boottool'
|
site_job.py | 7 from autotest_lib.client.bin import boottool, utils
|
kernel_unittest.py | 7 from autotest_lib.client.bin import kernel_config, boottool, os_dep 16 bootloader = god.create_mock_class(boottool.boottool, "boottool") 52 boottool.boottool, "boottool") 133 self.job.bootloader = self.god.create_mock_class(boottool.boottool, 134 "boottool") [all...] |
job_unittest.py | 6 from autotest_lib.client.bin import job, boottool, config, sysinfo, harness 79 self.god.stub_function_to_return(job.boottool, 'boottool', object()) 156 self.god.stub_class(boottool, 'boottool') 213 'boottool.executable').and_return(None) 214 bootloader = boottool.boottool.expect_new(None)
|
job.py | 12 from autotest_lib.client.bin import profilers, boottool, harness 297 Perform boottool initialization. 299 tool = self.config_get('boottool.executable') 300 self.bootloader = boottool.boottool(tool) [all...] |
/external/autotest/server/hosts/ |
bootloader.py | 11 from autotest_lib.client.common_lib import error, boottool 14 BOOTTOOL_SRC = '../client/tools/boottool' # Get it from autotest client 17 class Bootloader(boottool.boottool):
|
/external/autotest/client/common_lib/ |
boottool.py | 6 class boottool(object): class in inherits:object 8 Common class for the client and server side boottool wrappers. 17 Override in derivations to execute the "boottool" command and return 22 boottool command 23 @return string with the stdout output of the boottool command. 24 @raise Exception in case of boottool command failure. 78 Parse entry as returned by boottool. 80 @param entry_str: one entry information as returned by boottool
|
boottool_unittest.py | 7 from autotest_lib.client.common_lib import boottool 14 self.bt_mock = boottool.boottool()
|
/external/autotest/client/tools/ |
boottool | 179 system("cp","$config_file","$config_file.bak.boottool"); 184 print "Backed up config to $config_file.bak.boottool.\n"; 707 L<boottool>, L<Linux::Bootloader::Grub>, L<Linux::Bootloader::Lilo>, [all...] |