Searched refs:msgid (Results 26 - 50 of 108) sorted by relevance

12345

/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Drename.c57 * rc = ldap_rename( ld, dn, newrdn, newparent, deleteoldrdn, serverctrls, clientctrls, &msgid );
187 int msgid; local
189 if ( ldap_rename( ld, dn, newrdn, NULL, deleteoldrdn, NULL, NULL, &msgid ) == LDAP_SUCCESS ) {
190 return( msgid );
215 int msgid; local
218 if ( ldap_rename( ld, dn, newrdn, newparent, deleteoldrdn, serverctrls, clientctrls, &msgid ) != LDAP_SUCCESS ) {
222 if ( msgid == -1 )
225 if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 )
235 int msgid; local
238 if ( (msgid
[all...]
H A Dsaslbind.c38 * int err, msgid;
42 * "mechanismname", &creds, ctrls, NULL, &msgid );
57 int rc, simple, msgid, ldapversion; local
93 msgid = ++ld->ld_msgid;
101 if ( (rc = (ld->ld_cache_bind)( ld, msgid, LDAP_REQ_BIND, dn,
125 rc = ber_printf( ber, "{it{isto}", msgid, LDAP_REQ_BIND,
131 rc = ber_printf( ber, "{it{ist{s}}", msgid,
135 rc = ber_printf( ber, "{it{ist{so}}", msgid,
155 rc = nsldapi_send_initial_request( ld, msgid, LDAP_REQ_BIND,
185 int err, msgid; local
[all...]
H A Dcompare.c43 * attr and value) are supplied. The msgid of the response is returned.
52 int msgid; local
60 if ( ldap_compare_ext( ld, dn, attr, &bv, NULL, NULL, &msgid )
62 return( msgid );
167 int err, msgid; local
171 clientctrls, &msgid )) != LDAP_SUCCESS ) {
175 if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, &res )
H A Ddelete.c43 * msgid = ldap_delete( ld, dn );
49 int msgid; local
53 if ( ldap_delete_ext( ld, dn, NULL, NULL, &msgid ) == LDAP_SUCCESS ) {
54 return( msgid );
143 int err, msgid; local
147 &msgid )) != LDAP_SUCCESS ) {
151 if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, &res ) == -1 ) {
H A Dextendop.c30 * int err, msgid;
32 * err = ldap_extended_operation( ld, exoid, &exdata, NULL, NULL, &msgid );
47 int rc, msgid; local
82 msgid = ++ld->ld_msgid;
88 if ( (rc = (ld->ld_cache_extendedop)( ld, msgid,
104 if ( ber_printf( ber, "{it{tsto}", msgid, LDAP_REQ_EXTENDED,
120 rc = nsldapi_send_initial_request( ld, msgid, LDAP_REQ_EXTENDED, NULL,
151 int err, msgid; local
155 serverctrls, clientctrls, &msgid )) != LDAP_SUCCESS ) {
159 if ( ldap_result( ld, msgid,
[all...]
H A Dadd.c57 * msgid = ldap_add( ld, dn, attrs );
63 int msgid; local
67 if ( ldap_add_ext( ld, dn, attrs, NULL, NULL, &msgid )
69 return( msgid );
199 int err, msgid; local
203 &msgid )) != LDAP_SUCCESS ) {
207 if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, &res ) == -1 ) {
H A Dmodify.c55 * msgid = ldap_modify( ld, dn, mods );
61 int msgid; local
65 if ( ldap_modify_ext( ld, dn, mods, NULL, NULL, &msgid )
67 return( msgid );
200 int msgid, err; local
204 &msgid )) != LDAP_SUCCESS ) {
208 if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, &res ) == -1 ) {
H A Dresult.c46 static int check_response_queue( LDAP *ld, int msgid, int all,
48 static int ldap_abandoned( LDAP *ld, int msgid );
49 static int ldap_mark_abandoned( LDAP *ld, int msgid );
50 static int wait4msg( LDAP *ld, int msgid, int all, int unlock_permitted,
52 static int read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc,
64 static int unlink_msg( LDAP *ld, int msgid, int all );
69 * ldap server. If msgid is -1, any message will be accepted, otherwise
70 * ldap_result will wait for a response with msgid. If all is 0 the
71 * first message with id msgid will be accepted, otherwise, ldap_result
72 * will wait for all responses with id msgid an
83 ldap_result( LDAP *ld, int msgid, int all, struct timeval *timeout, LDAPMessage **result ) argument
110 nsldapi_result_nolock( LDAP *ld, int msgid, int all, int unlock_permitted, struct timeval *timeout, LDAPMessage **result ) argument
162 check_response_queue( LDAP *ld, int msgid, int all, int do_abandon_check, LDAPMessage **result ) argument
271 wait4msg( LDAP *ld, int msgid, int all, int unlock_permitted, struct timeval *timeout, LDAPMessage **result ) argument
493 read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc, LDAPMessage **result ) argument
1297 nsldapi_post_result( LDAP *ld, int msgid, LDAPMessage *result ) argument
[all...]
H A Durl.c407 int err, msgid; local
423 msgid = ++ld->ld_msgid;
428 -1, -1, msgid, &ber ) != LDAP_SUCCESS ) {
471 err = nsldapi_send_server_request( ld, ber, msgid, NULL, srv,
485 int msgid; local
501 if (( msgid = ldap_url_search( ld, url, attrsonly )) == -1 ) {
505 if ( ldap_result( ld, msgid, 1, timeout, res ) == -1 ) {
510 (void) ldap_abandon( ld, msgid );
523 int msgid; local
525 if (( msgid
[all...]
H A Dldap-int.h706 int ldap_msgdelete( LDAP *ld, int msgid );
707 int nsldapi_result_nolock( LDAP *ld, int msgid, int all, int unlock_permitted,
709 int nsldapi_wait_result( LDAP *ld, int msgid, int all, struct timeval *timeout,
711 int nsldapi_post_result( LDAP *ld, int msgid, LDAPMessage *result );
716 int nsldapi_send_initial_request( LDAP *ld, int msgid, unsigned long msgtype,
722 int nsldapi_send_server_request( LDAP *ld, BerElement *ber, int msgid,
727 LDAPRequest *nsldapi_find_request_by_msgid( LDAP *ld, int msgid );
747 int timelimit, int sizelimit, int msgid, BerElement **berp );
869 int ldap_memcache_result( LDAP *ld, int msgid, unsigned long key );
870 int ldap_memcache_new( LDAP *ld, int msgid, unsigne
[all...]
H A Dmemcache.c184 static int memcache_add_to_ld(LDAP *ld, int msgid, LDAPMessage *pMsg);
186 static int memcache_dup_message(LDAPMessage *res, int msgid, int fromcache,
207 static int memcache_add(LDAP *ld, unsigned long key, int msgid,
209 static int memcache_append(LDAP *ld, int msgid, LDAPMessage *pRes);
210 static int memcache_append_last(LDAP *ld, int msgid, LDAPMessage *pRes);
211 static int memcache_remove(LDAP *ld, int msgid);
688 ldap_memcache_result(LDAP *ld, int msgid, unsigned long key) argument
694 "ldap_memcache_result( ld: 0x%x, msgid: %d, key: 0x%8.8lx)\n",
695 ld, msgid, key );
697 if ( !NSLDAPI_VALID_LDAP_POINTER( ld ) || (msgid <
736 ldap_memcache_new(LDAP *ld, int msgid, unsigned long key, const char *basedn) argument
763 ldap_memcache_append(LDAP *ld, int msgid, int bLast, LDAPMessage *result) argument
802 ldap_memcache_abandon(LDAP *ld, int msgid) argument
[all...]
/osnet-11/usr/src/lib/libldap4/common/
H A Dmodrdn.c45 * msgid = ldap_modrdn( ld, dn, newrdn );
102 int msgid; local
105 if ( (msgid = ldap_modrdn( ld, dn, newrdn, deleteoldrdn )) == -1 )
108 if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 )
H A Dadd.c136 * msgid = ldap_add( ld, dn, attrs );
166 int msgid; local
169 if ( (msgid = ldap_add( ld, dn, attrs )) == -1 )
172 if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 )
201 * retcode = ldap_add_ext( ld, dn, attrs, srvctrls, cltctrls, &msgid );
250 int msgid; local
254 if ((retcode = ldap_add_ext(ld, dn, attrs, serverctrls, clientctrls, &msgid)) != LDAP_SUCCESS)
256 if (ldap_result(ld, msgid, 1, (struct timeval *)NULL, &res ) == -1)
H A Ddelete.c89 * msgid = ldap_delete( ld, dn );
127 int msgid; local
130 if ( (msgid = ldap_delete( ld, dn )) == -1 )
133 if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 )
183 int msgid; local
187 if ((retcode = ldap_delete_ext(ld, dn, serverctrls, clientctrls, &msgid)) != LDAP_SUCCESS)
189 if (ldap_result(ld, msgid, 1, (struct timeval *)NULL, &res ) == -1)
H A Dmodify.c133 * msgid = ldap_modify( ld, dn, mods );
165 int msgid; local
168 if ( (msgid = ldap_modify( ld, dn, mods )) == -1 )
171 if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 )
225 int msgid; local
229 if ((retcode = ldap_modify_ext(ld, dn, mods, serverctrls, clientctrls, &msgid)) != LDAP_SUCCESS)
231 if (ldap_result(ld, msgid, 1, (struct timeval *)NULL, &res ) == -1)
H A Dsbind.c159 int msgid; local
164 if ( (msgid = ldap_simple_bind( ld, dn, passwd )) == -1 )
167 if ( ldap_result( ld, msgid, 1, (struct timeval *) 0, &result ) == -1 )
H A Dextop.c146 int msgid; local
150 if ((retcode = ldap_extended_operation(ld, exoid, exdata, serverctrls, clientctrls, &msgid)) != LDAP_SUCCESS)
152 if (ldap_result(ld, msgid, 1, (struct timeval *)NULL, &res ) == -1)
H A Dcompare.c91 * attr and value) are supplied. The msgid of the response is returned.
154 int msgid; local
157 if ( (msgid = ldap_compare( ld, dn, attr, value )) == -1 )
160 if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 )
238 int msgid, retcode = LDAP_SUCCESS; local
241 if ( (retcode = ldap_compare_ext( ld, dn, attr, bvalue, serverctrls, clientctrls, &msgid )) != LDAP_SUCCESS )
244 if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 )
H A Dcldap.c65 static int cldap_result( LDAP *ld, int msgid, LDAPMessage **res,
67 static int cldap_parsemsg( LDAP *ld, int msgid, BerElement *ber,
247 int ret, msgid; local
274 if ( (msgid = ldap_search( ld, base, scope, filter, attrs,
300 ret = cldap_result( ld, msgid, res, &cri, base );
342 cldap_result( LDAP *ld, int msgid, LDAPMessage **res, argument
405 * { msgid, logdn, { searchresponse...}}
415 } else if ( id != msgid ) {
418 catgets(slapdcat, 1, 122, "cldap_result: looking for msgid %1$d; got %2$d\n"),
419 msgid, i
476 cldap_parsemsg( LDAP *ld, int msgid, BerElement *ber, LDAPMessage **res, char *base ) argument
[all...]
H A Drename.c156 int msgid; local
160 if ((retcode = ldap_rename(ld, dn, newrdn, newparent, deleteoldrdn, serverctrls, clientctrls, &msgid)) != LDAP_SUCCESS)
162 if (ldap_result(ld, msgid, 1, (struct timeval *)NULL, &res ) == -1)
/osnet-11/usr/src/lib/libparted/common/lib/
H A Dgettext.h107 /* The separator between msgctxt and msgid in a .mo file. */
146 const char *msg_ctxt_id, const char *msgid,
151 return msgid;
165 const char *msg_ctxt_id, const char *msgid,
172 return (n == 1 ? msgid : msgid_plural);
205 const char *msgctxt, const char *msgid,
209 size_t msgid_len = strlen (msgid) + 1;
224 memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len);
233 return msgid;
250 const char *msgctxt, const char *msgid,
145 pgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, int category) argument
164 npgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
204 dcpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, int category) argument
249 dcnpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dgettext.h105 /* The separator between msgctxt and msgid in a .mo file. */
144 const char *msg_ctxt_id, const char *msgid,
149 return msgid;
163 const char *msg_ctxt_id, const char *msgid,
170 return (n == 1 ? msgid : msgid_plural);
203 const char *msgctxt, const char *msgid,
207 size_t msgid_len = strlen (msgid) + 1;
222 memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len);
231 return msgid;
248 const char *msgctxt, const char *msgid,
143 pgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, int category) argument
162 npgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
202 dcpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, int category) argument
247 dcnpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
[all...]
/osnet-11/usr/src/tools/onbld/Checks/
H A Dpkglint.py71 msgid="%s%s.1" % (self.name, pkglint_id))
83 msgid="%s%s.2" % (self.name, pkglint_id))
111 msgid="%s%s" % (self.name, pkglint_id))
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_status.c300 zpool_get_status(zpool_handle_t *zhp, char **msgid) argument
305 *msgid = NULL;
307 *msgid = zfs_msgid_table[ret];
313 zpool_import_status(nvlist_t *config, char **msgid) argument
318 *msgid = NULL;
320 *msgid = zfs_msgid_table[ret];
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/et/
H A Dcom_err.c81 char *msgid; member in struct:msg_map
131 char *msgid = msgmap[msg_idx].msgid; local
133 char *msgstr = dgettext(TEXT_DOMAIN, msgid);
135 if (strcmp(msgstr, msgid) == 0)

Completed in 44 milliseconds

12345