Lines Matching defs:mt
68 mtctxres_t *mt;
77 if ((mt = malloc(sizeof (mtctxres_t))) == 0) {
82 memset(mt, 0, sizeof (mtctxres_t));
84 if ((ret = pthread_setspecific(key, mt)) != 0) {
85 free(mt);
96 mtctxres_t *mt = (mtctxres_t *)value;
98 if (mt != 0)
99 free(mt);
106 mtctxres_t *mt;
127 if (((mt = pthread_getspecific(key)) != 0) ||
129 (mt = pthread_getspecific(key)) != 0)) {
130 return (mt);