HomeSort by relevance Sort by last modified time
    Searched refs:totalBytes (Results 1 - 25 of 33) sorted by null

1 2

  /external/webkit/WebCore/platform/graphics/android/
MediaPlayerPrivateAndroid.h 78 virtual bool totalBytesKnown() const { return totalBytes() > 0; }
79 virtual unsigned totalBytes() const { return 0; }
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppShareInfo.java 71 int totalBytes, int currentBytes, int timestamp, boolean mediaScanned) {
82 mTotalBytes = totalBytes;
BluetoothOppTransferAdapter.java 102 long totalBytes = cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES));
112 mContext, totalBytes));
115 mContext, totalBytes));
BluetoothOppUtility.java 238 public static String formatProgressText(long totalBytes, long currentBytes) {
239 if (totalBytes <= 0) {
242 long progress = currentBytes * 100 / totalBytes;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/
LoopbackExperiment.java 157 int totalBytes = mSamples * AudioQualityVerifierActivity.BYTES_PER_SAMPLE;
158 Log.i(TAG, "Recording " + totalBytes + " bytes");
161 while (position < totalBytes && mProceed) {
162 bytes = mRecord.read(mBuffer, position, totalBytes - position);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotification.java 78 void addItem(String title, long currentBytes, long totalBytes) {
80 if (totalBytes <= 0 || mTotalTotal == -1) {
83 mTotalTotal += totalBytes;
273 private String getDownloadingText(long totalBytes, long currentBytes) {
274 if (totalBytes <= 0) {
277 long progress = currentBytes * 100 / totalBytes;
  /external/webkit/WebCore/platform/graphics/wince/
MediaPlayerPrivateWince.h 74 unsigned totalBytes() const;
  /external/webkit/WebKit/chromium/public/
WebMediaPlayer.h 126 virtual unsigned long long totalBytes() const = 0;
  /external/webkit/WebKit/chromium/src/
WebMediaPlayerClientImpl.h 91 virtual unsigned totalBytes() const;
WebMediaPlayerClientImpl.cpp 307 unsigned WebMediaPlayerClientImpl::totalBytes() const
310 return static_cast<unsigned>(m_webMediaPlayer->totalBytes());
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 77 public long totalBytes;
  /external/webkit/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.h 108 unsigned totalBytes() const;
  /external/chromium/third_party/zlib/contrib/minizip/
mztools.c 48 uLong totalBytes = 0;
124 totalBytes += dataSize;
279 *bytesRecovered = totalBytes;
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginStream.mm 510 int32 totalBytes = [m_deliveryData.get() length];
513 while (totalBytesDelivered < totalBytes) {
527 deliveryBytes = min(deliveryBytes, totalBytes - totalBytesDelivered);
544 if (totalBytesDelivered < totalBytes) {
545 NSMutableData *newDeliveryData = [[NSMutableData alloc] initWithCapacity:totalBytes - totalBytesDelivered];
546 [newDeliveryData appendBytes:(char *)[m_deliveryData.get() bytes] + totalBytesDelivered length:totalBytes - totalBytesDelivered];
  /external/zlib/contrib/minizip/
mztools.c 43 uLong totalBytes = 0;
119 totalBytes += dataSize;
274 *bytesRecovered = totalBytes;
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadAdapter.java 138 long totalBytes = mCursor.getLong(mTotalBytesColumnId);
140 if (totalBytes >= 0) {
141 sizeText = Formatter.formatFileSize(mContext, totalBytes);
  /external/webkit/WebCore/plugins/
PluginStream.cpp 339 int32 totalBytes = m_deliveryData->size();
344 while (totalBytesDelivered < totalBytes) {
361 deliveryBytes = min(deliveryBytes, totalBytes - totalBytesDelivered);
381 if (totalBytesDelivered < totalBytes) {
382 int remainingBytes = totalBytes - totalBytesDelivered;
  /dalvik/hit/src/com/android/hit/
HprofParser.java 536 int totalBytes = numElements * mIdSize;
537 byte[] data = new byte[totalBytes];
549 return mIdSize + 4 + 4 + mIdSize + totalBytes;
559 int totalBytes = numElements * size;
560 byte[] data = new byte[totalBytes];
570 return mIdSize + 4 + 4 + 1 + totalBytes;
  /external/webkit/WebCore/loader/
Cache.h 111 // - totalBytes: The maximum number of bytes that the cache should consume overall.
112 void setCapacities(unsigned minDeadBytes, unsigned maxDeadBytes, unsigned totalBytes);
Cache.cpp 391 void Cache::setCapacities(unsigned minDeadBytes, unsigned maxDeadBytes, unsigned totalBytes)
394 ASSERT(maxDeadBytes <= totalBytes);
397 m_capacity = totalBytes;
  /external/webkit/WebCore/platform/graphics/gtk/
MediaPlayerPrivateGStreamer.h 95 unsigned totalBytes() const;
  /external/webkit/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.h 113 unsigned totalBytes() const;
  /external/webkit/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.h 107 unsigned totalBytes() const;
  /frameworks/base/cmds/stagefright/
stagefright.cpp 202 int64_t totalBytes = 0;
233 totalBytes += buffer->range_length();
272 printf("avg. %.2f KB/sec\n", totalBytes / 1024 * 1E6 / delay);
274 printf("decoded a total of %lld bytes\n", totalBytes);
  /external/webkit/WebKit/qt/Api/
qwebpage.h 217 quint64 totalBytes() const;

Completed in 458 milliseconds

1 2