/third_party/musl/libc-test/src/api/ |
D | pthread.c | 16 T(pthread_rwlockattr_t) in f() 123 {int(*p)(pthread_rwlock_t*restrict,const pthread_rwlockattr_t*restrict) = pthread_rwlock_init;} in f() 129 {int(*p)(pthread_rwlockattr_t*) = pthread_rwlockattr_destroy;} in f() 130 {int(*p)(const pthread_rwlockattr_t*restrict,int*restrict) = pthread_rwlockattr_getpshared;} in f() 131 {int(*p)(pthread_rwlockattr_t*) = pthread_rwlockattr_init;} in f() 132 {int(*p)(pthread_rwlockattr_t*,int) = pthread_rwlockattr_setpshared;} in f()
|
/third_party/musl/include/ |
D | pthread.h | 124 int pthread_rwlock_init(pthread_rwlock_t *__restrict, const pthread_rwlockattr_t *__restrict); 189 int pthread_rwlockattr_init(pthread_rwlockattr_t *); 190 int pthread_rwlockattr_destroy(pthread_rwlockattr_t *); 191 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int); 192 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *__restrict, int *__restrict);
|
/third_party/musl/porting/liteos_m/user/include/ |
D | pthread.h | 121 int pthread_rwlock_init(pthread_rwlock_t *__restrict, const pthread_rwlockattr_t *__restrict); 186 int pthread_rwlockattr_init(pthread_rwlockattr_t *); 187 int pthread_rwlockattr_destroy(pthread_rwlockattr_t *); 188 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int); 189 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *__restrict, int *__restrict);
|
/third_party/musl/ndk_musl_include/ |
D | pthread.h | 225 int pthread_rwlock_init(pthread_rwlock_t *__restrict, const pthread_rwlockattr_t *__restrict); 350 int pthread_rwlockattr_init(pthread_rwlockattr_t *); 351 int pthread_rwlockattr_destroy(pthread_rwlockattr_t *); 352 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int); 353 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *__restrict, int *__restrict);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | pthread.h | 128 int pthread_rwlock_init(pthread_rwlock_t *__restrict, const pthread_rwlockattr_t *__restrict); 193 int pthread_rwlockattr_init(pthread_rwlockattr_t *); 194 int pthread_rwlockattr_destroy(pthread_rwlockattr_t *); 195 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int); 196 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *__restrict, int *__restrict);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | pthread.h | 128 int pthread_rwlock_init(pthread_rwlock_t *__restrict, const pthread_rwlockattr_t *__restrict); 193 int pthread_rwlockattr_init(pthread_rwlockattr_t *); 194 int pthread_rwlockattr_destroy(pthread_rwlockattr_t *); 195 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int); 196 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *__restrict, int *__restrict);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | pthread.h | 128 int pthread_rwlock_init(pthread_rwlock_t *__restrict, const pthread_rwlockattr_t *__restrict); 193 int pthread_rwlockattr_init(pthread_rwlockattr_t *); 194 int pthread_rwlockattr_destroy(pthread_rwlockattr_t *); 195 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int); 196 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *__restrict, int *__restrict);
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_pthread.h | 128 typedef void *pthread_rwlockattr_t; typedef 131 int dng_pthread_rwlock_init(dng_pthread_rwlock_t * rwlock, const pthread_rwlockattr_t * attrs); 139 typedef void *pthread_rwlockattr_t; typedef 142 int dng_pthread_rwlock_init(dng_pthread_rwlock_t * rwlock, const pthread_rwlockattr_t * attrs);
|
/third_party/musl/porting/linux/user/include/ |
D | pthread.h | 237 int pthread_rwlock_init(pthread_rwlock_t *__restrict, const pthread_rwlockattr_t *__restrict); 366 int pthread_rwlockattr_init(pthread_rwlockattr_t *); 367 int pthread_rwlockattr_destroy(pthread_rwlockattr_t *); 368 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *, int); 369 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t *__restrict, int *__restrict);
|
/third_party/musl/src/thread/ |
D | pthread_rwlockattr_init.c | 3 int pthread_rwlockattr_init(pthread_rwlockattr_t *a) in pthread_rwlockattr_init() 5 *a = (pthread_rwlockattr_t){0}; in pthread_rwlockattr_init()
|
D | pthread_rwlockattr_destroy.c | 3 int pthread_rwlockattr_destroy(pthread_rwlockattr_t *a) in pthread_rwlockattr_destroy()
|
D | pthread_rwlockattr_setpshared.c | 3 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *a, int pshared) in pthread_rwlockattr_setpshared()
|
D | pthread_rwlock_init.c | 3 int pthread_rwlock_init(pthread_rwlock_t *restrict rw, const pthread_rwlockattr_t *restrict a) in pthread_rwlock_init()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | pthread_rwlockattr_setpshared.c | 26 pthread_rwlockattr_t attr; in pthread_rwlockattr_setpshared_0100() 40 pthread_rwlockattr_t attr; in pthread_rwlockattr_setpshared_0200()
|
D | pthread_rwlock_tryrdlock.c | 27 pthread_rwlockattr_t rwlockattr; in pthread_rwlock_tryrdlock_0100() 48 pthread_rwlockattr_t rwlockattr; in pthread_rwlock_tryrdlock_0200()
|
D | pthread_rwlock_trywrlock.c | 27 pthread_rwlockattr_t rwlockattr; in pthread_rwlock_trywrlock_0100() 48 pthread_rwlockattr_t rwlockattr; in pthread_rwlock_trywrlock_0200()
|
D | pthread_rwlockattr_init.c | 26 pthread_rwlockattr_t rwlockattr; in pthread_rwlockattr_init_0100()
|
D | pthread_rwlockattr_destroy.c | 26 pthread_rwlockattr_t attr; in pthread_rwlockattr_destroy_0100()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/pthread_h/ |
D | 3-11-buildonly.c | 13 static pthread_rwlockattr_t dummy;
|
/third_party/musl/porting/linux/user/src/thread/ |
D | pthread_rwlock_init.c | 3 int pthread_rwlock_init(pthread_rwlock_t *restrict rw, const pthread_rwlockattr_t *restrict a) in pthread_rwlock_init()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlockattr_destroy/ |
D | 1-1.c | 23 pthread_rwlockattr_t rwla; in main()
|
D | 2-1.c | 26 pthread_rwlockattr_t rwla; in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlockattr_getpshared/ |
D | 1-1.c | 23 pthread_rwlockattr_t rwla; in main()
|
D | 4-1.c | 24 pthread_rwlockattr_t rwla; in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlockattr_init/ |
D | 1-1.c | 25 pthread_rwlockattr_t rwa; in main()
|