HomeSort by relevance Sort by last modified time
    Searched defs:totalBytes (Results 1 - 16 of 16) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferAdapter.java 102 long totalBytes = cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES));
112 mContext, totalBytes));
115 mContext, totalBytes));
  /external/chromium/third_party/zlib/contrib/minizip/
mztools.c 48 uLong totalBytes = 0;
124 totalBytes += dataSize;
279 *bytesRecovered = totalBytes;
  /external/webkit/JavaScriptCore/wtf/
FastMalloc.cpp 260 size_t totalBytes = n_elements * element_size;
261 if (n_elements > 1 && element_size && (totalBytes / element_size) != n_elements || (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= totalBytes))
264 totalBytes += sizeof(AllocAlignmentInteger);
265 void* result = malloc(totalBytes);
269 memset(result, 0, totalBytes);
    [all...]
  /external/zlib/contrib/minizip/
mztools.c 43 uLong totalBytes = 0;
119 totalBytes += dataSize;
274 *bytesRecovered = totalBytes;
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 77 public long 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);
  /external/webkit/WebCore/platform/graphics/android/
MediaPlayerPrivateAndroid.h 78 virtual bool totalBytesKnown() const { return totalBytes() > 0; }
79 virtual unsigned totalBytes() const { return 0; }
  /external/webkit/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 278 unsigned MediaPlayerPrivate::totalBytes() const
  /external/webkit/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp 307 unsigned WebMediaPlayerClientImpl::totalBytes() const
310 return static_cast<unsigned>(m_webMediaPlayer->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/platform/graphics/
MediaPlayer.cpp 104 virtual unsigned totalBytes() const { return 0; }
  /external/webkit/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 381 return totalBytes() * maxTime / dur;
384 unsigned MediaPlayerPrivate::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);
  /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/platform/graphics/gtk/
MediaPlayerPrivateGStreamer.cpp 648 return 1; // totalBytes() * maxTime / dur;
651 unsigned MediaPlayerPrivate::totalBytes() const
653 LOG_VERBOSE(Media, "totalBytes");
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp     [all...]

Completed in 250 milliseconds