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

  /src/external/bsd/openldap/dist/libraries/libldap/
vc.c 126 int nctrls = 0; local
136 *ctrls[nctrls] = NULL;
147 /* allocate pointer space for current controls (nctrls)
150 tctrls = !tctrl ? NULL : LDAP_REALLOC(*ctrls, (nctrls+2) * sizeof(LDAPControl *));
161 tctrls[nctrls++] = tctrl;
162 tctrls[nctrls] = NULL;
controls.c 154 int nctrls; local
184 nctrls = 0;
191 *ctrls[nctrls] = NULL;
202 /* allocate pointer space for current controls (nctrls)
206 LDAP_REALLOC(*ctrls, (nctrls+2) * sizeof(LDAPControl *));
222 tctrls[nctrls++] = tctrl;
223 tctrls[nctrls] = NULL;
  /src/external/bsd/openldap/dist/clients/tools/
ldapsearch.c 268 static int nctrls = 0; variable
302 nctrls++;
303 tmpc = realloc( c, sizeof( LDAPControl ) * nctrls );
305 nctrls--;
842 for ( i = 0; i < nctrls; i++ ) {
855 c[ nctrls - 1 ].ldctl_oid = control;
859 c[ nctrls - 1 ].ldctl_value.bv_val = NULL;
860 c[ nctrls - 1 ].ldctl_value.bv_len = 0;
879 c[ nctrls - 1 ].ldctl_value = value;
882 ber_dupbv( &c[ nctrls - 1 ].ldctl_value, &value )
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
controls.c 783 int nctrls = 0; local
836 op->o_ctrls[nctrls] = NULL;
849 /* allocate pointer space for current controls (nctrls)
853 (nctrls+2) * sizeof(LDAPControl *), op->o_tmpmemctx );
868 op->o_ctrls[nctrls++] = c;
869 op->o_ctrls[nctrls] = NULL;
946 nctrls, rs->sr_err, rs->sr_text ? rs->sr_text : "");
backglue.c 98 int nctrls; member in struct:glue_state
176 j = gs->nctrls;
227 gs->nctrls = j;
741 for (i = gs.nctrls; --i >= 0; ) {

Completed in 60 milliseconds