Lines Matching refs:self
15 pthread_t self = __pthread_self();
16 if (!self->dlerror_flag) return 0;
17 self->dlerror_flag = 0;
18 char *s = self->dlerror_buf;
35 pthread_t self = __pthread_self();
36 if (!self->dlerror_buf || self->dlerror_buf == (void *)-1)
41 *(void **)self->dlerror_buf = h;
42 } while (a_cas_p(&freebuf_queue, h, self->dlerror_buf) != h);
63 pthread_t self = __pthread_self();
64 if (self->dlerror_buf != (void *)-1)
66 __libc_free(self->dlerror_buf);
68 free(self->dlerror_buf);
83 self->dlerror_buf = buf;
84 self->dlerror_flag = 1;