• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/

Lines Matching +defs:cl +defs:next

37 		const char **next, unsigned flags, int *retFlags, void *ctx );
39 const char **next, unsigned flags, void *ctx );
41 const char **next, unsigned flags, void *ctx );
43 const char **next, unsigned flags, void *ctx );
45 const char **next, unsigned flags, void *ctx );
1424 str2strval( const char *str, ber_len_t stoplen, struct berval *val, const char **next, unsigned flags, int *retFlags, void *ctx )
1431 assert( next != NULL );
1433 *next = NULL;
1514 *next = p;
1570 DCE2strval( const char *str, struct berval *val, const char **next, unsigned flags, void *ctx )
1577 assert( next != NULL );
1579 *next = NULL;
1621 *next = p;
1655 IA52strval( const char *str, struct berval *val, const char **next, unsigned flags, void *ctx )
1662 assert( next != NULL );
1664 *next = NULL;
1702 *next = p;
1730 quotedIA52strval( const char *str, struct berval *val, const char **next, unsigned flags, void *ctx )
1738 assert( next != NULL );
1740 *next = NULL;
1791 *next = p;
1862 hexstr2binval( const char *str, struct berval *val, const char **next, unsigned flags, void *ctx )
1870 assert( next != NULL );
1872 *next = NULL;
1934 *next = p;
2018 ber_len_t l, cl = 1;
2034 for ( l = 0, p = val->bv_val; p <= end; p += cl ) {
2040 cl = 1;
2045 cl = LDAP_UTF8_CHARLEN2( p, cl );
2046 if ( cl == 0 ) {
2050 } else if ( cl > 1 ) {
2053 for ( cnt = 1; cnt < cl; cnt++ ) {
2058 l += escaped_byte_len * cl;
2118 ber_len_t cl;
2124 cl = 1;
2135 cl = LDAP_UTF8_CHARLEN( &val->bv_val[ s ] );
2141 if ( ( cl > 1 && !LDAP_DN_IS_PRETTY( flags ) )
2156 for ( ; cl--; ) {
2163 } else if ( cl > 1 ) {
2164 for ( ; cl--; ) {
2374 ber_len_t l, cl;
2385 for ( l = 0, p = val->bv_val; p[ 0 ]; p += cl ) {
2386 cl = LDAP_UTF8_CHARLEN2( p, cl );
2387 if ( cl == 0 ) {
2390 } else if ( (cl == 1) && LDAP_DN_NEEDESCAPE_AD( p[ 0 ] ) ) {
2393 l += cl;
2409 ber_len_t s, d, cl;
2426 cl = LDAP_UTF8_CHARLEN2( val->bv_val+s, cl );
2427 if ( cl == 0 ) {
2430 } else if ( (cl == 1) && LDAP_DN_NEEDESCAPE_AD(val->bv_val[ s ]) ) {
2433 for (; cl--;) {