/external/autotest/server/hosts/ |
factory_unittest.py | 55 """Generate a machine dictionary with the specified parameters. 57 @param hostname: hostname of machine 61 @return: machine dict with mocked AFE Host object and fake AfeStore. 104 machine = _gen_machine_dict() 106 machine, 117 machine = _gen_machine_dict(labels=['os:foo']) 119 host_obj = factory.create_host(machine) 127 machine = _gen_machine_dict(labels=['os:foo'], 131 host_obj = factory.create_host(machine) 139 machine = _gen_machine_dict( [all...] |
factory.py | 51 def _get_host_arguments(machine): 61 @param machine: machine dict 66 hostname, afe_host = server_utils.get_host_info_from_machine(machine) 67 connection_pool = server_utils.get_connection_pool_from_machine(machine) 68 host_info_store = host_info.get_store_from_machine(machine) 151 def create_host(machine, host_class=None, connectivity_class=None, **args): 157 @param machine: A dict representing the device under test or a String 159 If it is a machine dict, the 'hostname' key is required. 172 detected_args = _get_host_arguments(machine) [all...] |
/external/python/cpython2/PC/VS9.0/ |
build_tkinter.py | 35 machine = "X86" 38 machine = "AMD64" 48 nmake("makefile.vc", MACHINE=machine) 49 nmake("makefile.vc", "install", INSTALLDIR=dest, MACHINE=machine) 56 nmake("makefile.vc", DEBUG=0, MACHINE=machine) 57 nmake("makefile.vc", "install", DEBUG=0, INSTALLDIR=dest, MACHINE=machine) [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
sparclynx.c | 74 /* Determine the architecture and machine type of the object file. */ 76 unsigned long machine; local 84 machine = bfd_mach_m68000; 90 machine = bfd_mach_m68010; 96 machine = bfd_mach_m68020; 101 machine = 0; 107 machine = 0; 112 machine = 0; 117 machine = 0; 120 bfd_set_arch_mach (abfd, arch, machine); [all...] |
/external/autotest/server/brillo/feedback/ |
client_factory.py | 13 def _get_client(fb_client_name, available_clients, test_name, machine, 20 @param machine: A dictionary describing the test host and DUT. 35 hostname = site_utils.get_hostname_from_machine(machine) 36 afe_host = site_utils.get_afe_host_from_machine(machine) 53 def get_audio_client(fb_client_name, test_name, machine, args_str): 56 machine, args_str)
|
/external/v8/src/compiler/ |
representation-change.cc | 11 #include "src/compiler/machine-operator.h" 134 // value to the full machine word size and stores implicitly truncate, 260 op = machine()->ChangeFloat32ToFloat64(); 459 op = machine()->ChangeInt32ToFloat64(); 461 op = machine()->TruncateFloat64ToFloat32(); 468 op = machine()->ChangeUint32ToFloat64(); 470 op = machine()->TruncateFloat64ToFloat32(); 482 op = machine()->TruncateFloat64ToFloat32(); 485 op = machine()->TruncateFloat64ToFloat32(); 520 op = machine()->ChangeInt32ToFloat64() [all...] |
/external/toolchain-utils/automation/server/ |
machine_manager_test.py | 8 from automation.common import machine 21 mach_spec_list = [machine.MachineSpecification(os='linux')] 26 mach_spec_list = [machine.MachineSpecification(os='chromeos')]
|
/external/toolchain-utils/crosperf/ |
suite_runner.py | 60 def Run(self, machine, label, benchmark, test_args, profiler_args): 62 self.PinGovernorExecutionFrequencies(machine, label.chromeos_root) 64 self.DecreaseWaitTime(machine, label.chromeos_root) 65 ret_tup = self.Telemetry_Run(machine, label, benchmark, profiler_args) 67 self.DecreaseWaitTime(machine, label.chromeos_root) 68 ret_tup = self.Telemetry_Crosperf_Run(machine, label, benchmark, 71 ret_tup = self.Test_That_Run(machine, label, benchmark, test_args, 114 set_cpu_freq, machine=machine_name, chromeos_root=chromeos_root) 115 self.logger.LogFatalIf(ret, 'Could not pin frequencies on machine: %s' % 122 'ls ' + FILE, machine=machine_name, chromeos_root=chromeos_root [all...] |
benchmark_run.py | 48 self.machine = None 67 # Just use the first machine for running the cached version, 72 self.profiler_args, self.machine_manager, self.machine, 98 self._logger, self.log_level, self.label, self.machine, output, err, 105 # Try to acquire a machine now. 106 self.machine = self.AcquireMachine() 107 self.cache.machine = self.machine 108 self.result = self.RunTest(self.machine) 110 self.cache.remote = self.machine.nam [all...] |
/external/mesa3d/src/util/ |
u_endian.h | 40 #include <machine/endian.h> 59 #include <machine/endian.h>
|
/external/toolchain-utils/automation/clients/ |
output_test.py | 12 from automation.common import machine 22 pwd_job.DependsOnMachine(machine.MachineSpecification(os='linux'))
|
pwd_test.py | 10 from automation.common import machine 20 pwd_job.DependsOnMachine(machine.MachineSpecification(os='linux'))
|
/external/toolchain-utils/deprecated/ |
run_benchmarks.py | 12 hostname/IP of Chromeos machine 71 def RunBrowserBenchmark(chromeos_root, board, bench, machine): 78 machine: name of chromeos machine 82 ret = run_tests.RunRemoteTests(chromeos_root, machine, board, benchname) 86 def RunStartupBenchmark(chromeos_root, board, machine): 92 machine: name of chromeos machine 96 ret = run_tests.RunRemoteTests(chromeos_root, machine, board, benchname) 100 def RunCpuBenchmark(chromeos_root, bench, workdir, machine) [all...] |
/external/wpa_supplicant_8/hs20/server/www/ |
remediation.php | 15 This will provide a new machine-generated password.
|
/frameworks/compile/mclinker/lib/Target/X86/ |
X86GNUInfo.h | 21 uint32_t machine() const { return llvm::ELF::EM_386; } function in class:mcld::X86_32GNUInfo 34 uint32_t machine() const { return llvm::ELF::EM_X86_64; } function in class:mcld::X86_64GNUInfo
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
Host.h | 1 //===- llvm/Support/Host.h - Host machine characteristics --------*- C++ -*-===// 10 // Methods for querying the nature of the host machine. 23 #include <sys/machine.h> 26 #include <machine/endian.h>
|
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
Host.h | 1 //===- llvm/Support/Host.h - Host machine characteristics --------*- C++ -*-===// 10 // Methods for querying the nature of the host machine. 23 #include <sys/machine.h> 26 #include <machine/endian.h>
|
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
Host.h | 1 //===- llvm/Support/Host.h - Host machine characteristics --------*- C++ -*-===// 10 // Methods for querying the nature of the host machine. 23 #include <sys/machine.h> 26 #include <machine/endian.h>
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
Host.h | 1 //===- llvm/Support/Host.h - Host machine characteristics --------*- C++ -*-===// 10 // Methods for querying the nature of the host machine. 23 #include <sys/machine.h> 26 #include <machine/endian.h>
|
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
Host.h | 1 //===- llvm/Support/Host.h - Host machine characteristics --------*- C++ -*-===// 10 // Methods for querying the nature of the host machine. 23 #include <sys/machine.h> 26 #include <machine/endian.h>
|
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
Host.h | 1 //===- llvm/Support/Host.h - Host machine characteristics --------*- C++ -*-===// 10 // Methods for querying the nature of the host machine. 23 #include <sys/machine.h> 26 #include <machine/endian.h>
|
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
Host.h | 1 //===- llvm/Support/Host.h - Host machine characteristics --------*- C++ -*-===// 10 // Methods for querying the nature of the host machine. 23 #include <sys/machine.h> 26 #include <machine/endian.h>
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
Host.h | 1 //===- llvm/Support/Host.h - Host machine characteristics --------*- C++ -*-===// 10 // Methods for querying the nature of the host machine. 23 #include <sys/machine.h> 26 #include <machine/endian.h>
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/ |
machine.d | 2 #name: PowerPC .machine test
|
/external/autotest/server/ |
base_utils.py | 203 for machine in machines: 204 mappings['ident'].append(machine) 212 (machine name, reason) tuples.""" 228 failures.append((mach, "machine can not be tupled")) 233 def parse_machine(machine, user='root', password='', port=22): 235 Parse the machine string user:pass@host:port and return it separately, 236 if the machine string is not complete, use the default parameters 240 if '@' in machine: 241 user, machine = machine.split('@', 1 [all...] |