Lines Matching refs:eip
278 PRLDAP_ErrorInfo *eip;
280 if (( map = (PRLDAP_TPDMap *)errorarg ) != NULL && ( eip =
284 *matchedp = eip->plei_matched;
287 *errmsgp = eip->plei_errmsg;
289 return( eip->plei_lderrno );
306 PRLDAP_ErrorInfo *eip;
309 if (( eip = (PRLDAP_ErrorInfo *)prldap_get_thread_private(
322 eip = (PRLDAP_ErrorInfo *)PR_Calloc( 1,
324 if ( eip == NULL ) {
327 (void)prldap_set_thread_private( map->prtm_index, eip );
330 eip->plei_lderrno = err;
331 if ( eip->plei_matched != NULL ) {
332 ldap_memfree( eip->plei_matched );
334 eip->plei_matched = matched;
335 if ( eip->plei_errmsg != NULL ) {
336 ldap_memfree( eip->plei_errmsg );
338 eip->plei_errmsg = errmsg;
473 PRLDAP_ErrorInfo *eip;
482 if (( eip = (PRLDAP_ErrorInfo *)prldap_get_thread_private(
485 if ( eip->plei_matched != NULL ) {
486 ldap_memfree( eip->plei_matched );
488 if ( eip->plei_errmsg != NULL ) {
489 ldap_memfree( eip->plei_errmsg );
492 PR_Free( eip );