/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/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 | 168 uint32_t totalBytes = writer->bytesWritten(); 170 SkAutoMalloc readStorage(totalBytes); 174 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/ |
PoolAlloc.h | 210 size_t totalBytes; // just an interesting statistic
|
/external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/ |
OGGLoader.java | 176 int totalBytes = numSamples * streamHdr.getChannels() * 2;
181 // System.out.println("Bytes Calculated: " + totalBytes);
186 return Math.min(totalBytes, dataBytesTotal);
198 int totalBytes = getOggTotalBytes(Integer.MAX_VALUE);
200 return (float)totalBytes / bytesPerSec;
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
AbstractPublicApiTest.java | 167 int totalBytes = 0; 176 totalBytes = cursor.getInt( 182 numBytesReceivedSoFar + ", totalBytes: " + totalBytes); 183 if (totalBytes == 0) { 187 if (numBytesReceivedSoFar * 100 / totalBytes >= progress) { 196 numBytesReceivedSoFar + ", totalBytes: " + totalBytes);
|
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/ |
DownloadAdapter.java | 143 long totalBytes = mCursor.getLong(mTotalBytesColumnId); 145 if (totalBytes >= 0) { 146 sizeText = Formatter.formatFileSize(mContext, totalBytes);
|
/external/chromium/webkit/glue/ |
webmediaplayer_impl.cc | 624 unsigned long long WebMediaPlayerImpl::totalBytes() const { 870 if (bytesLoaded() == 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 | 114 int totalBytes = 0; 117 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \ 126 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 %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/chromium_org/chrome/browser/resources/file_manager/background/js/ |
file_operation_manager.js | 361 event.totalBytes = task.totalBytes; 396 this.totalBytes = 0; 479 totalBytes: this.totalBytes, 565 // Fill totalBytes. 566 this.totalBytes = 0; 569 this.totalBytes += this.processingEntries[i][url].size; 889 this.totalBytes = 0; 891 this.totalBytes += resolvedEntryMap[url].size [all...] |
/frameworks/base/services/java/com/android/server/net/ |
NetworkPolicyManagerService.java | 643 final long totalBytes = getTotalBytes(policy.template, start, end); 645 if (policy.isOverLimit(totalBytes)) { 647 enqueueNotification(policy, TYPE_LIMIT_SNOOZED, totalBytes); 649 enqueueNotification(policy, TYPE_LIMIT, totalBytes); 656 if (policy.isOverWarning(totalBytes) && policy.lastWarningSnooze < start) { 657 enqueueNotification(policy, TYPE_WARNING, totalBytes); 726 private void enqueueNotification(NetworkPolicy policy, int type, long totalBytes) { [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DataUsageSummary.java | [all...] |
/external/zxing/core/ |
core.jar | |