Lines Matching refs:result
115 OH_UdmfRecord** result = new (std::nothrow) OH_UdmfRecord* [size] { nullptr };
116 if (result == nullptr) {
120 result[i] = new (std::nothrow) OH_UdmfRecord;
121 if (result[i] == nullptr) {
122 DestroyUnifiedRecordArray(result, size);
125 result[i]->record_ = records[i];
127 unifiedData->records = result;
506 auto result = GetValueFromUint8Array(record, typeId, value);
507 if (result != UDMF_E_OK) {
508 LOG_ERROR(UDMF_CAPI, "Get value from valueType failed. typeId: %{public}s, result: %{public}d", typeId, result);
509 return result;