Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Ddata_value.cpp147 dataValue.value_.blobPtr = nullptr; in operator =()
185 value_.blobPtr = blob; in Set()
208 if (dataValue.value_.blobPtr->GetSize() != value_.blobPtr->GetSize()) { in operator ==()
212 if (dataValue.value_.blobPtr->GetData()[i] != value_.blobPtr->GetData()[i]) { in operator ==()
256 return outVal->WriteBlob(value_.blobPtr->GetData(), value_.blobPtr->GetSize()); in GetBlob()
266 if (value_.blobPtr == nullptr) { in SetBlob()
282 return outVal.WriteBlob(value_.blobPtr->GetData(), value_.blobPtr->GetSize()); in GetBlob()
294 if (value_.blobPtr == nullptr) { in SetText()
307 uint32_t len = value_.blobPtr->GetSize(); in GetText()
327 delete value_.blobPtr; in ResetValue()
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Ddata_value.h84 Blob* blobPtr; member