Searched defs:blobSize (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/camera/
H A DCameraMetadata.cpp466 // arg0 = blobSize (int32)
473 const size_t blobSize = static_cast<size_t>(blobSizeTmp); local
477 if (blobSize == 0) {
482 if (blobSize <= alignment) {
483 ALOGE("%s: metadata blob is malformed, blobSize(%zu) should be larger than alignment(%zu)",
484 __FUNCTION__, blobSize, alignment);
488 const size_t metadataSize = blobSize - alignment;
496 if ((err = data.readBlob(blobSize, &blob)) != OK) {
499 __FUNCTION__, blobSize, err, strerror(-err));
514 __FUNCTION__, blobSize, alignmen
581 const size_t blobSize = metadataSize + alignment; local
[all...]

Completed in 137 milliseconds