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

1 2 3

  /src/external/bsd/openldap/dist/servers/slapd/back-meta/
compare.c 54 SlapReply *candidates = NULL; local
56 candidates = meta_back_candidates_get( op );
57 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR, candidates );
58 if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR, candidates ) ) {
59 op->o_tmpfree( candidates, op->o_tmpmemctx );
138 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR, candidates ) ) {
160 op->o_tmpfree( candidates, op->o_tmpmemctx );
delete.c 51 SlapReply *candidates = NULL; local
53 candidates = meta_back_candidates_get( op );
54 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR, candidates );
55 if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR, candidates ) ) {
56 op->o_tmpfree( candidates, op->o_tmpmemctx );
90 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR, candidates ) ) {
109 op->o_tmpfree( candidates, op->o_tmpmemctx );
modrdn.c 53 SlapReply *candidates = NULL; local
55 candidates = meta_back_candidates_get( op );
56 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR, candidates );
57 if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR, candidates ) ) {
58 op->o_tmpfree( candidates, op->o_tmpmemctx );
153 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR, candidates ) ) {
183 op->o_tmpfree( candidates, op->o_tmpmemctx );
add.c 55 SlapReply *candidates = NULL; local
62 candidates = meta_back_candidates_get( op );
63 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR, candidates );
64 if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR, candidates ) ) {
65 op->o_tmpfree( candidates, op->o_tmpmemctx );
191 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR, candidates ) ) {
215 op->o_tmpfree( candidates, op->o_tmpmemctx );
modify.c 57 SlapReply *candidates = NULL; local
59 candidates = meta_back_candidates_get( op );
60 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR, candidates );
61 if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR, candidates ) ) {
62 op->o_tmpfree( candidates, op->o_tmpmemctx );
191 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR, candidates ) ) {
216 op->o_tmpfree( candidates, op->o_tmpmemctx );
bind.c 71 SlapReply *candidates; local
97 candidates = meta_back_candidates_get( op );
101 mc = meta_back_getconn( op, rs, NULL, LDAP_BACK_BIND_DONTSEND, candidates );
119 op->o_tmpfree( candidates, op->o_tmpmemctx );
132 * Skip non-candidates
134 if ( !META_IS_CANDIDATE( &candidates[ i ] ) ) {
193 META_CANDIDATE_CLEAR( &candidates[ i ] );
292 op->o_tmpfree( candidates, op->o_tmpmemctx );
297 op->o_tmpfree( candidates, op->o_tmpmemctx );
683 SlapReply *candidates )
    [all...]
conn.c 708 SlapReply *candidates )
805 SlapReply *candidates = meta_back_candidates_get( op ); local
807 candidates[ candidate ].sr_err = rc;
927 * among the multiple candidates available */
955 /* if multiple candidates can serve the operation,
984 SlapReply *candidates; local
986 candidates = op->o_tmpcalloc( mi->mi_ntargets, sizeof( SlapReply ), op->o_tmpmemctx );
987 return candidates;
1029 SlapReply *candidates )
1224 /* allow multiple candidates for the searchBase *
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
spellcheck-tree.cc 44 /* Given TARGET, an identifier, and CANDIDATES, a vec of identifiers,
45 determine which element within CANDIDATES has the lowest edit
53 find_closest_identifier (tree target, const auto_vec<tree> *candidates)
60 FOR_EACH_VEC_ELT (*candidates, i, identifier)
80 auto_vec<tree> candidates; local
83 ASSERT_EQ (NULL, find_closest_identifier (get_identifier (""), &candidates));
89 candidates.safe_push (apple);
90 candidates.safe_push (banana);
91 candidates.safe_push (cherry);
94 &candidates));
    [all...]
spellcheck.cc 152 /* Given TARGET, a non-NULL string, and CANDIDATES, a non-NULL ptr to
154 CANDIDATES has the lowest edit distance to TARGET. If there are
163 const auto_vec<const char *> *candidates)
166 gcc_assert (candidates);
171 FOR_EACH_VEC_ELT (*candidates, i, candidate)
322 auto_vec<const char *> candidates; local
323 candidates.safe_push (candidate);
324 ASSERT_EQ_AT (loc, candidate, find_closest_string (target, &candidates));
340 auto_vec<const char *> candidates; local
341 candidates.safe_push (candidate)
409 auto_vec<const char *> candidates; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
spellcheck-tree.cc 44 /* Given TARGET, an identifier, and CANDIDATES, a vec of identifiers,
45 determine which element within CANDIDATES has the lowest edit
53 find_closest_identifier (tree target, const auto_vec<tree> *candidates)
60 FOR_EACH_VEC_ELT (*candidates, i, identifier)
80 auto_vec<tree> candidates; local
83 ASSERT_EQ (NULL, find_closest_identifier (get_identifier (""), &candidates));
89 candidates.safe_push (apple);
90 candidates.safe_push (banana);
91 candidates.safe_push (cherry);
94 &candidates));
    [all...]
spellcheck.cc 152 /* Given TARGET, a non-NULL string, and CANDIDATES, a non-NULL ptr to
154 CANDIDATES has the lowest edit distance to TARGET. If there are
163 const auto_vec<const char *> *candidates)
166 gcc_assert (candidates);
171 FOR_EACH_VEC_ELT (*candidates, i, candidate)
322 auto_vec<const char *> candidates; local
323 candidates.safe_push (candidate);
324 ASSERT_EQ_AT (loc, candidate, find_closest_string (target, &candidates));
340 auto_vec<const char *> candidates; local
341 candidates.safe_push (candidate)
409 auto_vec<const char *> candidates; local
    [all...]
tree-ssa-loop-ch.cc 385 auto_vec<loop_p> candidates; local
423 candidates.safe_push (loop);
428 for (auto loop : candidates)
  /src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/
add.c 84 SlapReply *candidates = bc->candidates; local
136 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
180 candidates[ candidate ].sr_msgid = msgid;
219 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
238 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_add_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
252 SlapReply *candidates; local
278 candidates = bc->candidates;
279 mc = asyncmeta_getconn( op, rs, candidates, &candidate, LDAP_BACK_DONTSEND, 0)
    [all...]
compare.c 59 SlapReply *candidates = bc->candidates; local
76 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
122 candidates[ candidate ].sr_msgid = msgid;
160 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
181 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_compare_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
194 SlapReply *candidates; local
220 candidates = bc->candidates;
221 mc = asyncmeta_getconn( op, rs, candidates, &candidate, LDAP_BACK_DONTSEND, 0)
    [all...]
delete.c 56 SlapReply *candidates = bc->candidates; local
70 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
115 candidates[ candidate ].sr_msgid = msgid;
154 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
172 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_delete_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
185 SlapReply *candidates; local
212 candidates = bc->candidates;
213 mc = asyncmeta_getconn( op, rs, candidates, &candidate, LDAP_BACK_DONTSEND, 0)
    [all...]
modify.c 59 SlapReply *candidates = bc->candidates; local
122 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
169 candidates[ candidate ].sr_msgid = msgid;
208 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
229 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_modify_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
242 SlapReply *candidates; local
268 candidates = bc->candidates;
269 mc = asyncmeta_getconn( op, rs, candidates, &candidate, LDAP_BACK_DONTSEND, 0)
    [all...]
modrdn.c 59 SlapReply *candidates = bc->candidates; local
129 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
176 candidates[ candidate ].sr_msgid = msgid;
215 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
243 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_modrdn_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
256 SlapReply *candidates; local
282 candidates = bc->candidates;
283 mc = asyncmeta_getconn( op, rs, candidates, &candidate, LDAP_BACK_DONTSEND, 0)
    [all...]
search.c 59 if (j != candidate && bc->candidates[j].sr_msgid >= 0
62 bc->candidates[ j ].sr_msgid, j );
328 SlapReply *candidates = bc->candidates; local
355 candidates[ candidate ].sr_err = LDAP_OTHER;
359 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
546 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
604 candidates[ candidate ].sr_msgid = msgid;
631 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
646 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE
685 SlapReply *candidates = NULL; local
    [all...]
bind.c 73 SlapReply *candidates = NULL; local
107 candidates = op->o_tmpcalloc(mi->mi_ntargets, sizeof(SlapReply),op->o_tmpmemctx);
112 mc = asyncmeta_getconn( op, rs, candidates, NULL, LDAP_BACK_BIND_DONTSEND, 1 );
142 * Skip non-candidates
144 if ( !META_IS_CANDIDATE( &candidates[ i ] ) ) {
202 META_CANDIDATE_CLEAR( &candidates[ i ] );
1418 SlapReply *candidates = bc->candidates; local
1475 candidates[ candidate ].sr_msgid = META_MSGID_NEED_BIND;
1625 candidates[ candidate ].sr_msgid = META_MSGID_NEED_BIND
    [all...]
meta_result.c 57 SlapReply *candidates = bc->candidates; local
59 if ( !META_IS_CANDIDATE( &candidates[ i ] ) ) {
62 if (candidates[ i ].sr_msgid != META_MSGID_IGNORE ||
63 candidates[ i ].sr_type != REP_RESULT) {
500 SlapReply *candidates = bc->candidates; local
508 if ( META_IS_CANDIDATE( &candidates[ i ] )
509 && candidates[ i ].sr_matched != NULL )
519 && candidates[ i ].sr_err == LDAP_NO_SUCH_OBJEC
750 SlapReply *candidates; local
1391 SlapReply *candidates; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-wt/
search.c 344 ID candidates[WT_IDL_UM_SIZE]; local
469 /* select candidates */
471 rs->sr_err = base_candidate( op->o_bd, base, candidates );
473 WT_IDL_ZERO( candidates );
476 wc, candidates, scopes );
488 /* start cursor at beginning of candidates.
492 if ( candidates[0] == 0 ) {
493 Debug( LDAP_DEBUG_TRACE, "wt_search: no candidates\n" );
499 WT_IDL_N(candidates) > (unsigned) op->ors_limit->lms_s_unchecked )
510 tentries = WT_IDL_N(candidates);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
driver-rs6000.cc 262 auto_vec <const char *> candidates; local
264 candidates.safe_push (rs6000_supported_cpu_names[i]);
265 candidates_list_and_hint (cpu, s, candidates);
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
driver-rs6000.cc 262 auto_vec <const char *> candidates; local
264 candidates.safe_push (rs6000_supported_cpu_names[i]);
265 candidates_list_and_hint (cpu, s, candidates);
  /src/external/gpl3/gcc/dist/gcc/common/config/arm/
arm-common.cc 360 auto_vec<const char*> candidates; local
363 candidates.safe_push (list->common.name);
369 candidates.safe_push (alias->name);
375 candidates.safe_push ("native");
379 const char *hint = candidates_list_and_hint (target, s, candidates);
433 auto_vec<const char*> candidates; local
435 candidates.safe_push (list->common.name);
439 candidates.safe_push ("native");
443 const char *hint = candidates_list_and_hint (target, s, candidates);
486 auto_vec<const char*> candidates; local
534 auto_vec<const char*> candidates; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/common/config/arm/
arm-common.cc 360 auto_vec<const char*> candidates; local
363 candidates.safe_push (list->common.name);
369 candidates.safe_push (alias->name);
375 candidates.safe_push ("native");
379 const char *hint = candidates_list_and_hint (target, s, candidates);
433 auto_vec<const char*> candidates; local
435 candidates.safe_push (list->common.name);
439 candidates.safe_push ("native");
443 const char *hint = candidates_list_and_hint (target, s, candidates);
486 auto_vec<const char*> candidates; local
534 auto_vec<const char*> candidates; local
    [all...]

Completed in 25 milliseconds

1 2 3