Home
last modified time | relevance | path

Searched refs:condAttr (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/src/system_wrappers/source/
Dcondition_variable_posix.cc52 pthread_condattr_t condAttr; in Construct() local
53 result = pthread_condattr_init(&condAttr); in Construct()
58 result = pthread_condattr_setclock(&condAttr, CLOCK_MONOTONIC); in Construct()
63 result = pthread_cond_init(&_cond, &condAttr); in Construct()
68 result = pthread_condattr_destroy(&condAttr); in Construct()
Devent_posix.cc70 pthread_condattr_t condAttr; in Construct() local
71 result = pthread_condattr_init(&condAttr); in Construct()
76 result = pthread_condattr_setclock(&condAttr, CLOCK_MONOTONIC); in Construct()
81 result = pthread_cond_init(&cond, &condAttr); in Construct()
86 result = pthread_condattr_destroy(&condAttr); in Construct()