Home
last modified time | relevance | path

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

/external/opencore/protocols/http_parcom/src/
Dstring_keyvalue_store.cpp40 …eyValueStore::storeNewKeyValueItem(const char *aItem, const int32 aItemLength, char *&aNewLocation) in storeNewKeyValueItem() argument
43 OSCL_TRY(err, aNewLocation = (char*)iVariableSizeMemPool->allocate(aItemLength + 1);); in storeNewKeyValueItem()
44 if (err || aNewLocation == NULL) return false; in storeNewKeyValueItem()
45 oscl_memcpy(aNewLocation, aItem, aItemLength); in storeNewKeyValueItem()
46 aNewLocation[aItemLength] = 0; in storeNewKeyValueItem()
Dstring_keyvalue_store.h279 bool storeNewKeyValueItem(const char *aItem, const int32 aItemLength, char *&aNewLocation);