/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/populator/ |
D | ManifestFileGroupPopulator.java | 411 ManifestFileBookkeeping bookkeeping = bookkeepingRef.get(); in refreshFileGroups() 413 if (bookkeeping.getStatus() == Status.COMMITTED) { in refreshFileGroups() 426 if (bookkeeping.getStatus() == Status.DOWNLOADED) { in refreshFileGroups() 452 ManifestFileBookkeeping bookkeeping = bookkeepingRef.get(); in refreshFileGroups() 453 bookkeepingRef.set(bookkeeping.toBuilder().setStatus(Status.PENDING).build()); in refreshFileGroups() 510 ManifestFileBookkeeping bookkeeping = bookkeepingRef.get(); 511 bookkeepingRef.set(bookkeeping.toBuilder().setStatus(Status.COMMITTED).build()); 560 ManifestFileBookkeeping bookkeeping = bookkeepingRef.get(); 568 .setCachedETagOptional(getCachedETag(bookkeeping)) 581 boolean urlUpdated = !urlToDownload.equals(bookkeeping.getManifestFileUrl()); [all …]
|
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/internal/util/ |
D | FileGroupUtil.java | 116 DataFileGroupBookkeeping bookkeeping = in setStaleExpirationDate() local 118 dataFileGroup = dataFileGroup.toBuilder().setBookkeeping(bookkeeping).build(); in setStaleExpirationDate() 124 DataFileGroupBookkeeping bookkeeping = in setGroupNewFilesReceivedTimestamp() local 128 dataFileGroup = dataFileGroup.toBuilder().setBookkeeping(bookkeeping).build(); in setGroupNewFilesReceivedTimestamp() 135 DataFileGroupBookkeeping bookkeeping = in setDownloadedTimestampInMillis() local 139 dataFileGroup = dataFileGroup.toBuilder().setBookkeeping(bookkeeping).build(); in setDownloadedTimestampInMillis() 146 DataFileGroupBookkeeping bookkeeping = in setDownloadStartedTimestampInMillis() local 150 dataFileGroup = dataFileGroup.toBuilder().setBookkeeping(bookkeeping).build(); in setDownloadStartedTimestampInMillis()
|
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/internal/logging/ |
D | DownloadStateLogger.java | 118 DataFileGroupBookkeeping bookkeeping = fileGroup.getBookkeeping(); in logDownloadLatency() local 119 long newFilesReceivedTimestamp = bookkeeping.getGroupNewFilesReceivedTimestamp(); in logDownloadLatency() 120 long downloadStartedTimestamp = bookkeeping.getGroupDownloadStartedTimestampInMillis(); in logDownloadLatency() 121 long downloadCompleteTimestamp = bookkeeping.getGroupDownloadedTimestampInMillis(); in logDownloadLatency()
|
/external/perfetto/docs/design-docs/ |
D | heapprofd-wire-protocol.md | 22 …ovided by the client and posts a task to the _Main Thread_ to apply to bookkeeping. This is repeat… 56 …+ a vector of frames). It then posts a task to the _Main Thread_ to apply this to the bookkeeping. 65 … handled the same way. The _Main Thread_ dumps the relevant processes' bookkeeping and flushes the… 67 …ing and posting tasks for bookkeeping to be applied. The bookkeeping will be applied after the dum… 92 …e potential of enqueueing a lot of bookkeeping work for a pathologically behaving process. As appl…
|
D | heapprofd-design.md | 14 …r stack unwinding and symbolization. This information is used to build bookkeeping tables to track… 32 **Negligible in-process memory overhead:** the system must not hold bookkeeping data in the process… 69 …)/posix_memalign()` call, the client library will perform some minimal bookkeeping. If the samplin… 79 …easier. No synchronization is needed at all in the main thread, as the bookkeeping data will only … 117 **Crash-proofness:** Crashing bugs in the bookkeeping logic or libunwindstack do not result in user… 123 **Compression:** bookkeeping of unwound frames can be more efficient if it is shared between multip…
|
D | continuous-integration.md | 43 - It does some other less-relevant bookkeeping.
|
/external/perfetto/src/profiling/memory/ |
D | BUILD.gn | 273 "bookkeeping.cc", 274 "bookkeeping.h",
|
/external/starlark-go/doc/ |
D | impl.md | 161 extra bookkeeping so that modification of the underlying collection 175 the counter bookkeeping is unnecessary. (Consequently, iterator 176 bookkeeping is needed only while objects are still mutable, before
|
/external/perfetto/src/tracing/ |
D | README.md | 50 "Core" is the pure c++17 tracing machinery that deals with bookkeeping,
|
/external/arm-trusted-firmware/docs/getting_started/ |
D | psci-lib-integration-guide.rst | 34 do bookkeeping for the EL3 Runtime Software during power management. 234 the EL3 Runtime Software may want to perform some bookkeeping during power 454 need to perform some bookkeeping, and PSCI library provides 459 Typical bookkeeping during PSCI power management calls include save/restore
|
/external/flatbuffers/docs/source/ |
D | GoApi_generated.txt | 124 reuse of a Builder. It also resets bookkeeping data.
|
D | Internals.md | 136 that significantly reduces the amount of bookkeeping and simplifies the
|
/external/grpc-grpc/doc/ |
D | environment_variables.md | 137 bookkeeping, error checking, and decision making
|
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/internal/ |
D | FileGroupManager.java | 2667 DataFileGroupBookkeeping bookkeeping = pendingGroup.getBookkeeping(); 2668 int downloadStartedCount = bookkeeping.getDownloadStartedCount() + 1; 2671 .setBookkeeping(bookkeeping.toBuilder().setDownloadStartedCount(downloadStartedCount)) 2675 boolean firstDownloadAttempt = !bookkeeping.hasGroupDownloadStartedTimestampInMillis();
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | IntStream.as | 79 * stream to keep bookkeeping objects around for a marker that is
|
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/internal/ |
D | FileGroupManagerTest.java | 3878 DataFileGroupBookkeeping bookkeeping = readDownloadedFileGroup(testKey).getBookkeeping(); in testDownloadFileGroup_downloadStartedTimestampAbsent() local 3879 assertThat(bookkeeping.hasGroupDownloadStartedTimestampInMillis()).isTrue(); in testDownloadFileGroup_downloadStartedTimestampAbsent() 3881 assertThat(bookkeeping.getGroupDownloadStartedTimestampInMillis()) in testDownloadFileGroup_downloadStartedTimestampAbsent() 3884 assertThat(bookkeeping.getDownloadStartedCount()).isEqualTo(1); in testDownloadFileGroup_downloadStartedTimestampAbsent() 3921 DataFileGroupBookkeeping bookkeeping = readDownloadedFileGroup(testKey).getBookkeeping(); in testDownloadFileGroup_downloadStartedTimestampPresent() local 3922 assertThat(bookkeeping.hasGroupDownloadStartedTimestampInMillis()).isTrue(); in testDownloadFileGroup_downloadStartedTimestampPresent() 3924 assertThat(bookkeeping.getGroupDownloadStartedTimestampInMillis()).isEqualTo(123456); in testDownloadFileGroup_downloadStartedTimestampPresent() 3926 assertThat(bookkeeping.getDownloadStartedCount()).isEqualTo(3); in testDownloadFileGroup_downloadStartedTimestampPresent() 3977 DataFileGroupBookkeeping bookkeeping = fileGroupCaptor.getValue().getBookkeeping(); in testDownloadFileGroup_updateBookkeepingOnDownloadFailed() local 3978 assertThat(bookkeeping.hasGroupDownloadStartedTimestampInMillis()).isTrue(); in testDownloadFileGroup_updateBookkeepingOnDownloadFailed() [all …]
|
/external/libcups/vcnet/regex/ |
D | WHATSNEW | 49 New in alpha3.1: Basically nothing, this release is just a bookkeeping
|
/external/mobile-data-download/proto/ |
D | metadata.proto | 39 // bookkeeping. 52 optional DataFileGroupBookkeeping bookkeeping = 248813966; field 477 // This proto contains extra information about a file group for bookkeeping.
|
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/internal/proto/ |
D | metadata.proto | 39 // bookkeeping. 52 optional DataFileGroupBookkeeping bookkeeping = 248813966; field 477 // This proto contains extra information about a file group for bookkeeping.
|
/external/rust/crates/gdbstub/docs/ |
D | transition_guide.md | 172 …-levels of the `gdbstub` API, with the `resume` API serving more of a "bookkeeping" purpose, recor… 178 …d just a small bit of code in the target's `resume` method to perform "bookkeeping" regarding how …
|
/external/flatbuffers/lobster/ |
D | flatbuffers.lobster | 147 // Initializes bookkeeping for writing a new vector.
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | CommonTreeNodeStream.as | 46 * but just in bookkeeping, not tree walking etc...
|
/external/grpc-grpc/third_party/nanopb/generator/proto/google/protobuf/ |
D | descriptor.proto | 452 // using lazy parsing on this field is worth the additional bookkeeping
|
/external/openthread/third_party/mbedtls/repo/tests/suites/ |
D | test_suite_mps.function | 462 * the necessary bookkeeping under the hood.
|
/external/mbedtls/tests/suites/ |
D | test_suite_mps.function | 462 * the necessary bookkeeping under the hood.
|