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

1 2

  /external/webkit/Source/WebCore/fileapi/
FileReaderLoader.h 77 unsigned totalBytes() const { return m_totalBytes; }
  /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/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp 269 size_t totalBytes = n_elements * element_size;
270 if (n_elements > 1 && element_size && (totalBytes / element_size) != n_elements || (std::numeric_limits<size_t>::max() - sizeof(AllocAlignmentInteger) <= totalBytes))
273 totalBytes += sizeof(AllocAlignmentInteger);
274 void* result = malloc(totalBytes);
278 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 101 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/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.h 210 size_t totalBytes; // just an interesting statistic
  /external/webkit/Source/WebCore/platform/graphics/android/
MediaPlayerPrivateAndroid.h 80 virtual bool totalBytesKnown() const { return totalBytes() > 0; }
81 virtual unsigned totalBytes() const { return 0; }
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 328 unsigned MediaPlayerPrivatePhonon::totalBytes() const
MediaPlayerPrivateQt.cpp 371 unsigned MediaPlayerPrivateQt::totalBytes() const
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractPublicApiTest.java 125 int totalBytes = 0;
134 totalBytes = cursor.getInt(
140 numBytesReceivedSoFar + ", totalBytes: " + totalBytes);
141 if (totalBytes == 0) {
145 if (numBytesReceivedSoFar * 100 / totalBytes >= progress) {
154 numBytesReceivedSoFar + ", totalBytes: " + totalBytes);
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadAdapter.java 136 long totalBytes = mCursor.getLong(mTotalBytesColumnId);
138 if (totalBytes >= 0) {
139 sizeText = Formatter.formatFileSize(mContext, totalBytes);
  /external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp 409 unsigned WebMediaPlayerClientImpl::totalBytes() const
412 return static_cast<unsigned>(m_webMediaPlayer->totalBytes());
  /external/chromium/webkit/glue/
webmediaplayer_impl.cc 624 unsigned long long WebMediaPlayerImpl::totalBytes() const {
870 if (bytesLoaded() == totalBytes() &&
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 454 return totalBytes() * maxTime / dur;
457 unsigned MediaPlayerPrivate::totalBytes() const
MediaPlayerPrivateQuickTimeVisualContext.cpp 600 return totalBytes() * maxTime / dur;
603 unsigned MediaPlayerPrivateQuickTimeVisualContext::totalBytes() const
    [all...]
  /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/clang/lib/AST/
DeclBase.cpp 86 int totalBytes = 0;
89 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \
98 llvm::errs() << "Total bytes = " << totalBytes << "\n";
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
MediaPlayer.cpp 129 virtual unsigned totalBytes() const { return 0; }
  /frameworks/base/cmds/stagefright/
stagefright.cpp 309 int64_t totalBytes = 0;
350 totalBytes += buffer->range_length();
393 printf("avg. %.2f KB/sec\n", totalBytes / 1024 * 1E6 / delay);
395 printf("decoded a total of %lld bytes\n", totalBytes);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ManageCachePage.java 368 long totalBytes = mCacheStorageInfo.getTotalBytes();
374 if (totalBytes == 0) {
382 progressBar.setProgress((int) (usedBytes * PROGRESS_BAR_MAX / totalBytes));
384 (int) (expectedBytes * PROGRESS_BAR_MAX / totalBytes));
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.cpp 899 unsigned loaded = totalBytes() * maxTimeLoaded() / m_mediaDuration;
904 unsigned MediaPlayerPrivateGStreamer::totalBytes() const
915 LOG_VERBOSE(Media, "totalBytes %" G_GINT64_FORMAT, length);
948 LOG_VERBOSE(Media, "totalBytes %" G_GINT64_FORMAT, length);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 125 int totalBytes = rowBytes * m_currentHeight;
127 OwnArrayPtr<unsigned char> pixels = adoptArrayPtr(new unsigned char[totalBytes]);
131 readRenderingResults(pixels.get(), totalBytes);
134 for (int i = 0; i < totalBytes; i += 4) {
155 int totalBytes = 4 * m_currentWidth * m_currentHeight;
157 readRenderingResults(pixels, totalBytes);
160 for (int i = 0; i < totalBytes; i += 4)
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp     [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkPolicyManagerService.java 456 final long totalBytes = getTotalBytes(policy.template, start, end);
458 if (policy.isOverLimit(totalBytes)) {
460 enqueueNotification(policy, TYPE_LIMIT_SNOOZED, totalBytes);
462 enqueueNotification(policy, TYPE_LIMIT, totalBytes);
469 if (policy.warningBytes != WARNING_DISABLED && totalBytes >= policy.warningBytes) {
470 enqueueNotification(policy, TYPE_WARNING, totalBytes);
531 private void enqueueNotification(NetworkPolicy policy, int type, long totalBytes) {
586 final long overBytes = totalBytes - policy.limitBytes;
718 final long totalBytes = getTotalBytes(policy.template, start, end);
721 final boolean overLimit = policy.isOverLimit(totalBytes) && policy.lastSnooze < start
    [all...]

Completed in 736 milliseconds

1 2