Searched refs:bvp (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/tests/progs/
H A Dslapd-addel.c200 struct berval *bvp; local
249 if (( bvp = (struct berval *)ber_memalloc( sizeof( struct berval )))
254 pmods[ i ]->mod_bvalues[ j ] = bvp;
256 bvp->bv_len = vlen;
257 if (( bvp->bv_val = (char *)malloc( vlen + 1 )) == NULL ) {
261 AC_MEMCPY( bvp->bv_val, value, vlen );
262 bvp->bv_val[ vlen ] = '\0';
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblber/
H A Ddecode.c361 struct berval bv, *bvp = NULL; local
435 bvp = ber_memalloc_x( sizeof( struct berval ),
437 if ( !bvp ) {
441 res.bv[n] = bvp;
442 *bvp = bv;
705 struct berval data, *bval, **bvp, ***bvpp; local
785 bvp = va_arg( ap, struct berval ** );
790 *bvp = cookie.result;
805 bvp = va_arg( ap, struct berval ** );
806 rc = ber_get_stringal( ber, bvp );
[all...]
H A Dencode.c506 struct berval *bv, **bvp; local
600 if ( (bvp = va_arg( ap, struct berval ** )) == NULL )
602 for ( i = 0; bvp[i] != NULL; i++ ) {
603 if ( (rc = ber_put_berval( ber, bvp[i],
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Dcomnet.c214 rpc_binding_vector_p_t bvp, new_bvp; /* local ptr to binding vector */
230 bv_alloc ((rpc_binding_vector_p_t) NULL, &bvp, status);
270 if (bv_index >= bvp->count)
272 bv_alloc (bvp, &new_bvp, status);
279 bvp = new_bvp;
301 bvp->binding_h[bv_index] = (rpc_binding_handle_t) binding_rep;
334 bvp->count = bv_index;
335 *binding_vec = bvp;
342 ((rpc_binding_handle_t *) &bvp->binding_h[i], &xstatus);
345 RPC_MEM_FREE (bvp, RPC_C_MEM_BINDING_VE
211 rpc_binding_vector_p_t bvp, new_bvp; /* local ptr to binding vector */ local
2945 rpc_binding_vector_p_t bvp; local
[all...]
H A Dcomep.c553 rpc_binding_vector_p_t bvp;
565 RPC_MEM_ALLOC(bvp, rpc_binding_vector_p_t, bv_size,
567 if (bvp == NULL)
580 bvp->count = curr_hand;
581 for (j = 0; j < bvp->count; j++)
582 bvp->binding_h[j] = binding_vec->binding_h[j];
584 rpc_ep_unregister(ifspec, bvp, object_uuid_vec, &st);
614 RPC_MEM_FREE(bvp, RPC_C_MEM_UUID_VECTOR);
628 bvp->count = 1;
629 bvp
549 rpc_binding_vector_p_t bvp; local
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldap/
H A Dconfig.c1048 BerVarray *bvp; local
1054 case LDAP_BACK_CFG_IDASSERT_AUTHZFROM: bvp = &li->li_idassert_authz; break;
1055 case LDAP_BACK_CFG_IDASSERT_PASSTHRU: bvp = &li->li_idassert_passthru; break;
1059 if ( *bvp == NULL ) {
1060 if ( bvp == &li->li_idassert_authz
1072 for ( i = 0; !BER_BVISNULL( &((*bvp)[ i ]) ); i++ ) {
1075 bv.bv_len = ((*bvp)[ i ]).bv_len + len;
1079 ptr = lutil_strncopy( ptr, ((*bvp)[ i ]).bv_val, ((*bvp)[ i ]).bv_len );
1426 BerVarray *bvp; local
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/clients/tools/
H A Dldapmodify.c1030 struct berval *bvp; local
1070 bvp = pmods[ i ]->mod_bvalues[ j ];
1072 for ( k = 0; (unsigned long) k < bvp->bv_len; ++k ) {
1073 if ( !isascii( bvp->bv_val[ k ] )) {
1079 printf( _("\tNOT ASCII (%ld bytes)\n"), bvp->bv_len );
1081 printf( "\t%s\n", bvp->bv_val );
H A Dldapsearch.c1821 struct berval bv, *bvals, **bvp = &bvals; local
1854 if ( attrsonly ) bvp = NULL;
1856 for ( rc = ldap_get_attribute_ber( ld, entry, ber, &bv, bvp );
1858 rc = ldap_get_attribute_ber( ld, entry, ber, &bv, bvp ) )
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dopenldap.c439 struct berval bv, *bvals, **bvp = &bvals; local
485 for(rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp);
487 rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, bvp)) {
/macosx-10.10.1/system_cmds-643.1.1/zic.tproj/
H A Dzic.c1387 atcomp(avp, bvp)
1389 void * bvp;
1391 if (((struct attype *) avp)->at < ((struct attype *) bvp)->at)
1393 else if (((struct attype *) avp)->at > ((struct attype *) bvp)->at)
/macosx-10.10.1/ICU-531.30/icuSources/tools/tzcode/
H A Dzic.c1584 atcomp(avp, bvp)
1586 const void * bvp;
1589 const zic_t b = ((const struct attype *) bvp)->at;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Drwm.c2537 struct berval bv, *bvp = &bv; local
2539 if ( rwm_bva_add( &bvp, 0, &c->argv[ idx0 ] ) ) {
/macosx-10.10.1/curl-83.1.2/curl/
H A Dconfigure18418 BERVAL *bvp = NULL;
18419 BerElement *bep = ber_init(bvp);
20278 BerValue *bvp = NULL;
20279 BerElement *bep = ber_init(bvp);
20334 BerValue *bvp = NULL;
20335 BerElement *bep = ber_init(bvp);
20691 BerValue *bvp = NULL;
20692 BerElement *bep = ber_init(bvp);
[all...]

Completed in 350 milliseconds