HomeSort by: relevance | last modified time | path
    Searched refs:nbase (Results 1 - 19 of 19) sorted by relevancy

  /src/external/bsd/openldap/dist/servers/slapd/back-monitor/
init.c 623 struct berval *nbase,
634 BER_BVISNULL( nbase ) ? "" : nbase->bv_val,
662 if ( monitor_search2ndn( nbase, scope, filter, &ndn ) ) {
668 nbase->bv_val ? nbase->bv_val : "\"\"",
789 if ( !BER_BVISNULL( nbase ) ) {
790 ber_dupbv( &el.el_nbase, nbase );
853 struct berval *nbase,
885 if ( nbase == NULL || BER_BVISNULL( nbase ) )
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
dn.c 1213 * - nbase is normalized
1214 * - dnIsSuffix( ndn, nbase ) == TRUE
1218 dnIsWithinScope( struct berval *ndn, struct berval *nbase, int scope )
1221 assert( nbase != NULL );
1223 assert( !BER_BVISNULL( nbase ) );
1231 if ( ndn->bv_len != nbase->bv_len ) {
1239 if ( pndn.bv_len != nbase->bv_len ) {
1245 if ( ndn->bv_len == nbase->bv_len ) {
1261 * - nbase is normalized
1265 dnIsSuffixScope( struct berval *ndn, struct berval *nbase, int scope
    [all...]
backend.c 1515 struct berval bv, nbase; local
1533 BER_BVZERO( &nbase );
1544 if ( dnNormalize( 0, NULL, NULL, &bv, &nbase,
1552 if ( !dn_match( &nbase, op_ndn ) ) {
1558 if ( !dn_match( &nbase, &bv ) ) {
1563 if ( !dnIsSuffix( op_ndn, &nbase ) ) {
1568 if ( dn_match( &nbase, op_ndn ) ||
1569 !dnIsSuffix( op_ndn, &nbase ) )
1615 if ( !BER_BVISNULL( &nbase ) ) {
1616 op->o_tmpfree( nbase.bv_val, op->o_tmpmemctx )
    [all...]
saslauthz.c 924 struct berval *nbase,
938 BER_BVZERO( nbase );
1022 rc = dnNormalize( 0, NULL, NULL, &bv, nbase, op->o_tmpmemctx );
1027 ber_dupbv_x( nbase, &bv, op->o_tmpmemctx );
1033 ber_dupbv_x( nbase, &bv, op->o_tmpmemctx );
1081 realm.bv_val, nbase, SLAP_GETDN_AUTHZID );
1136 rc = dnNormalize( 0, NULL, NULL, &group_dn, nbase, op->o_tmpmemctx );
1142 ber_dupbv_x( nbase, &group_dn, op->o_tmpmemctx );
1232 rc = dnNormalize( 0, NULL, NULL, base, nbase, op->o_tmpmemctx );
1234 ber_dupbv_x( nbase, base, op->o_tmpmemctx )
    [all...]
slapcommon.c 796 struct berval nbase; local
798 rc = dnNormalize( 0, NULL, NULL, &base, &nbase, NULL );
805 be = select_backend( &nbase, 0 );
806 ber_memfree( nbase.bv_val );
807 BER_BVZERO( &nbase );
proto-slap.h 971 struct berval *ndn, struct berval *nbase, int scope ));
974 struct berval *ndn, struct berval *nbase, int scope ));
  /src/bin/ksh/
history.c 953 unsigned char *nbase = oldbase; local
956 nbase = hist_skip_back(nbase, &nbytes, histsize);
957 if (nbase == NULL)
959 if (nbase == oldbase)
974 if (write(fd, nbase, nbytes) != nbytes) {
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
dynlist.c 1181 struct berval bv, nbase; local
1211 if ( dnNormalize( 0, NULL, NULL, &bv, &nbase, op->o_tmpmemctx ) != LDAP_SUCCESS )
1214 ludp->lud_dn = ldap_strdup( nbase.bv_val );
1215 op->o_tmpfree( nbase.bv_val, op->o_tmpmemctx );
1217 ludp->lud_port = nbase.bv_len;
1267 struct berval bv, nbase; local
1281 if ( dnNormalize( 0, NULL, NULL, &bv, &nbase, op->o_tmpmemctx ) != LDAP_SUCCESS )
1286 op->o_tmpfree( nbase.bv_val, op->o_tmpmemctx );
1316 dnf->f_av_value = nbase;
1321 dnf->f_mr_value = nbase;
1524 struct berval nbase, bv; local
2371 struct berval nbase = BER_BVNULL; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-sql/
proto-sql.h 178 struct berval *nbase, int scope,
search.c 174 struct berval *nbase,
187 bsi->bsi_base_ndn = nbase;
337 rc = backsql_dn2id( op, rs, dbh, nbase, &bsi->bsi_base_id,
347 if ( dn_match( nbase, &bsi->bsi_base_id.eid_ndn ) )
2097 struct berval nbase = BER_BVNULL; local
2634 if ( !BER_BVISNULL( &nbase )
2635 && nbase.bv_val != op->o_req_ndn.bv_val )
2637 ch_free( nbase.bv_val );
  /src/external/gpl3/gcc.old/dist/gcc/
recog.cc 2053 int nbase = 0, n, i;
2077 nbase = 1;
2105 nbase = i;
2124 operand_locs[nbase + i] = &ASM_OPERANDS_INPUT (asmop, i);
2126 operands[nbase + i] = ASM_OPERANDS_INPUT (asmop, i);
2128 constraints[nbase + i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
2130 modes[nbase + i] = ASM_OPERANDS_INPUT_MODE (asmop, i);
2132 nbase += n;
2138 operand_locs[nbase + i] = &ASM_OPERANDS_LABEL (asmop, i);
2140 operands[nbase + i] = ASM_OPERANDS_LABEL (asmop, i)
2049 int nbase = 0, n, i; local
    [all...]
omp-general.cc 2522 int nbase = lto_symtab_encoder_lookup (encoder, entryp->base); local
2523 gcc_assert (nbase != LCC_NOT_FOUND);
2524 streamer_write_hwi_stream (ob->main_stream, nbase);
ipa-modref.cc 3582 size_t nbase = streamer_read_uhwi (ib); local
3584 gcc_assert (!every_base || nbase == 0);
3592 for (size_t i = 0; i < nbase; i++)
  /src/external/gpl3/gcc/dist/gcc/
recog.cc 2073 int nbase = 0, n, i;
2097 nbase = 1;
2126 nbase = i;
2145 operand_locs[nbase + i] = &ASM_OPERANDS_INPUT (asmop, i);
2147 operands[nbase + i] = ASM_OPERANDS_INPUT (asmop, i);
2149 constraints[nbase + i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
2151 modes[nbase + i] = ASM_OPERANDS_INPUT_MODE (asmop, i);
2153 nbase += n;
2159 operand_locs[nbase + i] = &ASM_OPERANDS_LABEL (asmop, i);
2161 operands[nbase + i] = ASM_OPERANDS_LABEL (asmop, i)
2069 int nbase = 0, n, i; local
    [all...]
omp-general.cc 2762 int nbase = lto_symtab_encoder_lookup (encoder, entryp->base); local
2763 gcc_assert (nbase != LCC_NOT_FOUND);
2764 streamer_write_hwi_stream (ob->main_stream, nbase);
ipa-modref.cc 3585 size_t nbase = streamer_read_uhwi (ib); local
3587 gcc_assert (!every_base || nbase == 0);
3595 for (size_t i = 0; i < nbase; i++)
  /src/sys/arch/mac68k/mac68k/
macrom.c 1139 mrg_fixupROMBase(void *obase, void *nbase)
1146 newbase = (u_int32_t) nbase;
  /src/external/gpl3/gcc.old/dist/gcc/cp/
typeck.cc 7877 tree nbase = TYPE_PTRMEM_CLASS_TYPE (type);
7879 (obase, nbase,
7885 if (!same_type_p (obase, nbase))
7864 tree nbase = TYPE_PTRMEM_CLASS_TYPE (type); local
  /src/external/gpl3/gcc/dist/gcc/cp/
typeck.cc 8309 tree nbase = TYPE_PTRMEM_CLASS_TYPE (type);
8311 (obase, nbase,
8317 if (!same_type_p (obase, nbase))
8296 tree nbase = TYPE_PTRMEM_CLASS_TYPE (type); local

Completed in 100 milliseconds