Home
last modified time | relevance | path

Searched refs:NULLMSG (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dgetentry.c42 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || chain == NULLMSG ) { in ldap_first_entry()
43 return( NULLMSG ); in ldap_first_entry()
58 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || entry == NULLMSG ) { in ldap_next_entry()
59 return( NULLMSG ); in ldap_next_entry()
62 for ( entry = entry->lm_chain; entry != NULLMSG; in ldap_next_entry()
69 return( NULLMSG ); in ldap_next_entry()
H A Dmessage.c52 return( NULLMSG ); /* punt */ in ldap_first_message()
64 return( NULLMSG ); /* punt */ in ldap_next_message()
67 if ( msg == NULLMSG || msg->lm_chain == NULLMSG ) { in ldap_next_message()
68 return( NULLMSG ); in ldap_next_message()
H A Dreferral.c38 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || res == NULLMSG ) { in ldap_first_reference()
39 return( NULLMSG ); in ldap_first_reference()
54 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || ref == NULLMSG ) { in ldap_next_reference()
55 return( NULLMSG ); /* punt */ in ldap_next_reference()
58 for ( ref = ref->lm_chain; ref != NULLMSG; ref = ref->lm_chain ) { in ldap_next_reference()
64 return( NULLMSG ); in ldap_next_reference()
H A Drequest.c710 if (( lm = ld->ld_responses ) == NULLMSG ) { in nsldapi_dump_requests_and_responses()
713 for ( ; lm != NULLMSG; lm = lm->lm_next ) { in nsldapi_dump_requests_and_responses()
719 for ( ; l != NULLMSG; l = l->lm_chain ) { in nsldapi_dump_requests_and_responses()
H A Dtmplout.c459 if ( dn == NULL && entry == NULLMSG ) { in do_entry2text_search()
487 ldmp = NULLMSG; in do_entry2text_search()
H A Dcharset.c69 optionsp = ( entry == NULLMSG ) ? &ld->ld_lberoptions : in ldap_enable_translation()
/illumos-gate/usr/src/cmd/ldap/common/
H A Dldaptest.c661 res = NULLMSG; in main()
710 res = NULLMSG; in main()
779 res = NULLMSG; in main()
1113 for ( e = ldap_first_message( ld, res ); e != NULLMSG; in print_search_entry()
1170 || res->lm_chain != NULLMSG ) in print_search_entry()
H A Dldapsearch.c914 for ( e = ldap_first_entry( ld, res ); e != NULLMSG;
/illumos-gate/usr/src/head/
H A Dldap.h141 #define NULLMSG ((LDAPMessage *)0) macro