Home
last modified time | relevance | path

Searched refs:mTotalTransferBytes (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/
DHTTPBase.cpp36 mTotalTransferBytes(0), in HTTPBase()
51 mTotalTransferBytes += numBytes; in addBandwidthMeasurement()
57 mTotalTransferBytes -= entry->mNumBytes; in addBandwidthMeasurement()
67 (mTotalTransferBytes * 8E3 / mTotalTransferTimeUs); in addBandwidthMeasurement()
82 if (mNumBandwidthHistoryItems < 2 || mTotalTransferBytes < 65536) { in estimateBandwidth()
86 *bandwidth_bps = ((double)mTotalTransferBytes * 8E6 / mTotalTransferTimeUs); in estimateBandwidth()
/frameworks/av/media/libstagefright/include/
DHTTPBase.h73 size_t mTotalTransferBytes; member
/frameworks/av/media/libstagefright/httplive/
DLiveSession.cpp87 size_t mTotalTransferBytes; member
97 mTotalTransferBytes(0) { in BandwidthEstimator()
110 mTotalTransferBytes += numBytes; in addBandwidthMeasurement()
135 mTotalTransferBytes -= it->mNumBytes; in addBandwidthMeasurement()
159 *bandwidthBps = ((double)mTotalTransferBytes * 8E6 / mTotalTransferTimeUs); in estimateBandwidth()