HomeSort by relevance Sort by last modified time
    Searched refs:test_flag (Results 1 - 25 of 29) sorted by null

1 2

  /external/toolchain-utils/crosperf/
flag_test_unittest.py 7 import test_flag
16 # Verify that test_flag.is_test exists, that it is a list,
18 self.assertTrue(type(test_flag.is_test) is list)
19 self.assertEqual(len(test_flag.is_test), 1)
23 save_flag = test_flag.GetTestMode()
27 test_flag.SetTestMode(True)
28 self.assertTrue(test_flag.GetTestMode())
31 test_flag.SetTestMode(save_flag)
32 self.assertFalse(test_flag.GetTestMode())
34 # Verify that test_flag.is_test still exists, that it still is
    [all...]
experiment_factory_unittest.py 19 import test_flag
96 test_flag.SetTestMode(False)
133 test_flag.SetTestMode(True)
175 test_flag.SetTestMode(True)
240 test_flag.SetTestMode(True)
crosperf.py 24 import test_flag
106 test_flag.SetTestMode(True)
generate_report_unittest.py 16 import test_flag
171 test_flag.SetTestMode(True)
download_images.py 11 import test_flag
142 if not test_flag.GetTestMode():
199 if not test_flag.GetTestMode():
268 if not test_flag.GetTestMode():
experiment_factory.py 17 import test_flag
295 if test_flag.GetTestMode():
experiment.py 21 import test_flag
76 if test_flag.GetTestMode():
200 if test_flag.GetTestMode():
download_images_unittest.py 16 import test_flag
47 test_flag.SetTestMode(True)
schedv2_unittest.py 13 import test_flag
217 test_flag.SetTestMode(True)
experiment_runner.py 13 import test_flag
107 if test_flag.GetTestMode():
136 if not self.locked_machines or test_flag.GetTestMode():
suite_runner.py 13 import test_flag
265 if not test_flag.GetTestMode():
results_report_unittest.py 16 import test_flag
434 test_flag.SetTestMode(True)
schedv2.py 9 import test_flag
237 self._in_test_mode = test_flag.GetTestMode()
suite_runner_unittest.py 16 import test_flag
327 test_flag.SetTestMode(True)
experiment_runner_unittest.py 21 import test_flag
107 test_flag.SetTestMode(True)
machine_manager.py 19 import test_flag
275 if not test_flag.GetTestMode():
  /external/ltp/testcases/kernel/syscalls/chown/
chown02.c 100 int test_flag; member in struct:test_case_t
122 int test_flag; /* test condition specific flag variable */ local
138 test_flag = test_cases[i].test_flag;
178 if (test_flag == 1 &&
185 } else if (test_flag == 2
  /external/libaom/libaom/third_party/libyuv/include/libyuv/
cpu_id.h 57 // Test_flag parameter should be one of kCpuHas constants above.
59 static __inline int TestCpuFlag(int test_flag) {
61 return (cpu_info_ == kCpuInit ? InitCpuFlags() : cpu_info_) & test_flag;
  /external/libyuv/files/include/libyuv/
cpu_id.h 58 // Test_flag parameter should be one of kCpuHas constants above.
60 static __inline int TestCpuFlag(int test_flag) {
62 return (!cpu_info_ ? InitCpuFlags() : cpu_info_) & test_flag;
  /external/ltp/testcases/kernel/syscalls/memfd_create/
memfd_create04.c 40 static struct test_flag { struct
56 static void check_hugepage_support(struct test_flag *test_flags)
71 struct test_flag tflag;
  /external/toolchain-utils/bestflags/
flags_test.py 38 test_flag = Flag(spec)
40 value = test_flag.GetValue()
79 test_flag = Flag(spec, value)
83 test_value = test_flag.FormattedForUse()
91 test_flag = Flag('flag', value)
94 test_value = test_flag.FormattedForUse()
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
cpu_id.h 58 // Test_flag parameter should be one of kCpuHas constants above.
60 static __inline int TestCpuFlag(int test_flag) {
67 return (!cpu_info ? InitCpuFlags() : cpu_info) & test_flag;
  /external/ltp/testcases/kernel/syscalls/setns/
setns02.c 137 static void test_flag(int clone_flag, int ns_flag, int (*fn) (void *arg)) function
171 test_flag(CLONE_NEWUTS, CLONE_NEWUTS, do_child_newuts);
172 test_flag(CLONE_NEWUTS, 0, do_child_newuts);
176 test_flag(CLONE_NEWIPC, CLONE_NEWIPC, do_child_newipc);
177 test_flag(CLONE_NEWIPC, 0, do_child_newipc);
  /external/ltp/testcases/kernel/syscalls/fchown/
fchown02.c 60 int test_flag; member in struct:test_case
91 switch (t->test_flag) {
  /external/openssh/
sshd.c 165 int test_flag = 0; variable
    [all...]

Completed in 8078 milliseconds

1 2