Lines Matching refs:entry
430 const unsigned char* entry, unsigned int count)
432 if (!IsUnifiedRecordValid(record) || typeId == nullptr || entry == nullptr || count == 0 ||
436 std::vector<uint8_t> recordValue(entry, entry + count);
484 int OH_UdmfRecord_GetGeneralEntry(OH_UdmfRecord* record, const char* typeId, unsigned char** entry, unsigned int* count)
486 if (!IsUnifiedRecordValid(record) || typeId == nullptr || entry == nullptr || count == nullptr) {
496 *entry = record->recordData;
512 *entry = record->recordData;
620 unsigned char *entry;
622 int ret = OH_UdsArrayBuffer_GetData(buffer, &entry, &size);
627 return OH_UdmfRecord_AddGeneralEntry(record, type, entry, size);
702 unsigned char *entry;
703 int ret = OH_UdmfRecord_GetGeneralEntry(record, type, &entry, &size);
708 return OH_UdsArrayBuffer_SetData(buffer, entry, size);