HomeSort by relevance Sort by last modified time
    Searched defs:test_time (Results 1 - 19 of 19) sorted by null

  /external/ltp/testcases/kernel/syscalls/select/
select01.c 65 long test_time = 0; /* in usecs */ local
74 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */
76 if (test_time > 1000000 * 60)
77 test_time = test_time % (1000000 * 60);
79 timeout.tv_sec = test_time / 1000000;
80 timeout.tv_usec = test_time - (timeout.tv_sec * 1000000);
87 lc, test_time, errno);
92 test_time);
select02.c 64 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);
select03.c 68 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);
  /device/google/cuttlefish_common/common/libs/utils/
simulated_buffer_test.cpp 81 MonotonicTimePoint test_time = actual_time + Seconds(10); local
82 buffer.SleepUntilTime(test_time);
84 EXPECT_EQ(test_time, actual_time);
87 test_time += Seconds(5);
88 buffer.SleepUntilTime(test_time);
90 EXPECT_EQ(test_time, actual_time);
100 MonotonicTimePoint test_time = actual_time + Seconds(1); local
101 buffer.SleepUntilTime(test_time);
106 test_time += Seconds(10);
107 buffer.SleepUntilTime(test_time);
161 MonotonicTimePoint test_time; local
263 MonotonicTimePoint test_time; local
356 MonotonicTimePoint test_time = actual_time + quarter_fill_time; local
408 MonotonicTimePoint test_time = actual_time + quarter_fill_time; local
    [all...]
  /external/fonttools/Tests/misc/
loggingTools_test.py 76 def test_time(self): member in class:TimerTest
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_genericpath.py 86 def test_time(self): member in class:GenericTest
test_strptime.py 344 def test_time(self): member in class:StrptimeTests
test_xmlrpc.py 218 def test_time(self): member in class:DateTimeTestCase
    [all...]
  /external/python/cpython2/Lib/test/
test_genericpath.py 86 def test_time(self): member in class:GenericTest
test_strptime.py 340 def test_time(self): member in class:StrptimeTests
test_xmlrpc.py 253 def test_time(self): member in class:DateTimeTestCase
    [all...]
  /external/ltp/testcases/kernel/syscalls/mkdir/
mkdir09.c 79 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/python/cpython3/Lib/test/
test_strptime.py 418 def test_time(self): member in class:StrptimeTests
    [all...]
test_time.py 61 def test_time(self): member in class:TimeTestCase
    [all...]
test_xmlrpc.py 474 def test_time(self): member in class:DateTimeTestCase
    [all...]
test_logging.py 3542 def test_time(self): member in class:FormatterTest
    [all...]
  /external/ltp/testcases/kernel/mem/mtest05/
mmstress.c 637 int test_time = 0; local
676 test_time = atoi(optarg));
696 set_timer(test_time);
  /external/linux-kselftest/tools/testing/selftests/x86/
test_vsyscall.c 267 static int test_time(void) { function
494 nerrs += test_time();
  /external/autotest/frontend/afe/
models.py 1048 test_time = dbmodels.SmallIntegerField(choices=TestTime.choices(), variable in class:Test
    [all...]

Completed in 246 milliseconds