Home
last modified time | relevance | path

Searched refs:test_id (Results 1 – 25 of 69) sorted by relevance

123

/external/ltp/testcases/kernel/syscalls/quotactl/
Dquotactl01.c82 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 …]
Dquotactl02.c53 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()
Dquotactl03.c59 static uint32_t test_id = 0xfffffffc; variable
68 test_id, (void *)&res_dquota)); in verify_quota()
/external/python/cpython2/Lib/test/
Dtest_xrange.py28 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/
Dservice_unittest.py148 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/
Damdgpu_test.c299 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/
Ddownload_images_buildid_test.py72 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/
Drun-deopt-fuzzer.py411 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/
Djankbench.py141 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/
Dpatchable-statepoints.ll6 define void @test_id() gc "statepoint-example" personality i32 ()* @personality_function {
7 ; CHECK-LABEL: @test_id(
/external/ltp/testcases/kernel/device-drivers/base/tbase/
Dtbase.c221 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/
Dstatepoint-stackmap-format.ll66 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/
Dschema_051.sql137 `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/
Dtest_range.py25 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/
Dnetwork_execution.py187 test_id = data[0]
188 if test_id < 0:
193 test = test_map.pop(test_id)
/external/autotest/site_utils/lxc/
Dcontainer_unittest.py302 test_id = random_container_id()
303 container.id = test_id
309 self.assertEqual(test_id, test_container.id)
/external/clang/test/CodeGenObjC/
Dencode-test.m174 id test_id = 0;
177 const char g14[] = @encode(__typeof__(*test_id));
/external/python/cpython3/Lib/unittest/test/
Dtest_functiontestcase.py124 def test_id(self): member in Test_FunctionTestCase
/external/python/cpython2/Lib/unittest/test/
Dtest_functiontestcase.py124 def test_id(self): member in Test_FunctionTestCase
/external/v8/tools/testrunner/local/
Dexecution.py52 def __init__(self, command, test_id, timeout, verbose): argument
54 self.id = test_id
/external/autotest/site_utils/
Dperf_csv_uploader.py168 test_idx=attribute.test_id)
/external/v8/src/ast/
Dast.cc856 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/
Dcxx11_meta.cpp241 static void test_id() in test_id() function
349 CALL_SUBTEST(test_id()); in test_cxx11_meta()
/external/protobuf/gtest/test/
Dgtest_unittest.cc2032 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/
Dgtest_unittest.cc1887 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()

123