Searched refs:aNewKey (Results 1 – 4 of 4) sorted by relevance
/external/opencore/protocols/http_parcom/src/ |
D | string_keyvalue_store.cpp | 58 int32 StringKeyValueStore::addKeyToStore(const StrCSumPtrLen &aNewKey, int32 tableIndex) in addKeyToStore() argument 70 int32 aKeyLength = aNewKey.length(); in addKeyToStore() 71 …if (!storeNewKeyValueItem(aNewKey.c_str(), aKeyLength, newLocation)) return StringKeyValueStore_No… in addKeyToStore() 78 int32 StringKeyValueStore::addKeyValuePair(const StrCSumPtrLen &aNewKey, const StrPtrLen &aNewValue… in addKeyValuePair() argument 81 …if ((tableIndex = getHashTableIndex(aNewKey, false)) < 0) return false; // false in getHashTableIn… in addKeyValuePair() 84 if (addKeyToStore(aNewKey, tableIndex)) return StringKeyValueStore_NoMemory; in addKeyValuePair() 126 int32 StringKeyValueStore::addKeyValuePair(const StrCSumPtrLen &aNewKey, const char *aNewValue, con… in addKeyValuePair() argument 130 return addKeyValuePair(aNewKey, newValue, aNeedReplaceOldValue); in addKeyValuePair() 133 int32 StringKeyValueStore::addKeyValuePair(const char *aNewKey, const uint32 aKeyLength, const char… in addKeyValuePair() argument 136 StrCSumPtrLen newKey(aNewKey, aKeyLength); in addKeyValuePair()
|
D | string_keyvalue_store.h | 187 …int32 addKeyValuePair(const StrCSumPtrLen &aNewKey, const StrPtrLen &aNewValue, const bool aNeedRe… 188 …int32 addKeyValuePair(const StrCSumPtrLen &aNewKey, const char *aNewValue, const bool aNeedReplace… 192 …int32 addKeyValuePair(const char *aNewKey, const uint32 aKeyLength, const char *aNewValue, const u… 276 int32 addKeyToStore(const StrCSumPtrLen &aNewKey, int32 tableIndex);
|
D | http_parser.cpp | 830 int32 HTTPParserBaseObject::addKeyValuePairToStore(const StrCSumPtrLen &aNewKey, in addKeyValuePairToStore() argument 834 return addKeyValuePairToStore((char*)aNewKey.c_str(), aNewKey.length(), in addKeyValuePairToStore()
|
D | http_parser_internal.h | 246 int32 addKeyValuePairToStore(const StrCSumPtrLen &aNewKey,
|