Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_op.c57 buildLdapSearch(char *base, int scope, int numFilterComps, char **filterComp, in buildLdapSearch() argument
73 if (filterComp != 0 && numFilterComps > 0) { in buildLdapSearch()
74 ls->filterComp = am(myself, numFilterComps * in buildLdapSearch()
75 sizeof (ls->filterComp[0])); in buildLdapSearch()
76 if (ls->filterComp == 0) { in buildLdapSearch()
81 ls->filterComp[i] = sdup(myself, T, filterComp[i]); in buildLdapSearch()
82 if (ls->filterComp[i] == 0 && filterComp[i] != 0) in buildLdapSearch()
88 ls->filterComp); in buildLdapSearch()
93 ls->filterComp = 0; in buildLdapSearch()
138 if (ls->filterComp != 0) { in freeLdapSearch()
[all …]
H A Dldap_structs.h80 char **filterComp; member
H A Dldap_op.h54 int numFilterComps, char **filterComp,
H A Dldap_ldap.c250 ls.filterComp = 0; in storeLDAP()