Lines Matching defs:ms
63 metasubtree_t *ms = mt->mt_subtree;
65 for ( ms = mt->mt_subtree; ms; ms = ms->ms_next ) {
66 switch ( ms->ms_type ) {
68 if ( dnIsSuffix( ndn, &ms->ms_dn ) ) {
69 return ms;
74 if ( dnIsSuffix( ndn, &ms->ms_dn ) &&
75 ( ndn->bv_len > ms->ms_dn.bv_len || scope != LDAP_SCOPE_BASE ) )
77 return ms;
83 if ( regexec( &ms->ms_regex, ndn->bv_val, 0, NULL, 0 ) == 0 ) {
84 return ms;