Home | History | Annotate | Download | only in librewrite

Lines Matching refs:bv_val

58 	len = ldap_pvt_filter_value_unescape( output->bv_val );
60 ber_memfree( output->bv_val );
86 p = strchr( dnstr.bv_val, '=' );
89 output->bv_len = dnstr.bv_len - ( p - dnstr.bv_val );
90 output->bv_val = malloc( output->bv_len + 1 );
91 if ( output->bv_val == NULL ) {
92 free( dnstr.bv_val );
95 memcpy( output->bv_val, p, output->bv_len );
96 output->bv_val[output->bv_len] = '\0';
98 free( dnstr.bv_val );
111 fake_dn.bv_val = p = malloc( fake_dn.bv_len + 1 );
118 memcpy( p, input->bv_val, input->bv_len );
119 fake_dn.bv_val[fake_dn.bv_len] = '\0';
122 free( fake_dn.bv_val );
129 free( fake_dn.bv_val );
200 free( tmpin.bv_val );