HomeSort by: relevance | last modified time | path
    Searched defs:msgid (Results 1 - 25 of 93) sorted by relevancy

1 2 3 4

  /src/external/bsd/openldap/dist/libraries/libldap/
sbind.c 70 int msgid; local
87 NULL, NULL, &msgid );
89 return rc == LDAP_SUCCESS ? msgid : -1;
whoami.c 90 int msgid; local
93 rc = ldap_whoami( ld, sctrls, cctrls, &msgid );
96 if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 || !res ) {
dds.c 144 int msgid; local
147 rc = ldap_refresh( ld, dn, ttl, sctrls, cctrls, &msgid );
150 rc = ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *)NULL, &res );
delete.c 135 int msgid; local
139 rc = ldap_delete_ext( ld, dn, sctrls, cctrls, &msgid );
144 if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 || !res )
156 * msgid = ldap_delete( ld, dn );
161 int msgid; local
170 return ldap_delete_ext( ld, dn, NULL, NULL, &msgid ) == LDAP_SUCCESS
171 ? msgid : -1 ;
passwd.c 156 int msgid; local
159 rc = ldap_passwd( ld, user, oldpw, newpw, sctrls, cctrls, &msgid );
164 if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 || !res ) {
add.c 76 * msgid = ldap_add( ld, dn, attrs );
82 int msgid; local
84 rc = ldap_add_ext( ld, dn, attrs, NULL, NULL, &msgid );
89 return msgid;
203 * rc = ldap_add_ext( ld, dn, attrs, NULL, NULL, &msgid );
249 int msgid, rc; local
252 rc = ldap_add_ext( ld, dn, attrs, sctrls, cctrls, &msgid );
257 if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 || !res )
compare.c 92 * attr and value) are supplied. The msgid of the response is returned.
98 * sctrl, cctrl, &msgid )
139 * attr and value) are supplied. The msgid of the response is returned.
142 * msgid = ldap_compare( ld, "c=us@cn=bob", "userPassword", "secret" )
151 int msgid; local
159 return ldap_compare_ext( ld, dn, attr, &bvalue, NULL, NULL, &msgid ) == LDAP_SUCCESS
160 ? msgid : -1;
173 int msgid; local
176 rc = ldap_compare_ext( ld, dn, attr, bvalue, sctrl, cctrl, &msgid );
181 if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 || !res
    [all...]
extended.c 148 int msgid; local
158 sctrls, cctrls, &msgid );
164 if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 || !res ) {
modify.c 149 * rc= ldap_modify_ext( ld, dn, mods, sctrls, cctrls, &msgid );
197 * msgid = ldap_modify( ld, dn, mods );
202 int rc, msgid; local
206 rc = ldap_modify_ext( ld, dn, mods, NULL, NULL, &msgid );
211 return msgid;
219 int msgid; local
222 rc = ldap_modify_ext( ld, dn, mods, sctrl, cctrl, &msgid );
227 if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 || !res )
modrdn.c 175 * ldap_rename2 uses a U-Mich Style API. It returns the msgid.
186 int msgid; local
192 deleteoldrdn, NULL, NULL, &msgid );
194 return rc == LDAP_SUCCESS ? msgid : -1;
207 * msgid = ldap_modrdn( ld, dn, newrdn );
236 int msgid; local
240 deleteoldrdn, sctrls, cctrls, &msgid );
246 rc = ldap_result( ld, msgid, LDAP_MSG_ALL, NULL, &res );
abandon.c 57 * msgid The message id of the operation to abandon
65 * ldap_abandon_ext( ld, msgid, scntrls, ccntrls );
70 int msgid,
76 Debug1( LDAP_DEBUG_TRACE, "ldap_abandon_ext %d\n", msgid );
83 rc = do_abandon( ld, msgid, NULL, sctrls, 1 );
96 * msgid The message id of the operation to abandon
101 * ldap_abandon( ld, msgid );
104 ldap_abandon( LDAP *ld, int msgid )
106 Debug1( LDAP_DEBUG_TRACE, "ldap_abandon %d\n", msgid );
107 return ldap_abandon_ext( ld, msgid, NULL, NULL ) == LDAP_SUCCES
135 ber_int_t msgid = origid; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-ldap/
compare.c 47 ber_int_t msgid; local
68 ctrls, NULL, &msgid );
69 rc = ldap_back_op_result( lc, op, rs, msgid,
delete.c 47 ber_int_t msgid; local
65 ctrls, NULL, &msgid );
66 rc = ldap_back_op_result( lc, op, rs, msgid,
modrdn.c 47 ber_int_t msgid; local
98 op->orr_deleteoldrdn, ctrls, NULL, &msgid );
99 rc = ldap_back_op_result( lc, op, rs, msgid,
add.c 52 ber_int_t msgid; local
108 ctrls, NULL, &msgid );
109 rs->sr_err = ldap_back_op_result( lc, op, rs, msgid,
modify.c 51 ber_int_t msgid; local
110 ctrls, NULL, &msgid );
111 rc = ldap_back_op_result( lc, op, rs, msgid,
  /src/external/bsd/openldap/dist/servers/slapd/back-meta/
compare.c 51 int msgid; local
132 ctrls, NULL, &msgid );
134 rs->sr_err = meta_back_op_result( mc, op, rs, candidate, msgid,
delete.c 48 int msgid; local
85 mdn.bv_val, ctrls, NULL, &msgid );
86 rs->sr_err = meta_back_op_result( mc, op, rs, candidate, msgid,
modrdn.c 49 int msgid; local
148 ctrls, NULL, &msgid );
149 rs->sr_err = meta_back_op_result( mc, op, rs, candidate, msgid,
add.c 52 int msgid; local
186 attrs, ctrls, NULL, &msgid );
187 rs->sr_err = meta_back_op_result( mc, op, rs, candidate, msgid,
  /src/external/gpl2/gettext/dist/gettext-tools/src/
x-rst.c 74 char *msgid; local
217 msgid = xstrdup (buffer);
222 remember_a_message (mlp, NULL, msgid, null_context, &pos, NULL);
  /src/usr.bin/logger/
logger.c 72 const char *msgid = "-"; local
93 case 'm': /* msgid field */
94 msgid = optarg;
127 syslogp(pri, msgid, sd, "%s", buf);
131 syslogp(pri, msgid, sd, "%s", *argv++);
140 syslogp(pri, msgid, sd, "%s", buf);
146 syslogp(pri, msgid, sd, "%s", buf);
199 "Usage: %s [-cins] [-d SD] [-f file] [-m msgid] "
  /src/external/gpl2/gettext/dist/gettext-runtime/src/
gettext.c 72 const char *msgid; local
171 msgid = argv[optind++];
175 msgid = expand_escape (msgid);
180 fputs (msgid, stdout);
189 fputs (dgettext (domain, msgid), stdout);
208 msgid = argv[optind++];
212 msgid = expand_escape (msgid);
215 fputs (domain == NULL ? msgid : dgettext (domain, msgid)
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
tstngettext.c 66 const char *msgid; local
155 msgid = argv[optind++];
189 fputs (n == 1 ? msgid : msgid_plural, stdout);
192 fputs (dngettext (domain, msgid, msgid_plural, n), stdout);
210 Usage: %s [OPTION] MSGID MSGID-PLURAL COUNT...\n\
214 MSGID MSGID-PLURAL translate MSGID (singular) / MSGID-PLURAL (plural)\n
    [all...]
  /src/external/bsd/openldap/dist/clients/tools/
ldapcompare.c 281 int rc, msgid, code; local
293 sctrls, cctrls, &msgid );
304 if ( tool_check_abandon( ld, msgid ) ) {

Completed in 37 milliseconds

1 2 3 4