Searched refs:lm (Results 1 - 25 of 41) sorted by relevance

12

/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dmessage.c28 ldap_msgid( LDAPMessage *lm )
30 if ( !NSLDAPI_VALID_LDAPMESSAGE_POINTER( lm )) {
34 return( lm->lm_msgid );
39 ldap_msgtype( LDAPMessage *lm )
41 if ( !NSLDAPI_VALID_LDAPMESSAGE_POINTER( lm )) {
45 return( lm->lm_msgtype );
H A Dresult.c165 LDAPMessage *lm, *lastlm, *nextlm; local
174 for ( lm = ld->ld_responses; lm != NULL; lm = nextlm ) {
175 nextlm = lm->lm_next;
177 if ( do_abandon_check && ldap_abandoned( ld, lm->lm_msgid ) ) {
178 ldap_mark_abandoned( ld, lm->lm_msgid );
181 ld->ld_responses = lm->lm_next;
186 ldap_msgfree( lm );
191 if ( msgid == LDAP_RES_ANY || lm
1170 LDAPMessage *lm, *prev; local
[all...]
H A Derror.c489 LDAPMessage *lm; local
501 for ( lm = res; lm != NULL; lm = lm->lm_chain ) {
502 if ( lm->lm_msgtype != LDAP_RES_SEARCH_ENTRY &&
503 lm->lm_msgtype != LDAP_RES_SEARCH_REFERENCE ) {
508 if ( lm == NULL ) {
514 err = nsldapi_parse_result( ld, lm->lm_msgtype, lm
[all...]
H A Dunbind.c78 LDAPMessage *lm, *next; local
114 for ( lm = ld->ld_responses; lm != NULL; lm = next ) {
115 next = lm->lm_next;
116 ldap_msgfree( lm );
H A Dldap-int.h618 #define NSLDAPI_VALID_LDAPMESSAGE_POINTER( lm ) \
619 ( (lm) != NULL )
621 #define NSLDAPI_VALID_LDAPMESSAGE_ENTRY_POINTER( lm ) \
622 ( (lm) != NULL && (lm)->lm_msgtype == LDAP_RES_SEARCH_ENTRY )
624 #define NSLDAPI_VALID_LDAPMESSAGE_REFERENCE_POINTER( lm ) \
625 ( (lm) != NULL && (lm)->lm_msgtype == LDAP_RES_SEARCH_REFERENCE )
627 #define NSLDAPI_VALID_LDAPMESSAGE_BINDRESULT_POINTER( lm ) \
628 ( (lm) !
[all...]
H A Drequest.c683 LDAPMessage *lm, *l; local
712 if (( lm = ld->ld_responses ) == NULLMSG ) {
715 for ( ; lm != NULLMSG; lm = lm->lm_next ) {
717 lm->lm_msgid, lm->lm_msgtype );
719 if (( l = lm->lm_chain ) != NULL ) {
/osnet-11/usr/src/lib/liblm/common/
H A Dlm_shutdown.c32 #include <nfs/lm.h>
/osnet-11/usr/src/lib/libldap4/common/
H A Dresult.c111 LDAPMessage *lm, *lastlm, *nextlm; local
131 for ( lm = ld->ld_responses; lm != NULLMSG; lm = nextlm ) {
132 nextlm = lm->lm_next;
135 if ( ldap_abandoned( ld, lm->lm_msgid ) ) {
136 ldap_mark_abandoned( ld, lm->lm_msgid );
139 ld->ld_responses = lm->lm_next;
144 ldap_msgfree( lm );
149 if ( msgid == LDAP_RES_ANY || lm
1065 LDAPMessage *lm, *prev; local
1213 LDAPMessage *lm; local
1394 LDAPMessage *lm; local
1524 LDAPMessage *lm; local
[all...]
H A Dunbind.c57 LDAPMessage *lm, *next; local
100 for ( lm = ld->ld_responses; lm != NULL; lm = next ) {
101 next = lm->lm_next;
102 ldap_msgfree( lm );
H A Derror.c306 LDAPMessage *lm; local
316 for ( lm = r; lm->lm_chain != NULL; lm = lm->lm_chain )
328 ber = *(lm->lm_ber);
H A Drequest.c548 LDAPMessage *lm, *l; local
569 if (( lm = ld->ld_responses ) == NULLMSG ) {
572 for ( ; lm != NULLMSG; lm = lm->lm_next ) {
574 lm->lm_msgid, lm->lm_msgtype );
575 if (( l = lm->lm_chain ) != NULL ) {
/osnet-11/usr/src/lib/libstmf/
H A DMakefile.com40 LDLIBS += -lc -lnvpair -lscf -lm
/osnet-11/usr/src/lib/libvscan/
H A DMakefile.com39 LDLIBS += -lc -lscf -lnsl -lm
/osnet-11/usr/src/lib/libshadowfs/
H A DMakefile.com49 LDLIBS += -lc -lm -lscf -lzfs
/osnet-11/usr/src/lib/libplot/t300/
H A DMakefile.com46 LDLIBS += -lc -lm
/osnet-11/usr/src/lib/libplot/t300s/
H A DMakefile.com46 LDLIBS += -lc -lm
/osnet-11/usr/src/lib/libplot/t4014/
H A DMakefile.com44 LDLIBS += -lc -lm
/osnet-11/usr/src/lib/libplot/t450/
H A DMakefile.com46 LDLIBS += -lc -lm
/osnet-11/usr/src/lib/libipmi/
H A DMakefile.com56 LDLIBS += -lc -lm -lnvpair -lsocket -lnsl
/osnet-11/usr/src/cmd/ldap/common/
H A Dldaptest.c22 static void handle_result( LDAP *ld, LDAPMessage *lm );
23 static void print_ldap_result( LDAP *ld, LDAPMessage *lm, char *s );
1015 handle_result( LDAP *ld, LDAPMessage *lm )
1017 switch ( lm->lm_msgtype ) {
1020 print_ldap_result( ld, lm, "compare" );
1025 print_ldap_result( ld, lm, "search" );
1030 print_search_entry( ld, lm );
1035 print_search_entry( ld, lm );
1040 print_ldap_result( ld, lm, "add" );
1045 print_ldap_result( ld, lm, "delet
1070 print_ldap_result( LDAP *ld, LDAPMessage *lm, char *s ) argument
[all...]
/osnet-11/usr/src/lib/libprtdiag/sparc/sun4v/
H A DMakefile41 LDLIBS += -lpicl -lm
/osnet-11/usr/src/lib/libsmbfs/common/
H A Dsmbfs_door.c149 uint8_t *lm, *nt; local
165 (nvlist_lookup_uint8_array(nvl, "lm", &lm, &lm_sz) != 0) ||
173 (void) bcopy(lm, pwdinfo->pw_lmhash, lm_sz);
208 (nvlist_add_uint8_array(nvl, "lm", pwdinfop->pw_lmhash,
/osnet-11/usr/src/cmd/hal/hald/
H A DMakefile43 LDLIBS += -lc -lm -ldbus-1 -ldbus-glib-1 -lglib-2.0 -lgobject-2.0 \
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/File/Glob/
H A Dbsd_glob.c433 Char *lm, *ls; local
438 for (lm = patbuf, pm = pattern; pm != ptr; *lm++ = *pm++)
440 *lm = BG_EOS;
441 ls = lm;
500 for (lm = ls; (pl < pm); *lm++ = *pl++)
507 for (pl = pe + 1; (*lm++ = *pl++) != BG_EOS; )
/osnet-11/usr/src/lib/libzfs/
H A DMakefile.com83 LDLIBS += -lc -lm -ldevid -lgen -lnvpair -luutil -lavl -lefi -lshare \

Completed in 73 milliseconds

12