Searched refs:LDAP_SPACE (Results 1 – 4 of 4) sorted by relevance
66 while (LDAP_SPACE(*p)) /* Skip leading whitespace */ in countKeys()74 while (!LDAP_SPACE(*p)) /* Skip till next space or end of string. */ in countKeys()110 while (LDAP_SPACE(*p)) in readNextKey()
384 while( LDAP_SPACE( *str ) ) str++; in ldap_pvt_put_filter()524 while ( *str && LDAP_SPACE( (unsigned char) *str ) ) { in put_filter_list()826 while( LDAP_SPACE( *str ) ) str++; in put_vrFilter()957 while ( *str && LDAP_SPACE( (unsigned char) *str ) ) { in put_vrFilter_list()
198 if ( ss->pos > 0 && LDAP_SPACE(ss->val[ss->pos-1]) ) in append_to_safe_string()1064 while ( !LDAP_SPACE(**sp) && in get_token()1095 while (LDAP_SPACE(**sp)) in parse_whsp()
254 #define LDAP_SPACE(c) ((c) == ' ' || (c) == '\t' || (c) == '\n') macro