Home
last modified time | relevance | path

Searched refs:this_len (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/av/media/mtp/
H A DMtpFfsHandle.cpp139 size_t this_len = std::min(len - total, static_cast<size_t>(AIO_BUF_LEN * AIO_BUFS_MAX)); in doAsync() local
140 int num_bufs = this_len / AIO_BUF_LEN + (this_len % AIO_BUF_LEN == 0 ? 0 : 1); in doAsync()
144 int ret = iobufSubmit(&mIobuf[0], read ? mBulkOut : mBulkIn, this_len, read); in doAsync()
149 if (static_cast<size_t>(ret) < this_len) break; in doAsync()
/aosp12/system/core/fastboot/device/
H A Dflashing.cpp81 int this_len = std::min(static_cast<size_t>(1048576UL * 8), len - ret); in FlashRawDataChunk() local
82 int this_ret = write(fd, data, this_len); in FlashRawDataChunk()