Home | History | Annotate | Download | only in liboverlay

Lines Matching refs:attr

98     pthread_mutexattr_t attr;
292 if (pthread_mutexattr_init(&p->attr) != 0) {
293 LOGE("Failed to initialize overlay mutex attr");
296 if (pthread_mutexattr_setpshared(&p->attr, PTHREAD_PROCESS_SHARED) != 0) {
297 LOGE("Failed to set the overlay mutex attr to be shared across-processes");
300 if (pthread_mutex_init(&p->lock, &p->attr) != 0) {
310 pthread_mutexattr_destroy(&p->attr);
330 if (pthread_mutexattr_destroy(&shared->attr)) {
331 LOGE("Failed to uninitialize the overlay mutex attr!\n");