Lines Matching defs:tfns
317 struct ldap_thread_fns tfns;
325 (void) memset(&tfns, '\0', sizeof (struct ldap_thread_fns));
326 tfns.ltf_mutex_alloc = (void *(*)(void)) ns_mutex_alloc;
327 tfns.ltf_mutex_free = (void (*)(void *)) ns_mutex_free;
328 tfns.ltf_mutex_lock = (int (*)(void *)) mutex_lock;
329 tfns.ltf_mutex_unlock = (int (*)(void *)) mutex_unlock;
330 tfns.ltf_get_errno = get_errno;
331 tfns.ltf_set_errno = set_errno;
332 tfns.ltf_get_lderrno = get_ld_error;
333 tfns.ltf_set_lderrno = set_ld_error;
334 tfns.ltf_lderrno_arg = NULL;
340 (void *) &tfns);