Searched defs:test_time (Results 1 - 11 of 11) sorted by relevance

/external/ltp/testcases/kernel/syscalls/select/
H A Dselect01.c66 long test_time = 0; /* in usecs */ local
75 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */
77 if (test_time > 1000000 * 60)
78 test_time = test_time % (1000000 * 60);
80 timeout.tv_sec = test_time / 1000000;
81 timeout.tv_usec = test_time - (timeout.tv_sec * 1000000);
88 lc, test_time, errno);
93 test_time);
H A Dselect02.c64 long test_time = 0; /* in usecs */ local
73 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */
75 if (test_time > 1000000 * 60)
76 test_time = test_time % (1000000 * 60);
78 timeout.tv_sec = test_time / 1000000;
79 timeout.tv_usec = test_time - (timeout.tv_sec * 1000000);
93 test_time);
H A Dselect03.c68 long test_time = 0; /* in usecs */ local
78 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */
80 if (test_time > 1000000 * 60)
81 test_time = test_time % (1000000 * 60);
83 timeout.tv_sec = test_time / 1000000;
84 timeout.tv_usec = test_time - (timeout.tv_sec * 1000000);
98 test_time);
/external/python/cpython2/Lib/test/
H A Dtest_genericpath.py86 def test_time(self): member in class:GenericTest
H A Dtest_strptime.py340 def test_time(self): member in class:StrptimeTests
H A Dtest_xmlrpc.py253 def test_time(self): member in class:DateTimeTestCase
/external/ltp/testcases/kernel/syscalls/mkdir/
H A Dmkdir09.c79 static int test_time = 5; variable
108 test_time = atoi(opt_test_time);
179 if (test_time) {
183 sleep(test_time);
203 if (test_time) {
204 sleep(test_time);
/external/libchrome/base/
H A Dtracked_objects_unittest.cc109 static void SetTestTime(unsigned int test_time) { test_time_ = test_time; } argument
/external/ltp/testcases/kernel/mem/mtest05/
H A Dmmstress.c637 int test_time = 0; local
676 test_time = atoi(optarg));
696 set_timer(test_time);
/external/netperf/src/
H A Dnetsh.c148 test_time = 10, /* test ends by time */ variable
928 test_time = convert(optarg);
930 if (test_time < 0) {
931 test_bytes = -1 * test_time;
933 test_time = 0;
1323 test_time,
/external/autotest/frontend/afe/
H A Dmodels.py833 test_time = dbmodels.SmallIntegerField(choices=TestTime.choices(), variable in class:Test

Completed in 486 milliseconds