Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/openldap/dist/servers/slapd/
H A Dschema_init.c2096 struct berval *nval, *assertv; in approxMatch() local
2108 assertv = UTF8bvnormalize( ((struct berval *)assertedValue), in approxMatch()
2110 if( assertv == NULL ) { in approxMatch()
2135 while ( (ber_len_t) nextchunk < assertv->bv_len ) { in approxMatch()
2136 len = strcspn( assertv->bv_val + nextchunk, SLAPD_APPROX_DELIMITER); in approxMatch()
2145 if( !strncasecmp( assertv->bv_val + nextchunk, words[i], 1 )) { in approxMatch()
2153 assertv->bv_val[nextchunk+len] = '\0'; in approxMatch()
2154 val = phonetic( assertv->bv_val + nextchunk ); in approxMatch()
2185 ber_bvfree( assertv ); in approxMatch()