OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:test_time
(Results
1 - 25
of
29
) sorted by null
1
2
/external/ltp/testcases/kernel/syscalls/select/
select01.c
66
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
);
select02.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);
94
test_time
);
select03.c
69
long
test_time
= 0; /* in usecs */
local
79
test_time
= ((lc % 2000) * 100000); /* 100 milli-seconds */
81
if (
test_time
> 1000000 * 60)
82
test_time
=
test_time
% (1000000 * 60);
84
timeout.tv_sec =
test_time
/ 1000000;
85
timeout.tv_usec =
test_time
- (timeout.tv_sec * 1000000);
99
test_time
);
/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
...]
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_genericpath.py
86
def
test_time
(self):
member in class:GenericTest
test_strptime.py
341
def
test_time
(self):
member in class:StrptimeTests
test_xmlrpc.py
218
def
test_time
(self):
member in class:DateTimeTestCase
[
all
...]
/prebuilts/gdb/linux-x86/lib/python2.7/test/
test_genericpath.py
86
def
test_time
(self):
member in class:GenericTest
test_strptime.py
341
def
test_time
(self):
member in class:StrptimeTests
test_xmlrpc.py
218
def
test_time
(self):
member in class:DateTimeTestCase
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_genericpath.py
86
def
test_time
(self):
member in class:GenericTest
test_strptime.py
341
def
test_time
(self):
member in class:StrptimeTests
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_genericpath.py
86
def
test_time
(self):
member in class:GenericTest
test_strptime.py
341
def
test_time
(self):
member in class:StrptimeTests
/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
369
def
test_time
(self):
member in class:StrptimeTests
test_time.py
60
def
test_time
(self):
member in class:TimeTestCase
[
all
...]
test_xmlrpc.py
386
def
test_time
(self):
member in class:DateTimeTestCase
[
all
...]
/external/linux-kselftest/tools/testing/selftests/x86/
test_vsyscall.c
262
static int
test_time
(void) {
function
488
nerrs +=
test_time
();
/external/ltp/testcases/kernel/mem/mtest05/
mmstress.c
637
int
test_time
= 0;
local
676
test_time
= atoi(optarg));
696
set_timer(
test_time
);
Completed in 2505 milliseconds
1
2