Home
last modified time | relevance | path

Searched refs:LDAP_SPACE (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/external/bsd/openldap/dist/libraries/libldap/
Dsortctrl.c66 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()
Dfilter.c384 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()
Dschema.c198 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()
/netbsd/src/external/bsd/openldap/dist/include/
Dldap_pvt.h254 #define LDAP_SPACE(c) ((c) == ' ' || (c) == '\t' || (c) == '\n') macro