HomeSort by: relevance | last modified time | path
    Searched refs:o_ctrls (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/external/bsd/openldap/dist/servers/slapd/back-ldap/
extended.c 66 ctrls = oldctrls = op->o_ctrls;
69 op->o_ctrls = oldctrls;
74 op->o_ctrls = ctrls;
77 op->o_ctrls = oldctrls;
194 op->o_ctrls, NULL, &msgid );
315 op->o_ctrls, NULL, &msgid );
compare.c 58 ctrls = op->o_ctrls;
delete.c 57 ctrls = op->o_ctrls;
modrdn.c 89 ctrls = op->o_ctrls;
chain.c 158 *oldctrlsp = op->o_ctrls;
173 if ( op->o_ctrls ) {
174 for ( c = 0; op->o_ctrls[ c ]; c++ )
180 if ( op->o_ctrls ) {
181 for ( c = 0; op->o_ctrls[ c ]; c++ ) {
182 ctrls[ c + 1 ] = op->o_ctrls[ c ];
187 op->o_ctrls = ctrls;
204 if ( op->o_ctrls != oldctrls ) {
205 if ( op->o_ctrls != NULL ) {
206 assert( op->o_ctrls[ 0 ] != NULL )
    [all...]
add.c 100 ctrls = op->o_ctrls;
modify.c 102 ctrls = op->o_ctrls;
bind.c 246 ctrls = op->o_ctrls;
2506 * operations, if ( *pctrls != op->o_ctrls ), should
2800 * status of op->o_ctrls.
2886 if ( op->o_ctrls ) {
2887 for ( n = 0; op->o_ctrls[ n ]; n++ )
2903 if ( op->o_ctrls ) {
2905 LDAP_CONTROL_PROXY_AUTHZ, op->o_ctrls, NULL );
2907 for ( i = 0; op->o_ctrls[ i ]; i++ ) {
2909 if ( j1 && proxyauthz && proxyauthz == op->o_ctrls[ i ] ) {
2915 ctrls[ i + j1 - skipped ] = op->o_ctrls[ i ]
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
controls.c 619 if( ctrls == op->o_ctrls ) {
826 op->o_ctrls = op->o_tmpalloc( 2 * sizeof(LDAPControl *), op->o_tmpmemctx );
836 op->o_ctrls[nctrls] = NULL;
852 tctrls = op->o_tmprealloc( op->o_ctrls,
858 ldap_controls_free(op->o_ctrls);
859 op->o_ctrls = NULL;
866 op->o_ctrls = tctrls;
868 op->o_ctrls[nctrls++] = c;
869 op->o_ctrls[nctrls] = NULL;
877 slap_free_ctrls( op, op->o_ctrls );
    [all...]
operation.c 106 if ( op->o_ctrls != NULL ) {
107 slap_free_ctrls( op, op->o_ctrls );
backglue.c 428 for (c = 0; op->o_ctrls[c] != NULL; c++) {
429 if (strcmp(op->o_ctrls[c]->ldctl_oid, LDAP_CONTROL_PAGEDRESULTS) == 0)
433 assert( op->o_ctrls[c] != NULL );
438 assert( op->o_ctrls[c]->ldctl_value.bv_len >= value.bv_len );
439 op->o_ctrls[c]->ldctl_value.bv_len = value.bv_len;
440 lutil_memcopy( op->o_ctrls[c]->ldctl_value.bv_val,
691 for (c = 0; op->o_ctrls[c] != NULL; c++) {
692 if (strcmp(op->o_ctrls[c]->ldctl_oid, LDAP_CONTROL_PAGEDRESULTS) == 0)
696 assert( op->o_ctrls[c] != NULL );
701 assert( op->o_ctrls[c]->ldctl_value.bv_len >= value.bv_len )
    [all...]
sasl.c 470 save_ctrls = op->o_ctrls;
471 if ( op->o_ctrls ) {
472 for ( ; op->o_ctrls[ cnt ]; cnt++ )
475 op->o_ctrls = op->o_tmpcalloc( sizeof(LDAPControl *), cnt + 2, op->o_tmpmemctx );
478 op->o_ctrls[ cnt ] = save_ctrls[ cnt ];
484 op->o_ctrls[ cnt ] = &c;
494 if ( save_ctrls != op->o_ctrls ) {
495 op->o_tmpfree( op->o_ctrls, op->o_tmpmemctx );
496 op->o_ctrls = save_ctrls;
  /src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/
search.c 462 save_ctrls = op->o_ctrls;
510 op->o_ctrls = op->o_tmpalloc( len, op->o_tmpmemctx );
514 op->o_ctrls[ dst ] = save_ctrls[ src ];
521 op->o_ctrls[ dst ] = (LDAPControl *)&op->o_ctrls[ nc + 1 ];
523 op->o_ctrls[ dst ]->ldctl_oid = LDAP_CONTROL_PAGEDRESULTS;
524 op->o_ctrls[ dst ]->ldctl_iscritical = 1;
526 op->o_ctrls[ dst ]->ldctl_value.bv_val = (char *)&op->o_ctrls[ dst ][ 1 ];
527 AC_MEMCPY( op->o_ctrls[ dst ]->ldctl_value.bv_val, val.bv_val, val.bv_len + 1 )
    [all...]
bind.c 431 ctrls = op->o_ctrls;
442 /* FIXME: should we check if at least some of the op->o_ctrls
1269 * status of op->o_ctrls.
1354 if ( op->o_ctrls ) {
1355 for ( n = 0; op->o_ctrls[ n ]; n++ )
1371 if ( op->o_ctrls ) {
1373 LDAP_CONTROL_PROXY_AUTHZ, op->o_ctrls, NULL );
1375 for ( i = 0; op->o_ctrls[ i ]; i++ ) {
1377 if ( j1 && proxyauthz && proxyauthz == op->o_ctrls[ i ] ) {
1383 ctrls[ i + j1 - skipped ] = op->o_ctrls[ i ]
    [all...]
  /src/external/bsd/openldap/dist/servers/lloadd/
client.c 104 if ( lload_control_actions && !BER_BVISNULL( &op->o_ctrls ) ) {
109 ber_init2( copy, &op->o_ctrls, 0 );
315 if ( !BER_BVISNULL( &op->o_ctrls ) ) {
316 ber_write( output, op->o_ctrls.bv_val, op->o_ctrls.bv_len, 0 );
324 LDAP_TAG_CONTROLS, BER_BV_OPTIONAL( &op->o_ctrls ) );
bind.c 105 LDAP_TAG_CONTROLS, BER_BV_OPTIONAL( &op->o_ctrls ) );
127 LDAP_TAG_EXOP_VERIFY_CREDENTIALS_CONTROLS, BER_BV_OPTIONAL( &op->o_ctrls ) );
235 pinned_op->o_ctrls = op->o_ctrls;
lload.h 561 BerValue o_request, o_ctrls; member in struct:LloadOperation
  /src/external/bsd/openldap/dist/servers/slapd/back-meta/
delete.c 77 ctrls = op->o_ctrls;
bind.c 496 ctrls = op->o_ctrls;
507 /* FIXME: should we check if at least some of the op->o_ctrls
615 /* FIXME: should we check if at least some of the op->o_ctrls
1623 * status of op->o_ctrls.
1708 if ( op->o_ctrls ) {
1709 for ( n = 0; op->o_ctrls[ n ]; n++ )
1725 if ( op->o_ctrls ) {
1727 LDAP_CONTROL_PROXY_AUTHZ, op->o_ctrls, NULL );
1729 for ( i = 0; op->o_ctrls[ i ]; i++ ) {
1731 if ( j1 && proxyauthz && proxyauthz == op->o_ctrls[ i ] )
    [all...]
compare.c 123 ctrls = op->o_ctrls;
modrdn.c 138 ctrls = op->o_ctrls;
search.c 627 save_ctrls = op->o_ctrls;
675 op->o_ctrls = op->o_tmpalloc( len, op->o_tmpmemctx );
679 op->o_ctrls[ dst ] = save_ctrls[ src ];
686 op->o_ctrls[ dst ] = (LDAPControl *)&op->o_ctrls[ nc + 1 ];
688 op->o_ctrls[ dst ]->ldctl_oid = LDAP_CONTROL_PAGEDRESULTS;
689 op->o_ctrls[ dst ]->ldctl_iscritical = 1;
691 op->o_ctrls[ dst ]->ldctl_value.bv_val = (char *)&op->o_ctrls[ dst ][ 1 ];
692 AC_MEMCPY( op->o_ctrls[ dst ]->ldctl_value.bv_val, val.bv_val, val.bv_len + 1 )
    [all...]
add.c 178 ctrls = op->o_ctrls;
modify.c 178 ctrls = op->o_ctrls;
  /src/external/bsd/openldap/dist/contrib/slapd-modules/lastbind/
lastbind.c 206 op2.o_ctrls = ca;

Completed in 98 milliseconds

1 2