Searched refs:tfns (Results 1 – 2 of 2) sorted by relevance
166 struct ldap_thread_fns tfns; in prldap_install_thread_functions() local178 memset( &tfns, '\0', sizeof(struct ldap_thread_fns) ); in prldap_install_thread_functions()179 tfns.ltf_get_errno = prldap_get_system_errno; in prldap_install_thread_functions()180 tfns.ltf_set_errno = prldap_set_system_errno; in prldap_install_thread_functions()182 tfns.ltf_mutex_alloc = prldap_mutex_alloc; in prldap_install_thread_functions()183 tfns.ltf_mutex_free = prldap_mutex_free; in prldap_install_thread_functions()184 tfns.ltf_mutex_lock = prldap_mutex_lock; in prldap_install_thread_functions()185 tfns.ltf_mutex_unlock = prldap_mutex_unlock; in prldap_install_thread_functions()187 tfns.ltf_get_lderrno = NULL; in prldap_install_thread_functions()188 tfns.ltf_set_lderrno = NULL; in prldap_install_thread_functions()[all …]
328 struct ldap_thread_fns tfns; in setup_mt_conn() local336 (void) memset(&tfns, '\0', sizeof (struct ldap_thread_fns)); in setup_mt_conn()337 tfns.ltf_mutex_alloc = (void *(*)(void)) ns_mutex_alloc; in setup_mt_conn()338 tfns.ltf_mutex_free = (void (*)(void *)) ns_mutex_free; in setup_mt_conn()339 tfns.ltf_mutex_lock = (int (*)(void *)) mutex_lock; in setup_mt_conn()340 tfns.ltf_mutex_unlock = (int (*)(void *)) mutex_unlock; in setup_mt_conn()341 tfns.ltf_get_errno = get_errno; in setup_mt_conn()342 tfns.ltf_set_errno = set_errno; in setup_mt_conn()343 tfns.ltf_get_lderrno = get_ld_error; in setup_mt_conn()344 tfns.ltf_set_lderrno = set_ld_error; in setup_mt_conn()[all …]