HomeSort by: relevance | last modified time | path
    Searched defs:erefs (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/openldap/dist/servers/slapd/back-wt/
search.c 388 BerVarray erefs = NULL; local
390 erefs = is_entry_referral( ae )
395 if ( erefs ) {
396 rs->sr_ref = referral_rewrite( erefs, &matched_dn,
398 ber_bvarray_free( erefs );
432 BerVarray erefs = NULL; local
434 erefs = get_entry_referrals( op, e );
436 if ( erefs ) {
437 rs->sr_ref = referral_rewrite( erefs, &matched_dn,
439 ber_bvarray_free( erefs );
654 BerVarray erefs = get_entry_referrals( op, e ); local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-mdb/
search.c 540 BerVarray erefs = NULL; local
553 erefs = is_entry_referral( matched )
564 if ( erefs ) {
565 rs->sr_ref = referral_rewrite( erefs, &matched_dn,
567 ber_bvarray_free( erefs );
608 BerVarray erefs = NULL; local
611 erefs = get_entry_referrals( op, e );
618 if ( erefs ) {
619 rs->sr_ref = referral_rewrite( erefs, &matched_dn,
621 ber_bvarray_free( erefs );
1068 BerVarray erefs = get_entry_referrals( op, e ); local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-sql/
search.c 360 BerVarray erefs = get_entry_referrals( op, bsi->bsi_e ); local
361 if ( erefs ) {
363 rs->sr_ref = referral_rewrite( erefs,
367 ber_bvarray_free( erefs );
  /src/external/mpl/bind/dist/lib/dns/
qpcache.c 170 * 'erefs' counts external references held by a caller: for
177 * though 'erefs' may be zero because no external caller is
180 * Generally when 'erefs' is incremented or decremented,
185 * Whenever 'erefs' is incremented from zero, we also aquire a
187 * release it when 'erefs' goes back to zero. This prevents the
192 isc_refcount_t erefs; member in struct:qpcnode
682 * If incrementing erefs from zero, we also increment the node use counter
693 uint_fast32_t refs = isc_refcount_increment0(&node->erefs);
696 fprintf(stderr, "incr:node:%s:%s:%u:%p->erefs = %" PRIuFAST32 "\n",
736 uint_fast32_t refs = isc_refcount_decrement(&node->erefs);
    [all...]
qpzone.c 152 * 'erefs' counts external references held by a caller: for
159 * though 'erefs' may be zero because no external caller is
162 * Generally when 'erefs' is incremented or decremented,
167 * Whenever 'erefs' is incremented from zero, we also aquire a
169 * release it when 'erefs' goes back to zero. This prevents the
174 isc_refcount_t erefs; member in struct:qpznode
668 * If incrementing erefs from zero, we also increment the node use counter
677 uint_fast32_t refs = isc_refcount_increment0(&node->erefs);
679 fprintf(stderr, "incr:node:%s:%s:%u:%p->erefs = %" PRIuFAST32 "\n",
820 uint_fast32_t refs = isc_refcount_decrement(&node->erefs);
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
zone.c 260 isc_refcount_t erefs; member in struct:dns_zone
1165 isc_refcount_init(&zone->erefs, 1);
1216 isc_refcount_decrement0(&zone->erefs);
1217 isc_refcount_destroy(&zone->erefs);
1247 isc_refcount_destroy(&zone->erefs);
5451 * DNS_ZONEFLG_SHUTDOWN can only be set if erefs == 0.
5453 INSIST(isc_refcount_current(&zone->erefs) == 0);
5731 isc_refcount_increment(&source->erefs);
5742 if (isc_refcount_decrement(&zone->erefs) == 1) {
5745 isc_refcount_destroy(&zone->erefs);
    [all...]

Completed in 36 milliseconds