Lines Matching refs:attr

36 pthread_condattr_init(pthread_condattr_t *attr)  in pthread_condattr_init()  argument
44 attr->__pthread_condattrp = ap; in pthread_condattr_init()
53 pthread_condattr_destroy(pthread_condattr_t *attr) in pthread_condattr_destroy() argument
55 if (attr == NULL || attr->__pthread_condattrp == NULL) in pthread_condattr_destroy()
57 lfree(attr->__pthread_condattrp, sizeof (cvattr_t)); in pthread_condattr_destroy()
58 attr->__pthread_condattrp = NULL; in pthread_condattr_destroy()
66 pthread_condattr_setclock(pthread_condattr_t *attr, clockid_t clock_id) in pthread_condattr_setclock() argument
70 if (attr != NULL && (ap = attr->__pthread_condattrp) != NULL && in pthread_condattr_setclock()
82 pthread_condattr_getclock(const pthread_condattr_t *attr, clockid_t *clock_id) in pthread_condattr_getclock() argument
86 if (attr != NULL && (ap = attr->__pthread_condattrp) != NULL && in pthread_condattr_getclock()
100 pthread_condattr_setpshared(pthread_condattr_t *attr, int pshared) in pthread_condattr_setpshared() argument
104 if (attr != NULL && (ap = attr->__pthread_condattrp) != NULL && in pthread_condattr_setpshared()
118 pthread_condattr_getpshared(const pthread_condattr_t *attr, int *pshared) in pthread_condattr_getpshared() argument
122 if (attr != NULL && (ap = attr->__pthread_condattrp) != NULL && in pthread_condattr_getpshared()
136 pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr) in pthread_cond_init() argument
143 if (attr == NULL) { in pthread_cond_init()
146 } else if ((ap = attr->__pthread_condattrp) != NULL) { in pthread_cond_init()