OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__test_list
(Results
1 - 4
of
4
) sorted by null
/external/seccomp-tests/linux/
test_harness.h
410
static struct __test_metadata *
__test_list
;
variable in typeref:struct:__test_metadata
431
if (
__test_list
== NULL) {
432
__test_list
= t;
439
t->prev =
__test_list
->prev;
441
__test_list
->prev = t;
443
t->next =
__test_list
;
446
__test_list
= t;
520
for (t =
__test_list
; t; t = t->next) {
seccomp_bpf.c
[
all
...]
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
test_harness.h
391
static struct __test_metadata *
__test_list
= NULL;
variable in typeref:struct:__test_metadata
403
if (
__test_list
== NULL) {
404
__test_list
= t;
409
t->next =
__test_list
;
412
__test_list
= t;
431
for (t =
__test_list
; t; t = t->next) {
/external/linux-kselftest/tools/testing/selftests/
kselftest_harness.h
617
static struct __test_metadata *
__test_list
;
variable in typeref:struct:__test_metadata
638
if (
__test_list
== NULL) {
639
__test_list
= t;
646
t->prev =
__test_list
->prev;
648
__test_list
->prev = t;
650
t->next =
__test_list
;
653
__test_list
= t;
736
for (t =
__test_list
; t; t = t->next) {
Completed in 184 milliseconds