Searched refs:tfns (Results 1 – 2 of 2) sorted by relevance
169 struct ldap_thread_fns tfns; in prldap_install_thread_functions() local181 memset( &tfns, '\0', sizeof(struct ldap_thread_fns) ); in prldap_install_thread_functions()182 tfns.ltf_get_errno = prldap_get_system_errno; in prldap_install_thread_functions()183 tfns.ltf_set_errno = prldap_set_system_errno; in prldap_install_thread_functions()185 tfns.ltf_mutex_alloc = prldap_mutex_alloc; in prldap_install_thread_functions()186 tfns.ltf_mutex_free = prldap_mutex_free; in prldap_install_thread_functions()187 tfns.ltf_mutex_lock = prldap_mutex_lock; in prldap_install_thread_functions()188 tfns.ltf_mutex_unlock = prldap_mutex_unlock; in prldap_install_thread_functions()190 tfns.ltf_get_lderrno = NULL; in prldap_install_thread_functions()191 tfns.ltf_set_lderrno = NULL; in prldap_install_thread_functions()[all …]
320 struct ldap_thread_fns tfns; in setup_mt_conn() local328 (void) memset(&tfns, '\0', sizeof (struct ldap_thread_fns)); in setup_mt_conn()329 tfns.ltf_mutex_alloc = (void *(*)(void)) ns_mutex_alloc; in setup_mt_conn()330 tfns.ltf_mutex_free = (void (*)(void *)) ns_mutex_free; in setup_mt_conn()331 tfns.ltf_mutex_lock = (int (*)(void *)) mutex_lock; in setup_mt_conn()332 tfns.ltf_mutex_unlock = (int (*)(void *)) mutex_unlock; in setup_mt_conn()333 tfns.ltf_get_errno = get_errno; in setup_mt_conn()334 tfns.ltf_set_errno = set_errno; in setup_mt_conn()335 tfns.ltf_get_lderrno = get_ld_error; in setup_mt_conn()336 tfns.ltf_set_lderrno = set_ld_error; in setup_mt_conn()[all …]