OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:test_platform_thread
(Results
1 - 2
of
2
) sorted by null
/external/vulkan-validation-layers/tests/
test_common.h
99
typedef pthread_t
test_platform_thread
;
typedef
101
static inline int test_platform_thread_create(
test_platform_thread
*thread, void *(*func)(void *), void *data) {
106
static inline int test_platform_thread_join(
test_platform_thread
thread, void **retval) { return pthread_join(thread, retval); }
127
typedef HANDLE
test_platform_thread
;
typedef
128
static inline int test_platform_thread_create(
test_platform_thread
*thread, void *(*func)(void *), void *data) {
138
static inline int test_platform_thread_join(
test_platform_thread
thread, void **retval) {
layer_validation_tests.cpp
[
all
...]
Completed in 88 milliseconds