Symbol: pthread_rwlock_t
headers/posix/pthread.h
162
extern int pthread_rwlock_init(pthread_rwlock_t *lock,
headers/posix/pthread.h
164
extern int pthread_rwlock_destroy(pthread_rwlock_t *lock);
headers/posix/pthread.h
165
extern int pthread_rwlock_rdlock(pthread_rwlock_t *lock);
headers/posix/pthread.h
166
extern int pthread_rwlock_tryrdlock(pthread_rwlock_t *lock);
headers/posix/pthread.h
167
extern int pthread_rwlock_clockrdlock(pthread_rwlock_t* rwlock,
headers/posix/pthread.h
169
extern int pthread_rwlock_timedrdlock(pthread_rwlock_t *lock,
headers/posix/pthread.h
171
extern int pthread_rwlock_wrlock(pthread_rwlock_t *lock);
headers/posix/pthread.h
172
extern int pthread_rwlock_trywrlock(pthread_rwlock_t *lock);
headers/posix/pthread.h
173
extern int pthread_rwlock_clockwrlock(pthread_rwlock_t* rwlock,
headers/posix/pthread.h
175
extern int pthread_rwlock_timedwrlock(pthread_rwlock_t *lock,
headers/posix/pthread.h
177
extern int pthread_rwlock_unlock(pthread_rwlock_t *lock);
headers/private/netservices/NetworkCookieJar.h
33
pthread_rwlock_t fLock;
src/apps/poorman/PoorManServer.cpp
464
pthread_rwlock_t* get_web_dir_lock()
src/apps/poorman/PoorManServer.cpp
471
pthread_rwlock_t* get_index_name_lock()
src/apps/poorman/PoorManServer.h
37
pthread_rwlock_t* GetWebDirLock(){return &fWebDirLock;}
src/apps/poorman/PoorManServer.h
38
pthread_rwlock_t* GetIndexNameLock(){return &fIndexNameLock;}
src/apps/poorman/PoorManServer.h
48
pthread_rwlock_t fWebDirLock;
src/apps/poorman/PoorManServer.h
49
pthread_rwlock_t fIndexNameLock;
src/apps/poorman/PoorManServer.h
69
pthread_rwlock_t* get_web_dir_lock();
src/apps/poorman/PoorManServer.h
70
pthread_rwlock_t* get_index_name_lock();
src/apps/poorman/PoorManWindow.h
201
pthread_rwlock_t fLogFileLock;
src/libs/posix_error_mapper/pthread_rwlock.cpp
12
(pthread_rwlock_t *lock, const pthread_rwlockattr_t *attr),
src/libs/posix_error_mapper/pthread_rwlock.cpp
17
WRAPPER_FUNCTION(int, pthread_rwlock_destroy, (pthread_rwlock_t *lock),
src/libs/posix_error_mapper/pthread_rwlock.cpp
22
WRAPPER_FUNCTION(int, pthread_rwlock_rdlock, (pthread_rwlock_t *lock),
src/libs/posix_error_mapper/pthread_rwlock.cpp
27
WRAPPER_FUNCTION(int, pthread_rwlock_tryrdlock, (pthread_rwlock_t *lock),
src/libs/posix_error_mapper/pthread_rwlock.cpp
33
(pthread_rwlock_t *lock, const struct timespec *timeout),
src/libs/posix_error_mapper/pthread_rwlock.cpp
38
WRAPPER_FUNCTION(int, pthread_rwlock_wrlock, (pthread_rwlock_t *lock),
src/libs/posix_error_mapper/pthread_rwlock.cpp
43
WRAPPER_FUNCTION(int, pthread_rwlock_trywrlock, (pthread_rwlock_t *lock),
src/libs/posix_error_mapper/pthread_rwlock.cpp
49
(pthread_rwlock_t *lock, const struct timespec *timeout),
src/libs/posix_error_mapper/pthread_rwlock.cpp
54
WRAPPER_FUNCTION(int, pthread_rwlock_unlock, (pthread_rwlock_t *lock),
src/system/libnetwork/netresolv/net/nsdispatch.c
156
static pthread_rwlock_t _nslock;
src/system/libroot/posix/pthread/pthread_rwlock.cpp
300
STATIC_ASSERT(sizeof(pthread_rwlock_t) >= sizeof(SharedRWLock));
src/system/libroot/posix/pthread/pthread_rwlock.cpp
301
STATIC_ASSERT(sizeof(pthread_rwlock_t) >= sizeof(LocalRWLock));
src/system/libroot/posix/pthread/pthread_rwlock.cpp
309
pthread_rwlock_init(pthread_rwlock_t* lock, const pthread_rwlockattr_t* _attr)
src/system/libroot/posix/pthread/pthread_rwlock.cpp
322
pthread_rwlock_destroy(pthread_rwlock_t* lock)
src/system/libroot/posix/pthread/pthread_rwlock.cpp
332
pthread_rwlock_rdlock(pthread_rwlock_t* lock)
src/system/libroot/posix/pthread/pthread_rwlock.cpp
342
pthread_rwlock_tryrdlock(pthread_rwlock_t* lock)
src/system/libroot/posix/pthread/pthread_rwlock.cpp
355
pthread_rwlock_clockrdlock(pthread_rwlock_t* lock, clockid_t clock_id,
src/system/libroot/posix/pthread/pthread_rwlock.cpp
390
pthread_rwlock_timedrdlock(pthread_rwlock_t* lock,
src/system/libroot/posix/pthread/pthread_rwlock.cpp
398
pthread_rwlock_wrlock(pthread_rwlock_t* lock)
src/system/libroot/posix/pthread/pthread_rwlock.cpp
408
pthread_rwlock_trywrlock(pthread_rwlock_t* lock)
src/system/libroot/posix/pthread/pthread_rwlock.cpp
421
pthread_rwlock_clockwrlock(pthread_rwlock_t* lock, clockid_t clock_id,
src/system/libroot/posix/pthread/pthread_rwlock.cpp
456
pthread_rwlock_timedwrlock(pthread_rwlock_t* lock,
src/system/libroot/posix/pthread/pthread_rwlock.cpp
464
pthread_rwlock_unlock(pthread_rwlock_t* lock)