Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libldap5/sources/ldap/common/
H A Dgetentry.c44 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || chain == NULLMSG ) { in ldap_first_entry()
45 return( NULLMSG ); in ldap_first_entry()
60 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || entry == NULLMSG ) { in ldap_next_entry()
61 return( NULLMSG ); in ldap_next_entry()
64 for ( entry = entry->lm_chain; entry != NULLMSG; in ldap_next_entry()
71 return( NULLMSG ); in ldap_next_entry()
H A Dmessage.c54 return( NULLMSG ); /* punt */ in ldap_first_message()
66 return( NULLMSG ); /* punt */ in ldap_next_message()
69 if ( msg == NULLMSG || msg->lm_chain == NULLMSG ) { in ldap_next_message()
70 return( NULLMSG ); in ldap_next_message()
H A Dreferral.c40 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || res == NULLMSG ) { in ldap_first_reference()
41 return( NULLMSG ); in ldap_first_reference()
56 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || ref == NULLMSG ) { in ldap_next_reference()
57 return( NULLMSG ); /* punt */ in ldap_next_reference()
60 for ( ref = ref->lm_chain; ref != NULLMSG; ref = ref->lm_chain ) { in ldap_next_reference()
66 return( NULLMSG ); in ldap_next_reference()
H A Drequest.c712 if (( lm = ld->ld_responses ) == NULLMSG ) { in nsldapi_dump_requests_and_responses()
715 for ( ; lm != NULLMSG; lm = lm->lm_next ) { in nsldapi_dump_requests_and_responses()
721 for ( ; l != NULLMSG; l = l->lm_chain ) { in nsldapi_dump_requests_and_responses()
H A Dtmplout.c461 if ( dn == NULL && entry == NULLMSG ) { in do_entry2text_search()
491 ldmp = NULLMSG; in do_entry2text_search()
H A Dcharset.c71 optionsp = ( entry == NULLMSG ) ? &ld->ld_lberoptions : in ldap_enable_translation()
/titanic_50/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;
/titanic_50/usr/src/head/
H A Dldap.h141 #define NULLMSG ((LDAPMessage *)0) macro