Searched refs:msgid (Results 51 - 75 of 108) sorted by relevance

12345

/osnet-11/usr/src/lib/libsldap/common/
H A Dns_wrapper.c44 int msgid, LDAPControl **serverctrls,
49 return (ldap_abandon_ext(ld, msgid, serverctrls, clientctrls));
54 int msgid)
58 return (ldap_abandon(ld, msgid));
303 int msgid, int all,
308 return (ldap_result(ld, msgid, all, timeout, result));
43 _ns_ldap_abandon_ext(char *service, int flags, int msgid, LDAPControl **serverctrls, LDAPControl ** clientctrls) argument
53 _ns_ldap_abandon(char *service, int flags, int msgid) argument
302 _ns_ldap_result(char *service, int flags, int msgid, int all, struct timeval *timeout, LDAPMessage **result) argument
/osnet-11/usr/src/lib/libldap4/common/
H A Dreferral.c26 re_encode_request( LDAP *ld, BerElement *origber, int msgid, LDAPURLDesc *urldesc );
318 re_encode_request( LDAP *ld, BerElement *origber, int msgid, LDAPURLDesc *urldesc ) argument
330 catgets(slapdcat, 1, 221, "re_encode_request: new msgid %1$d, new dn <%2$s>\n"),
331 msgid, ( urldesc->lud_dn == NULL ) ? "NONE" : urldesc->lud_dn, 0 );
377 if ( ber_printf( ber, "{its", msgid, tag, dn ) == -1 ) {
433 rc = ber_printf( ber, "{it{is", msgid, tag, ver, dn );
435 rc = ber_printf( ber, "{it{s", msgid, tag, dn );
500 find_request_by_msgid( LDAP *ld, int msgid )
505 if ( msgid == lr->lr_msgid ) {
H A Dresult.c61 static int ldap_abandoned( LDAP *ld, int msgid );
62 static int ldap_mark_abandoned( LDAP *ld, int msgid );
63 static int wait4msg( LDAP *ld, int msgid, int all, struct timeval *timeout,
65 static int read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc,
92 * ldap server. If msgid is -1, any message will be accepted, otherwise
93 * ldap_result will wait for a response with msgid.
94 * If all is LDAP_MSG_ONE the first message with id msgid will be accepted.
95 * If all is LDAP_MSG_RECEIVED, the received messages with the id msgid will
97 * Otherwise, ldap_result will wait for all responses with id msgid and
105 * ldap_result( s, msgid, al
108 ldap_result( LDAP *ld, int msgid, int all, struct timeval *timeout, LDAPMessage **result ) argument
228 wait4msg( LDAP *ld, int msgid, int all, struct timeval *timeout, LDAPMessage **result ) argument
356 read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc, LDAPMessage **result ) argument
[all...]
H A Dkbind.c50 * already has a valid ticket granting ticket. The msgid of the
156 int msgid; local
162 if ( (msgid = ldap_kerberos_bind1( ld, dn )) == -1 )
177 * already has a valid ticket granting ticket. The msgid of the
264 int msgid; local
270 if ( (msgid = ldap_kerberos_bind2( ld, dn )) == -1 )
H A Durl.c427 int msgid; local
430 if (( msgid = ldap_url_search( ld, url, attrsonly )) == -1 ) {
434 if ( ldap_result( ld, msgid, 1, timeout, res ) == -1 ) {
439 (void) ldap_abandon( ld, msgid );
462 int msgid; local
465 if (( msgid = ldap_url_search( ld, url, attrsonly )) == -1 ) {
469 if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, res ) == -1 ) {
H A Dcache.c52 static void uncache_entry_or_req( LDAP *ld, char *dn, int msgid );
179 ldap_uncache_request( LDAP *ld, int msgid )
185 msgid, ld->ld_cache, 0 );
187 uncache_entry_or_req( ld, NULL, msgid );
213 int msgid ) /* request to uncache (if dn == NULL) */
219 catgets(slapdcat, 1, 93, "ldap_uncache_entry_or_req dn %1$s msgid %2$d ld_cache %3$x\n"),
220 dn, msgid, ld->ld_cache );
231 ( dn == NULL && m->lm_msgid == msgid )) {
251 ( dn == NULL && m->lm_msgid == msgid )) {
409 Debug( LDAP_DEBUG_TRACE, catgets(slapdcat, 1, 101, "artc: msgid no
599 int msgid; local
[all...]
H A Dsearch.c216 * msgid = ldap_search( ld, "c=us@o=UM", LDAP_SCOPE_SUBTREE, "cn~=bob",
725 int msgid; local
727 if ((msgid = ldap_search(ld, base, scope, filter, attrs, attrsonly))
731 if (ldap_result(ld, msgid, 1, timeout, res) == -1)
735 (void) ldap_abandon(ld, msgid);
747 int msgid; local
749 if ((msgid = ldap_search(ld, base, scope, filter, attrs, attrsonly))
753 if (ldap_result(ld, msgid, 1, (struct timeval *)NULL, res) == -1)
831 int msgid; local
836 &msgid)) !
[all...]
H A Dsaslbind.c98 * the message id of the request is returned in msgid
261 * the message id of the request is returned in msgid
274 int msgid; local
280 if ((retcode = ldap_sasl_bind(ld, dn, mechanism, cred, serverctrls, clientctrls, &msgid)) != LDAP_SUCCESS)
282 if (ldap_result(ld, msgid, 1, (struct timeval *)NULL, &res ) == -1)
H A Dllib-lldap23 int ldap_abandon_ext(LDAP *ld, int msgid, LDAPControl **serverctrls, LDAPControl ** clientctrls);
24 int ldap_abandon( LDAP *ld, int msgid );
64 void ldap_uncache_request( LDAP *ld, int msgid );
181 int ldap_result( LDAP *ld, int msgid, int all,
183 int ldap_msgdelete( LDAP *ld, int msgid );
H A Dufn.c489 int i, msgid; local
501 if (( msgid = ldap_search( ld, dn, scope, filter, attrs,
512 *err = ldap_result( ld, msgid, 1, &tv, &tmpres );
515 ldap_abandon( ld, msgid );
/osnet-11/usr/src/lib/libldap5/include/ldap/
H A Dsolaris-int.h382 typedef int (LDAP_C LDAP_CALLBACK LDAP_CF_BIND_CALLBACK)(LDAP *ld, int msgid,
388 int msgid, ber_tag_t tag, const char *base, int scope,
391 int msgid, ber_tag_t tag, const char *dn, const char *attr,
394 int msgid, ber_tag_t tag, const char *dn, LDAPMod **attrs);
396 int msgid, ber_tag_t tag, const char *dn);
398 int msgid, ber_tag_t tag, const char *dn, LDAPMod **mods);
400 int msgid, ber_tag_t tag, const char *dn, const char *newrdn,
403 int msgid, int all, struct timeval *timeout, LDAPMessage **result);
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Drequest.c51 int msgid, LDAPURLDesc *ludp, BerElement **berp );
96 nsldapi_send_initial_request( LDAP *ld, int msgid, unsigned long msgtype, argument
140 return( nsldapi_send_server_request( ld, ber, msgid, NULL,
150 int msgid, /* ID of message to send */
252 lr->lr_msgid = msgid;
314 return( msgid );
692 sprintf( msg, " * msgid %d, origid %d, status %s\n",
716 sprintf( msg, " * msgid %d, type %d\n",
723 " * msgid %d, type %d\n",
740 "nsldapi_free_request 0x%x (origid %d, msgid
147 nsldapi_send_server_request( LDAP *ld, BerElement *ber, int msgid, LDAPRequest *parentreq, LDAPServer *srvlist, LDAPConn *lc, char *bindreqdn, int bind ) argument
951 int rc, tmprc, secure, msgid; local
1107 re_encode_request( LDAP *ld, BerElement *origber, int msgid, LDAPURLDesc *ludp, BerElement **berp ) argument
[all...]
H A Dsearch.c78 * msgid = ldap_search( ld, "c=us@o=UM", LDAP_SCOPE_SUBTREE, "cn~=bob",
92 int msgid; local
97 NULL, NULL, -1, &msgid ) == LDAP_SUCCESS ) {
98 return( msgid );
276 int msgid,
328 err = ber_printf( ber, "{ist{seeiib", msgid,
333 err = ber_printf( ber, "{it{seeiib", msgid,
972 int err, msgid; local
989 serverctrls, clientctrls, timelimit, sizelimit, &msgid ))
997 if ( ldap_result( ld, msgid,
265 nsldapi_build_search_req( LDAP *ld, const char *base, int scope, const char *filter, char **attrs, int attrsonly, LDAPControl **serverctrls, LDAPControl **clientctrls, int timelimit, int sizelimit, int msgid, BerElement **berp ) argument
[all...]
H A Dunbind.c193 int err, msgid, rc; local
205 msgid = ++ld->ld_msgid;
208 if ( ber_printf( ber, "{itn", msgid, LDAP_REQ_UNBIND ) == -1 ) {
H A Dufn.c451 int i, msgid; local
463 if (( msgid = ldap_search( ld, dn, scope, filter, attrs,
474 *err = ldap_result( ld, msgid, 1, &tv, &tmpres );
477 ldap_abandon( ld, msgid );
/osnet-11/usr/src/lib/libparted/common/lib/
H A Dquotearg.c37 #define _(msgid) gettext (msgid)
38 #define N_(msgid) msgid
182 gettext_quote (char const *msgid, enum quoting_style s) argument
184 char const *translation = _(msgid);
185 if (translation == msgid && s == clocale_quoting_style)
H A Dargmatch.c33 #define _(msgid) gettext (msgid)
H A Dversion-etc.c33 #define _(msgid) gettext (msgid)
/osnet-11/usr/src/lib/libnisdb/
H A Dldap_op.c2062 int msgid; local
2169 msgid = ldap_modify((*lc)->ld, dn, mods);
2170 if (msgid != -1) {
2172 stat = ldap_result((*lc)->ld, msgid, 0, &tv, &msg);
2200 msgid = ldap_modify((*lc)->ld, dn, mods);
2201 if (msgid == -1) {
2206 stat = ldap_result((*lc)->ld, msgid, 0, &tv, &msg);
2245 int msgid; local
2259 msgid = ldap_delete(lc->ld, dn);
2260 if (msgid
2540 int msgid; local
2640 int msgid; local
[all...]
/osnet-11/usr/src/lib/libadutils/common/
H A Dadutils_impl.h133 int msgid; /* LDAP message ID */ member in struct:adutils_q
H A Dadutils.c1000 * Find the adutils_query_state_t to which a given LDAP result msgid on a
1007 msgid2query(adutils_host_t *adh, int msgid, argument
1019 if ((p->queries[i]).msgid == msgid) {
1328 int rc, ret, msgid, qid; local
1357 msgid = ldap_msgid(res);
1358 if (msgid2query(adh, msgid, &query_state, &qid)) {
1391 msgid, num);
1398 msgid = ldap_msgid(res);
1399 if (msgid2query(adh, msgid,
[all...]
/osnet-11/usr/src/lib/libldap4/include/
H A Dldap-int.h154 int send_server_request( LDAP *ld, BerElement *ber, int msgid,
159 LDAPRequest *find_request_by_msgid( LDAP *ld, int msgid );
231 BerElement * ldap_build_abandon_req( LDAP *ld, int msgid, LDAPControl ** serverctrls);
/osnet-11/usr/src/cmd/ldap/common/
H A Dcommon.c73 static int wait4result( LDAP *ld, int msgid, struct berval **servercredp,
1419 int rc, msgid; local
1426 clientctrls, &msgid )) != LDAP_SUCCESS ) {
1429 rc = wait4result( ld, msgid, servercredp, msg );
1461 int rc, msgid; local
1463 if (( rc = ldap_add_ext( ld, dn, attrs, serverctrls, clientctrls, &msgid ))
1469 * rc = wait4result( ld, msgid, NULL, msg );
1470 * 'msgid' it was changed to 'LDAP_RES_ANY' in order to receive
1488 int rc, msgid; local
1491 &msgid )) !
1509 int rc, msgid; local
1530 int rc, msgid; local
1552 int rc, msgid; local
1571 wait4result( LDAP *ld, int msgid, struct berval **servercredp, char *msg ) argument
[all...]
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_mn_comm.c345 mdmn_create_msgid(md_mn_msgid_t *msgid) argument
349 if (msgid == NULL) {
353 if (metaioctl(MD_IOCGUNIQMSGID, msgid, &mde, NULL) != 0) {
354 msgid->mid_nid = ~0u;
355 msgid->mid_time = 0LL;
365 msgid->mid_smid = 0;
366 msgid->mid_oclass = 0;
369 if (msgid->mid_nid == ~0u) {
601 * a msgid is already attached to it.
660 md_mn_msgid_t *msgid,
652 mdmn_send_message_with_msgid( set_t setno, md_mn_msgtype_t type, uint_t flags, md_mn_nodeid_t recipient, char *data, int size, md_mn_result_t **result, md_mn_msgid_t *msgid, md_error_t *ep) argument
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dsyslog.c190 uint32_t msgid; local
276 STRLOG_MAKE_MSGID(fmt, msgid);
277 (void) sprintf(o, "[ID %u FACILITY_AND_PRIORITY] ", msgid);

Completed in 65 milliseconds

12345