Lines Matching full:suffix
21 * with the distinguished name of the entry. The namespace suffix is
24 * Below, the namespace suffix dc=example,dc=com is stripped.
50 * Substring index could probably be stored like a suffix tree:
57 * This facilitates both substring and suffix search.
103 dnsz = dn->size - strlen(ns->suffix); in index_attribute()
133 dnsz = dn->size - strlen(ns->suffix); in index_rdn_key()
202 dnsz = dn->size - strlen(ns->suffix); in unindex_attribute()
278 /* Reconstruct the full dn from the index key and the namespace suffix.
316 * Full DN is made up of rdn + parent rdn + namespace suffix. in index_to_dn()
325 dn->size = indx->size + strlen(ns->suffix); in index_to_dn()
340 bcopy(ns->suffix, dst, strlen(ns->suffix)); in index_to_dn()
342 /* Construct the full DN by appending namespace suffix. in index_to_dn()
348 dn->size = rdn_sz + strlen(ns->suffix); in index_to_dn()
354 bcopy(ns->suffix, (char *)dn->data + rdn_sz, in index_to_dn()
355 strlen(ns->suffix)); in index_to_dn()