HomeSort by relevance Sort by last modified time
    Searched defs:totalBytes (Results 1 - 22 of 22) 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_org/third_party/WebKit/Source/core/fileapi/
FileReaderLoader.h 94 long long totalBytes() const { return m_totalBytes; }
  /external/chromium_org/third_party/skia/tests/
Writer32Test.cpp 166 uint32_t totalBytes = writer->bytesWritten();
168 SkAutoMalloc readStorage(totalBytes);
172 reader.setMemory(readStorage.get(), totalBytes);
  /external/chromium_org/third_party/zlib/contrib/minizip/
mztools.c 43 uLong totalBytes = 0;
119 totalBytes += dataSize;
274 *bytesRecovered = totalBytes;
  /external/guava/guava-tests/test/com/google/common/hash/
HashCodesTest.java 102 int totalBytes = hashCode.bits() / 8;
104 for (int bytes = 0; bytes < totalBytes; bytes++) {
  /external/skia/tests/
Writer32Test.cpp 166 uint32_t totalBytes = writer->bytesWritten();
168 SkAutoMalloc readStorage(totalBytes);
172 reader.setMemory(readStorage.get(), totalBytes);
  /external/zlib/src/contrib/minizip/
mztools.c 43 uLong totalBytes = 0;
129 totalBytes += dataSize;
284 *bytesRecovered = totalBytes;
  /external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.h 210 size_t totalBytes; // just an interesting statistic
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
unit_test.cc 757 int totalBytes = 0;
793 totalBytes += frameLength;
799 (totalBytes / frames * _inst.maxFramerate * 8)/1000;
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
generic_codec_test.cc 286 float totalBytes, actualBitrate;
318 totalBytes = 0;
342 totalBytesOneSec = _encodeCompleteCallback->EncodedBytes();//totalBytes;
351 totalBytes = _encodeCompleteCallback->EncodedBytes();
352 actualBitrate = (float)(8.0/1000)*(totalBytes / (_frameCnt / _frameRate));
  /frameworks/base/core/java/android/bluetooth/le/
BluetoothLeAdvertiser.java 119 if (totalBytes(advertiseData) > MAX_ADVERTISING_DATA_BYTES ||
120 totalBytes(scanResponse) > MAX_ADVERTISING_DATA_BYTES) {
173 private int totalBytes(AdvertiseData data) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
MobileDataController.java 148 final long totalBytes = entry.rxBytes + entry.txBytes;
150 usage.usageLevel = totalBytes;
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractPublicApiTest.java 174 int totalBytes = 0;
183 totalBytes = cursor.getInt(
189 numBytesReceivedSoFar + ", totalBytes: " + totalBytes);
190 if (totalBytes == 0) {
194 if (numBytesReceivedSoFar * 100 / totalBytes >= progress) {
203 numBytesReceivedSoFar + ", totalBytes: " + totalBytes);
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 79 private long totalBytes;
112 totalBytes = 0;
130 totalBytes = in.readLong();
143 out.writeLong(totalBytes);
158 totalBytes = total(rxBytes) + total(txBytes);
173 totalBytes = total(rxBytes) + total(txBytes);
233 return totalBytes;
343 totalBytes += entry.rxBytes + entry.txBytes;
463 // TODO: subtract removed values from 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/clang/lib/AST/
DeclBase.cpp 120 int totalBytes = 0;
123 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \
132 llvm::errs() << "Total bytes = " << totalBytes << "\n";
    [all...]
  /frameworks/av/cmds/stagefright/
stagefright.cpp 305 int64_t totalBytes = 0;
346 totalBytes += buffer->range_length();
389 printf("avg. %.2f KB/sec\n", totalBytes / 1024 * 1E6 / delay);
391 printf("decoded a total of %" PRId64 " bytes\n", totalBytes);
    [all...]
  /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));
  /frameworks/base/services/core/java/com/android/server/net/
NetworkPolicyManagerService.java 703 final long totalBytes = getTotalBytes(policy.template, start, end);
705 if (policy.isOverLimit(totalBytes)) {
707 enqueueNotification(policy, TYPE_LIMIT_SNOOZED, totalBytes);
709 enqueueNotification(policy, TYPE_LIMIT, totalBytes);
716 if (policy.isOverWarning(totalBytes) && policy.lastWarningSnooze < start) {
717 enqueueNotification(policy, TYPE_WARNING, totalBytes);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DataUsageSummary.java     [all...]
  /external/zxing/core/
core.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 647 milliseconds