Lines Matching refs:blobSize
466 // arg0 = blobSize (int32)
473 const size_t blobSize = static_cast<size_t>(blobSizeTmp);
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, alignment);
553 * | arg0: blobSize |
555 * |--------------------------------------------|<--Skip the rest if blobSize == 0.
568 // arg0 = blobSize (int32)
570 // Write zero blobSize for null metadata.
581 const size_t blobSize = metadataSize + alignment;
582 res = data.writeInt32(static_cast<int32_t>(blobSize));
613 res = data.writeBlob(blobSize, false, &blob);