Lines Matching refs:_Nullable

98 int pthread_atfork(void (* _Nullable __prepare)(void), void (* _Nullable __parent)(void), void (* _…
107 int pthread_attr_getstack(const pthread_attr_t* _Nonnull __attr, void* _Nullable * _Nonnull __addr,…
128 const struct timespec* _Nullable __timeout) __INTRODUCED_IN(30);
130 int pthread_cond_init(pthread_cond_t* _Nonnull __cond, const pthread_condattr_t* _Nullable __attr);
132 …t* _Nonnull __cond, pthread_mutex_t* _Nonnull __mutex, const struct timespec* _Nullable __timeout);
144 … const struct timespec* _Nullable __timeout) __INTRODUCED_IN_64(28);
157 …d_ptr, pthread_attr_t const* _Nullable __attr, void* _Nonnull (* _Nonnull __start_routine)(void* _…
163 void pthread_exit(void* _Nullable __return_value) __noreturn;
171 void* _Nullable pthread_getspecific(pthread_key_t __key);
175 int pthread_join(pthread_t __pthread, void* _Nullable * _Nullable __return_value_ptr);
192 …_key_create(pthread_key_t* _Nonnull __key_ptr, void (* _Nullable __key_destructor)(void* _Nullable
212 const struct timespec* _Nullable __abstime) __INTRODUCED_IN(30);
214 int pthread_mutex_init(pthread_mutex_t* _Nonnull __mutex, const pthread_mutexattr_t* _Nullable __at…
216 int pthread_mutex_timedlock(pthread_mutex_t* _Nonnull __mutex, const struct timespec* _Nullable __t…
227 …medlock_monotonic_np(pthread_mutex_t* _Nonnull __mutex, const struct timespec* _Nullable __timeout)
243 const struct timespec* _Nullable __timeout) __INTRODUCED_IN(30);
245 const struct timespec* _Nullable __timeout) __INTRODUCED_IN(30);
247 int pthread_rwlock_init(pthread_rwlock_t* _Nonnull __rwlock, const pthread_rwlockattr_t* _Nullable
249 …wlock_timedrdlock(pthread_rwlock_t* _Nonnull __rwlock, const struct timespec* _Nullable __timeout);
252 … const struct timespec* _Nullable __timeout) __INTRODUCED_IN(28);
253 …wlock_timedwrlock(pthread_rwlock_t* _Nonnull __rwlock, const struct timespec* _Nullable __timeout);
256 … const struct timespec* _Nullable __timeout) __INTRODUCED_IN(28);
270 …nit(pthread_barrier_t* _Nonnull __barrier, const pthread_barrierattr_t* _Nullable __attr, unsigned…
327 int pthread_setspecific(pthread_key_t __key, const void* _Nullable __value);
329 typedef void (* _Nullable __pthread_cleanup_func_t)(void* _Nullable);
332 struct __pthread_cleanup_t* _Nullable __cleanup_prev;
333 __pthread_cleanup_func_t _Nullable __cleanup_routine;
334 void* _Nullable __cleanup_arg;
337 …cleanup_push(__pthread_cleanup_t* _Nonnull c, __pthread_cleanup_func_t _Nullable, void* _Nullable);