Lines Matching defs:vlen
55 * of an item that is "vlen" bytes long will take up. Base64 encoding
58 #define LDIF_BASE64_LEN(vlen) (((vlen) * 4 / 3 ) + 3)
62 * tlen) and value (length vlen) will take up: room for type + ":: " +
66 #define LDIF_SIZE_NEEDED(tlen,vlen) \
67 ((tlen) + 4 + LDIF_BASE64_LEN(vlen) \
68 + ((LDIF_BASE64_LEN(vlen) + tlen + 3) / LDIF_MAX_LINE_WIDTH * 2 ))
78 int str_parse_line( char *line, char **type, char **value, int *vlen);
80 void ldif_put_type_and_value( char **out, char *t, char *val, int vlen );
81 void ldif_put_type_and_value_nowrap( char **out, char *t, char *val, int vlen );
83 int vlen, unsigned long options );
84 char *ldif_type_and_value( char *type, char *val, int vlen );
85 char *ldif_type_and_value_nowrap( char *type, char *val, int vlen );
86 char *ldif_type_and_value_with_options( char *type, char *val, int vlen,