/external/ltp/testcases/kernel/syscalls/quotactl/ |
D | quotactl01.c | 82 static int test_id; variable 109 {QCMD(Q_SETQUOTA, USRQUOTA), &test_id, &set_dq, 112 {QCMD(Q_GETQUOTA, USRQUOTA), &test_id, &res_dq, 116 {QCMD(Q_SETINFO, USRQUOTA), &test_id, &set_qf, 119 {QCMD(Q_GETINFO, USRQUOTA), &test_id, &res_qf, 123 {QCMD(Q_GETFMT, USRQUOTA), &test_id, &fmt_buf, 127 {QCMD(Q_SYNC, USRQUOTA), &test_id, &res_dq, 130 {QCMD(Q_QUOTAOFF, USRQUOTA), &test_id, USRPATH, 136 {QCMD(Q_SETQUOTA, GRPQUOTA), &test_id, &set_dq, 139 {QCMD(Q_GETQUOTA, GRPQUOTA), &test_id, &res_dq, &set_dq.dqb_bsoftlimit, [all …]
|
D | quotactl02.c | 53 static uint32_t test_id; variable 84 test_id, (void*) &res_qstat); in check_qoff() 105 test_id, (void*) &res_qstat); in check_qon() 128 test_id, (void*) &res_dquota); in check_qlim() 139 if (res_dquota.d_id != test_id) { in check_qlim() 141 " expected %u", res_dquota.d_id, test_id); in check_qlim() 158 test_id = geteuid(); in setup() 165 TEST(quotactl(tc->cmd, tst_device->dev, test_id, tc->addr)); in verify_quota()
|
D | quotactl03.c | 59 static uint32_t test_id = 0xfffffffc; variable 68 test_id, (void *)&res_dquota)); in verify_quota()
|
/external/python/cpython2/Lib/test/ |
D | test_xrange.py | 28 def assert_iterators_equal(self, xs, ys, test_id, limit=None): argument 41 'at position {}; expected {}'.format(test_id, i, y)) 44 'position {}'.format(test_id, x, i)) 47 'expected {}, got {}'.format(test_id, i, y, x)) 200 test_id = "xrange({}, {}, {})".format(start, end, step) 202 self.assert_iterators_equal(iter1, iter2, test_id, limit=100) 210 test_id = "reversed(xrange({}, {}, {}))".format(start, end, step) 211 self.assert_iterators_equal(iter1, iter2, test_id, limit=100)
|
/external/autotest/site_utils/lxc/container_pool/ |
D | service_unittest.py | 148 test_id = lxc.ContainerId.create(42) 153 client.send(message.get(test_id)) 155 self.assertEqual(test_id, test_container.id) 160 test_id = lxc.ContainerId.create(42) 163 client.send(message.get(test_id)) 170 test_id = lxc.ContainerId.create(42) 173 client.send(message.get(test_id, timeout=1))
|
/external/libdrm/tests/amdgpu/ |
D | amdgpu_test.c | 299 int test_id = -1; /* By default run all tests in the suite */ in main() local 322 test_id = atoi(optarg); in main() 406 if (test_id != -1) { /* If user specify test id */ in main() 408 (unsigned int) test_id, in main() 414 test_id); in main()
|
/external/toolchain-utils/crosperf/ |
D | download_images_buildid_test.py | 72 def test_one_id(self, downloader, test_id, result_string, exact_match): argument 73 print("Translating '%s'" % test_id) 76 result = downloader.GetBuildID(self.chromeos_root, test_id)
|
/external/v8/tools/ |
D | run-deopt-fuzzer.py | 411 test_id = 0 429 t.id = test_id 430 test_id += 1 444 test_id = 0 476 t.id = test_id 477 test_id += 1
|
/external/lisa/libs/utils/android/workloads/ |
D | jankbench.py | 141 test_id = _jankbench[test_name] 168 self._log.debug('Start Jank Benchmark [%d:%s]', test_id, test_name) 172 .format(test_id, iterations)
|
/external/llvm/test/Transforms/RewriteStatepointsForGC/ |
D | patchable-statepoints.ll | 6 define void @test_id() gc "statepoint-example" personality i32 ()* @personality_function { 7 ; CHECK-LABEL: @test_id(
|
/external/ltp/testcases/kernel/device-drivers/base/tbase/ |
D | tbase.c | 221 DEVICE_ATTR(test_id, S_IRUGO, NULL, NULL); 224 BUS_ATTR(test_id, S_IRUGO, NULL, NULL); 227 CLASS_ATTR(test_id, 0644, NULL, NULL); 230 CLASS_DEVICE_ATTR(test_id, 0644, NULL, NULL);
|
/external/llvm/test/CodeGen/X86/ |
D | statepoint-stackmap-format.ll | 66 define i1 @test_id() gc "statepoint-example" { 67 ; CHECK-LABEL: test_id 97 ; CHECK-NEXT: .quad test_id 240 ; Records for the test_id function: 246 ; CHECK-NEXT: .long .Ltmp5-test_id
|
/external/autotest/database/ |
D | schema_051.sql | 137 `test_id` int(11) NOT NULL, 140 UNIQUE KEY `test_id` (`test_id`,`label_id`), 143 …CONSTRAINT `autotests_dependency_labels_test_id_fk` FOREIGN KEY (`test_id`) REFERENCES `afe_autote… 1133 `test_id` int(10) unsigned NOT NULL, 1135 UNIQUE KEY `testlabel_id` (`testlabel_id`,`test_id`), 1136 KEY `test_labels_tests_test_id` (`test_id`), 1138 CONSTRAINT `tests_labels_tests_ibfk_2` FOREIGN KEY (`test_id`) REFERENCES `tko_tests` (`test_idx`)
|
/external/python/cpython3/Lib/test/ |
D | test_range.py | 25 def assert_iterators_equal(self, xs, ys, test_id, limit=None): argument 38 'at position {}; expected {}'.format(test_id, i, y)) 41 'position {}'.format(test_id, x, i)) 44 'expected {}, got {}'.format(test_id, i, y, x)) 488 test_id = "range({}, {}, {})".format(start, end, step) 490 self.assert_iterators_equal(iter1, iter2, test_id, limit=100) 494 test_id = "reversed(range({}, {}, {}))".format(start, end, step) 495 self.assert_iterators_equal(iter1, iter2, test_id, limit=100)
|
/external/v8/tools/testrunner/network/ |
D | network_execution.py | 187 test_id = data[0] 188 if test_id < 0: 193 test = test_map.pop(test_id)
|
/external/autotest/site_utils/lxc/ |
D | container_unittest.py | 302 test_id = random_container_id() 303 container.id = test_id 309 self.assertEqual(test_id, test_container.id)
|
/external/clang/test/CodeGenObjC/ |
D | encode-test.m | 174 id test_id = 0; 177 const char g14[] = @encode(__typeof__(*test_id));
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_functiontestcase.py | 124 def test_id(self): member in Test_FunctionTestCase
|
/external/python/cpython2/Lib/unittest/test/ |
D | test_functiontestcase.py | 124 def test_id(self): member in Test_FunctionTestCase
|
/external/v8/tools/testrunner/local/ |
D | execution.py | 52 def __init__(self, command, test_id, timeout, verbose): argument 54 self.id = test_id
|
/external/autotest/site_utils/ |
D | perf_csv_uploader.py | 168 test_idx=attribute.test_id)
|
/external/v8/src/ast/ |
D | ast.cc | 856 set_to_boolean_types(oracle->ToBooleanTypes(expression()->test_id())); in RecordToBooleanTypeFeedback() 866 set_to_boolean_types(oracle->ToBooleanTypes(right()->test_id())); in RecordToBooleanTypeFeedback() 990 set_to_boolean_types(oracle->ToBooleanTypes(test_id())); in RecordToBooleanTypeFeedback()
|
/external/eigen/unsupported/test/ |
D | cxx11_meta.cpp | 241 static void test_id() in test_id() function 349 CALL_SUBTEST(test_id()); in test_cxx11_meta()
|
/external/protobuf/gtest/test/ |
D | gtest_unittest.cc | 2032 for (int test_id = 0; test_id < num_tests; test_id++) { in TEST() local 2035 if (ShouldRunTestOnShard(num_shards, shard_index, test_id)) { in TEST() 2040 << shard_index << " are both selected to run test " << test_id; in TEST() 2050 for (int test_id = 0; test_id < num_tests; test_id++) { in TEST() local 2052 ShouldRunTestOnShard(num_shards, shard_index, test_id); in TEST()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
D | gtest_unittest.cc | 1887 for (int test_id = 0; test_id < num_tests; test_id++) { in TEST() local 1890 if (ShouldRunTestOnShard(num_shards, shard_index, test_id)) { in TEST() 1895 << shard_index << " are both selected to run test " << test_id; in TEST() 1905 for (int test_id = 0; test_id < num_tests; test_id++) { in TEST() local 1907 ShouldRunTestOnShard(num_shards, shard_index, test_id); in TEST()
|