Lines Matching defs:vlen
93 int *vlen
145 * *value, with *vlen set to zero.
149 *vlen = 0;
162 if (( *vlen = ldif_base64_decode( s, (unsigned char *)s ))
177 s[ *vlen ] = '\0';
179 *vlen = (int) (d - s);
321 int vlen, unsigned long options )
349 if ( val && vlen > 0 ) {
351 stop = (unsigned char *) (val + vlen);
358 !LDIF_CONSERVATIVE_FINALCHAR( val[vlen-1] )) {
391 len = ldif_base64_encode_internal( (unsigned char *)val, *out, vlen,
400 ldif_put_type_and_value( char **out, char *t, char *val, int vlen )
402 ldif_put_type_and_value_with_options( out, t, val, vlen, 0 );
406 ldif_put_type_and_value_nowrap( char **out, char *t, char *val, int vlen )
408 ldif_put_type_and_value_with_options( out, t, val, vlen, LDIF_OPT_NOWRAP );
509 ldif_type_and_value_with_options( char *type, char *val, int vlen,
516 if (( buf = (char *)malloc( LDIF_SIZE_NEEDED( tlen, vlen ) + 1 )) !=
519 ldif_put_type_and_value_with_options( &p, type, val, vlen, options );
527 ldif_type_and_value( char *type, char *val, int vlen )
529 return ldif_type_and_value_with_options( type, val, vlen, 0 );
533 ldif_type_and_value_nowrap( char *type, char *val, int vlen )
535 return ldif_type_and_value_with_options( type, val, vlen, LDIF_OPT_NOWRAP );