Home
last modified time | relevance | path

Searched refs:attrLen (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/bsd/openldap/dist/libraries/libldap/
Dsortctrl.c105 int attrLen; in readNextKey() local
123 attrLen = strcspn(p, " \t:"); in readNextKey()
124 p += attrLen; in readNextKey()
126 if (attrLen == 0) /* If no attribute name was present, quit. */ in readNextKey()
143 (*key)->attributeType = LDAP_MALLOC(attrLen+1); in readNextKey()
149 strncpy((*key)->attributeType, attrStart, attrLen); in readNextKey()
150 (*key)->attributeType[attrLen] = 0; in readNextKey()
/netbsd/src/external/bsd/openldap/dist/contrib/ldapc++/src/
DLDAPAttributeList.cpp115 const std::string::size_type attrLen = attrType.size(); in addAttribute() local
122 if(tmpAttrLen == attrLen){ in addAttribute()