Lines Matching refs:mConnection
77 if (mConnection != NULL) in disconnect()
79 (*s_p_unbind_s)(mConnection) ; in disconnect()
80 mConnection = NULL; in disconnect()
139 (*s_p_set_option)(mConnection, in connectSimple()
146 (*s_p_set_option)( mConnection, in connectSimple()
152 LdapErrCode retCode = (*s_p_simple_bind_s)(mConnection, in connectSimple()
156 checkLdapReturnCode("SimpleBind", retCode, mConnection) ; in connectSimple()
173 mConnection = (*s_p_init)( mLdapDefinition.mServer.getStr(), in initConnection()
175 if (mConnection == NULL) in initConnection()
199 LdapErrCode retCode = (*s_p_search_s)(mConnection, in getUserProfile()
207 checkLdapReturnCode("getUserProfile", retCode,mConnection) ; in getUserProfile()
210 char * attr = (*s_p_first_attribute)(mConnection, result.msg, &ptr); in getUserProfile()
212 char ** values = (*s_p_get_values)(mConnection, result.msg, attr); in getUserProfile()
220 attr = (*s_p_next_attribute)(mConnection, result.msg, ptr); in getUserProfile()
249 LdapErrCode retCode = (*s_p_search_s)(mConnection, in findUserDn()
254 checkLdapReturnCode("FindUserDn", retCode,mConnection) ; in findUserDn()
256 LDAPMessage *entry = (*s_p_first_entry)(mConnection, result.msg) ; in findUserDn()
260 sal_Char *charsDn = (*s_p_get_dn)(mConnection, entry) ; in findUserDn()