Searched defs:msgid (Results 1 - 25 of 63) sorted by relevance

123

/osnet-11/usr/src/lib/libldap4/common/
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 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 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 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 Dabandon.c44 static int do_abandon( LDAP *ld, int origid, int msgid, LDAPControl **serverctrls );
49 BerElement * ldap_build_abandon_req( LDAP *ld, int msgid, LDAPControl ** serverctrls) argument
64 LDAP_REQ_ABANDON, msgid );
68 LDAP_REQ_ABANDON, msgid );
106 * msgid The message id of the operation to abandon
111 * ldap_abandon( ld, msgid );
114 ldap_abandon( LDAP *ld, int msgid )
122 Debug( LDAP_DEBUG_TRACE, catgets(slapdcat, 1, 85, "ldap_abandon %d\n"), msgid, 0, 0 );
124 rv = do_abandon( ld, msgid, msgid , NUL
133 ldap_abandon_ext(LDAP *ld, int msgid, LDAPControl **serverctrls, LDAPControl **clientctrls) argument
[all...]
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 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 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 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)
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 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 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...]
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dabandon.c41 static int do_abandon( LDAP *ld, int origid, int msgid,
48 * msgid The message id of the operation to abandon
53 * ldap_abandon( ld, msgid );
57 ldap_abandon( LDAP *ld, int msgid )
59 LDAPDebug( LDAP_DEBUG_TRACE, "ldap_abandon %d\n", msgid, 0, 0 );
61 if ( ldap_abandon_ext( ld, msgid, NULL, NULL ) == LDAP_SUCCESS ) {
75 ldap_abandon_ext( LDAP *ld, int msgid, LDAPControl **serverctrls, argument
80 LDAPDebug( LDAP_DEBUG_TRACE, "ldap_abandon_ext %d\n", msgid, 0, 0 );
88 rc = do_abandon( ld, msgid, msgid, serverctrl
109 do_abandon( LDAP *ld, int origid, int msgid, LDAPControl **serverctrls, LDAPControl **clientctrls ) argument
[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 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 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 Dsbind.c77 int rc, msgid; local
92 msgid = ++ld->ld_msgid;
107 rc = (ld->ld_cache_bind)( ld, msgid, LDAP_REQ_BIND, dn, &bv,
123 if ( ber_printf( ber, "{it{ists}", msgid, LDAP_REQ_BIND,
136 return( nsldapi_send_initial_request( ld, msgid, LDAP_REQ_BIND,
155 int msgid; local
165 if ( (msgid = ldap_simple_bind( ld, dn, passwd )) == -1 )
168 if ( ldap_result( ld, msgid, 1, (struct timeval *) 0, &result ) == -1 )
184 int msgid, rc; local
237 if ( (msgid
[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 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 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 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 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...]
/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/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

Completed in 59 milliseconds

123