OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pthread_rwlock_t
(Results
1 - 12
of
12
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_posix_util.h
61
pthread_rwlock_t
*rwlock, const pthread_rwlockattr_t *attr);
62
extern "C" int __interceptor_pthread_rwlock_destroy(
pthread_rwlock_t
*rwlock);
63
extern "C" int __interceptor_pthread_rwlock_trywrlock(
pthread_rwlock_t
*rwlock);
64
extern "C" int __interceptor_pthread_rwlock_wrlock(
pthread_rwlock_t
*rwlock);
65
extern "C" int __interceptor_pthread_rwlock_unlock(
pthread_rwlock_t
*rwlock);
66
extern "C" int __interceptor_pthread_rwlock_rdlock(
pthread_rwlock_t
*rwlock);
67
extern "C" int __interceptor_pthread_rwlock_tryrdlock(
pthread_rwlock_t
*rwlock);
tsan_test_util_posix.cc
111
CHECK_EQ(__interceptor_pthread_rwlock_init((
pthread_rwlock_t
*)mtx_, 0), 0);
134
CHECK_EQ(__interceptor_pthread_rwlock_destroy((
pthread_rwlock_t
*)mtx_), 0);
146
CHECK_EQ(__interceptor_pthread_rwlock_wrlock((
pthread_rwlock_t
*)mtx_), 0);
158
return __interceptor_pthread_rwlock_trywrlock((
pthread_rwlock_t
*)mtx_) == 0;
171
CHECK_EQ(__interceptor_pthread_rwlock_unlock((
pthread_rwlock_t
*)mtx_), 0);
177
CHECK_EQ(__interceptor_pthread_rwlock_rdlock((
pthread_rwlock_t
*)mtx_), 0);
183
return __interceptor_pthread_rwlock_tryrdlock((
pthread_rwlock_t
*)mtx_) == 0;
189
CHECK_EQ(__interceptor_pthread_rwlock_unlock((
pthread_rwlock_t
*)mtx_), 0);
/src/lib/libpthread/
pthread.h
192
int pthread_rwlock_init(
pthread_rwlock_t
* __restrict,
194
int pthread_rwlock_destroy(
pthread_rwlock_t
*);
195
int pthread_rwlock_rdlock(
pthread_rwlock_t
*);
196
int pthread_rwlock_tryrdlock(
pthread_rwlock_t
*);
197
int pthread_rwlock_wrlock(
pthread_rwlock_t
*);
198
int pthread_rwlock_trywrlock(
pthread_rwlock_t
*);
200
int pthread_rwlock_timedrdlock(
pthread_rwlock_t
* __restrict,
202
int pthread_rwlock_timedwrlock(
pthread_rwlock_t
* __restrict,
205
int pthread_rwlock_unlock(
pthread_rwlock_t
*);
239
int pthread_rwlock_held_np(
pthread_rwlock_t
*);
[
all
...]
pthread_rwlock.c
60
static int pthread__rwlock_wrlock(
pthread_rwlock_t
*, const struct timespec *);
61
static int pthread__rwlock_rdlock(
pthread_rwlock_t
*, const struct timespec *);
62
static void pthread__rwlock_early(pthread_t,
pthread_rwlock_t
*,
65
int _pthread_rwlock_held_np(
pthread_rwlock_t
*);
66
int _pthread_rwlock_rdheld_np(
pthread_rwlock_t
*);
67
int _pthread_rwlock_wrheld_np(
pthread_rwlock_t
*);
84
rw_cas(
pthread_rwlock_t
*ptr, uintptr_t o, uintptr_t n)
92
pthread_rwlock_init(
pthread_rwlock_t
*ptr,
112
pthread_rwlock_destroy(
pthread_rwlock_t
*ptr)
158
pthread__rwlock_rdlock(
pthread_rwlock_t
*ptr, const struct timespec *ts
[
all
...]
pthread_types.h
84
typedef struct __pthread_rwlock_st
pthread_rwlock_t
;
typedef in typeref:struct:__pthread_rwlock_st
pthread.c
86
pthread_rwlock_t
pthread__alltree_lock = PTHREAD_RWLOCK_INITIALIZER;
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
dd_interceptors.cc
100
INTERCEPTOR(int, pthread_rwlock_destroy,
pthread_rwlock_t
*m) {
106
INTERCEPTOR(int, pthread_rwlock_rdlock,
pthread_rwlock_t
*m) {
114
INTERCEPTOR(int, pthread_rwlock_tryrdlock,
pthread_rwlock_t
*m) {
122
INTERCEPTOR(int, pthread_rwlock_timedrdlock,
pthread_rwlock_t
*m,
131
INTERCEPTOR(int, pthread_rwlock_wrlock,
pthread_rwlock_t
*m) {
139
INTERCEPTOR(int, pthread_rwlock_trywrlock,
pthread_rwlock_t
*m) {
147
INTERCEPTOR(int, pthread_rwlock_timedwrlock,
pthread_rwlock_t
*m,
156
INTERCEPTOR(int, pthread_rwlock_unlock,
pthread_rwlock_t
*m) {
/src/tests/lib/libpthread/
t_rwlock.c
69
pthread_rwlock_t
lk;
73
static
pthread_rwlock_t
static_rwlock = PTHREAD_RWLOCK_INITIALIZER;
/src/lib/librumpuser/
rumpuser_pth.c
266
pthread_rwlock_t
pthrw;
268
char pad[64 - sizeof(
pthread_rwlock_t
)];
/src/lib/libc/include/
reentrant.h
114
#define rwlock_t
pthread_rwlock_t
/src/sys/lib/libunwind/
AddressSpace.hpp
347
pthread_rwlock_t
fdeTreeLock;
/src/common/lib/libprop/
prop_object_impl.h
450
#define _PROP_RWLOCK_DECL(x)
pthread_rwlock_t
x ;
Completed in 17 milliseconds
Indexes created Thu Oct 02 01:09:59 GMT 2025