Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLDAPControlSet.cpp12 LDAPControlSet::LDAPControlSet(){ in LDAPControlSet() function in LDAPControlSet
15 LDAPControlSet::LDAPControlSet(const LDAPControlSet& cs){ in LDAPControlSet() function in LDAPControlSet
20 LDAPControlSet::LDAPControlSet(LDAPControl** controls){ in LDAPControlSet() function in LDAPControlSet
30 LDAPControlSet::~LDAPControlSet(){ in ~LDAPControlSet()
34 size_t LDAPControlSet::size() const { in size()
39 bool LDAPControlSet::empty() const { in empty()
44 LDAPControlSet::const_iterator LDAPControlSet::begin() const{ in begin()
50 LDAPControlSet::const_iterator LDAPControlSet::end() const{ in end()
55 void LDAPControlSet::add(const LDAPCtrl& ctrl){ in add()
60 LDAPControl** LDAPControlSet::toLDAPControlArray() const{ in toLDAPControlArray()
[all …]
H A DLDAPControlSet.h21 class LDAPControlSet {
27 LDAPControlSet();
33 LDAPControlSet(const LDAPControlSet& cs);
46 LDAPControlSet(LDAPControl** controls);
51 ~LDAPControlSet();
H A DLDAPConstraints.h51 void setServerControls(const LDAPControlSet* ctrls);
52 void setClientControls(const LDAPControlSet* ctrls);
58 const LDAPControlSet* getServerControls() const;
59 const LDAPControlSet* getClientControls() const;
94 LDAPControlSet* m_clientControls;
97 LDAPControlSet* m_serverControls;
H A DLDAPConstraints.cpp37 m_serverControls=new LDAPControlSet(*c.m_serverControls); in LDAPConstraints()
42 m_clientControls=new LDAPControlSet(*c.m_clientControls); in LDAPConstraints()
99 void LDAPConstraints::setServerControls(const LDAPControlSet* ctrls){ in setServerControls()
101 m_serverControls=new LDAPControlSet(*ctrls); in setServerControls()
104 void LDAPConstraints::setClientControls(const LDAPControlSet* ctrls){ in setClientControls()
106 m_clientControls=new LDAPControlSet(*ctrls); in setClientControls()
129 const LDAPControlSet* LDAPConstraints::getServerControls() const{ in getServerControls()
134 const LDAPControlSet* LDAPConstraints::getClientControls() const{ in getClientControls()
H A DLDAPBindRequest.cpp68 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls); in sendRequest()
69 LDAPControlSet::freeLDAPControlArray(tmpClCtrls); in sendRequest()
100 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls); in sendRequest()
101 LDAPControlSet::freeLDAPControlArray(tmpClCtrls); in sendRequest()
H A DLDAPMessage.h106 const LDAPControlSet& getSrvControls() const;
121 LDAPControlSet m_srvControls;
H A DLDAPDeleteRequest.cpp48 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls); in sendRequest()
49 LDAPControlSet::freeLDAPControlArray(tmpClCtrls); in sendRequest()
H A DLDAPCompareRequest.cpp54 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls); in sendRequest()
55 LDAPControlSet::freeLDAPControlArray(tmpClCtrls); in sendRequest()
H A DLDAPAddRequest.cpp52 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls); in sendRequest()
53 LDAPControlSet::freeLDAPControlArray(tmpClCtrls); in sendRequest()
H A DLDAPModifyRequest.cpp53 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls); in sendRequest()
54 LDAPControlSet::freeLDAPControlArray(tmpClCtrls); in sendRequest()
H A DLDAPExtRequest.cpp55 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls); in sendRequest()
56 LDAPControlSet::freeLDAPControlArray(tmpClCtrls); in sendRequest()
H A DLDAPModDNRequest.cpp61 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls); in sendRequest()
62 LDAPControlSet::freeLDAPControlArray(tmpClCtrls); in sendRequest()
H A DMakefile.am20 LDAPControlSet.cpp \
61 LDAPControlSet.h \
H A DLDAPSearchRequest.cpp75 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrl); in sendRequest()
76 LDAPControlSet::freeLDAPControlArray(tmpClCtrl); in sendRequest()
H A DLDAPSearchReference.cpp35 m_srvControls = LDAPControlSet(srvctrls); in LDAPSearchReference()
H A DLDAPSearchResult.cpp29 m_srvControls = LDAPControlSet(srvctrls); in LDAPSearchResult()
H A DLDAPMessage.cpp69 const LDAPControlSet& LDAPMsg::getSrvControls() const { in getSrvControls()
H A DLDAPResult.cpp39 m_srvControls = LDAPControlSet(srvctrls); in LDAPResult()
H A DLDAPAsynConnection.cpp277 LDAPControlSet::freeLDAPControlArray(tmpSrvCtrls); in unbind()
278 LDAPControlSet::freeLDAPControlArray(tmpClCtrls); in unbind()
H A DMakefile.in83 LDAPConstraints.lo LDAPControl.lo LDAPControlSet.lo \
245 LDAPControlSet.cpp \
286 LDAPControlSet.h \
430 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LDAPControlSet.Plo@am__quote@
/netbsd-src/external/bsd/openldap/dist/contrib/ldapc++/examples/
H A Dmain.cpp23 LDAPControlSet* ctrls=new LDAPControlSet; in main()