Lines Matching refs:LDAPEntry
16 LDAPEntry::LDAPEntry(const LDAPEntry& entry){ in LDAPEntry() function in LDAPEntry
23 LDAPEntry::LDAPEntry(const string& dn, const LDAPAttributeList *attrs){ in LDAPEntry() function in LDAPEntry
34 LDAPEntry::LDAPEntry(const LDAPAsynConnection *ld, LDAPMessage *msg){ in LDAPEntry() function in LDAPEntry
42 LDAPEntry::~LDAPEntry(){ in ~LDAPEntry()
47 LDAPEntry& LDAPEntry::operator=(const LDAPEntry& from){ in operator =()
54 void LDAPEntry::setDN(const string& dn){ in setDN()
61 void LDAPEntry::setAttributes(LDAPAttributeList *attrs){ in setAttributes()
71 const string& LDAPEntry::getDN() const{ in getDN()
76 const LDAPAttributeList* LDAPEntry::getAttributes() const{ in getAttributes()
81 const LDAPAttribute* LDAPEntry::getAttributeByName(const std::string& name) const in getAttributeByName()
86 void LDAPEntry::addAttribute(const LDAPAttribute& attr) in addAttribute()
91 void LDAPEntry::delAttribute(const std::string& type) in delAttribute()
96 void LDAPEntry::replaceAttribute(const LDAPAttribute& attr) in replaceAttribute()
101 ostream& operator << (ostream& s, const LDAPEntry& le){ in operator <<()