Searched refs:ptbImgBuffer (Results 1 - 8 of 8) sorted by relevance
/base/update/updater/services/ptable_parse/ |
H A D | composite_ptable.cpp | 20 bool CompositePtable::ParsePartitionFromBuffer(uint8_t *ptbImgBuffer, const uint32_t imgBufSize) in ParsePartitionFromBuffer() argument 22 if (!CheckBuff(ptbImgBuffer, static_cast<const uint64_t>(imgBufSize))) { in ParsePartitionFromBuffer() 32 if (!iter->ParsePartitionFromBuffer(ptbImgBuffer, imgBufSize)) { in ParsePartitionFromBuffer()
|
H A D | composite_ptable.h | 28 bool ParsePartitionFromBuffer(uint8_t *ptbImgBuffer, const uint32_t imgBufSize) override;
|
H A D | emmc_ptable.h | 29 bool ParsePartitionFromBuffer(uint8_t *ptbImgBuffer, const uint32_t imgBufSize) override;
|
H A D | emmc_ptable.cpp | 114 bool EmmcPtable::ParsePartitionFromBuffer(uint8_t *ptbImgBuffer, const uint32_t imgBufSize) in ParsePartitionFromBuffer() argument 116 if (ptbImgBuffer == nullptr || imgBufSize < GPT_PARTITION_SIZE) { in ParsePartitionFromBuffer() 117 LOG(ERROR) << "ptbImgBuffer == NULL || imgBufSize < GPT_PARTITION_SIZE"; in ParsePartitionFromBuffer() 120 return UpdateCommInitializeGptPartition(ptbImgBuffer, imgBufSize); in ParsePartitionFromBuffer()
|
H A D | ufs_ptable.cpp | 243 bool UfsPtable::ParsePartitionFromBuffer(uint8_t *ptbImgBuffer, const uint32_t imgBufSize) in ParsePartitionFromBuffer() argument 245 if (ptbImgBuffer == nullptr) { in ParsePartitionFromBuffer() 263 uint8_t *lunStart = GetPtableImageUfsLunPmbrStart(ptbImgBuffer, i); in ParsePartitionFromBuffer() 264 uint8_t *gptHeaderStart = GetPtableImageUfsLunGptHeaderStart(ptbImgBuffer, i); in ParsePartitionFromBuffer() 281 GetPtableImageUfsLunEntryStart(ptbImgBuffer, i), GPT_ENTRYS_SIZE) != EOK) { in ParsePartitionFromBuffer()
|
H A D | ufs_ptable.h | 29 bool ParsePartitionFromBuffer(uint8_t *ptbImgBuffer, const uint32_t imgBufSize) override;
|
H A D | ptable.h | 61 virtual bool ParsePartitionFromBuffer(uint8_t *ptbImgBuffer, const uint32_t imgBufSize) = 0;
|
/base/update/updater/test/unittest/ptable_parse_test/ |
H A D | ptable_unittest.cpp | 31 bool ParsePartitionFromBuffer(uint8_t *ptbImgBuffer, const uint32_t imgBufSize) override
|
Completed in 6 milliseconds