Home
last modified time | relevance | path

Searched refs:bookkeeping (Results 1 – 25 of 54) sorted by relevance

123

/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/populator/
DManifestFileGroupPopulator.java411 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/
DFileGroupUtil.java116 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/
DDownloadStateLogger.java118 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/
Dheapprofd-wire-protocol.md22 …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…
Dheapprofd-design.md14 …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…
Dcontinuous-integration.md43 - It does some other less-relevant bookkeeping.
/external/perfetto/src/profiling/memory/
DBUILD.gn273 "bookkeeping.cc",
274 "bookkeeping.h",
/external/starlark-go/doc/
Dimpl.md161 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/
DREADME.md50 "Core" is the pure c++17 tracing machinery that deals with bookkeeping,
/external/arm-trusted-firmware/docs/getting_started/
Dpsci-lib-integration-guide.rst34 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/
DGoApi_generated.txt124 reuse of a Builder. It also resets bookkeeping data.
DInternals.md136 that significantly reduces the amount of bookkeeping and simplifies the
/external/grpc-grpc/doc/
Denvironment_variables.md137 bookkeeping, error checking, and decision making
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/internal/
DFileGroupManager.java2667 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/
DIntStream.as79 * stream to keep bookkeeping objects around for a marker that is
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/internal/
DFileGroupManagerTest.java3878 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/
DWHATSNEW49 New in alpha3.1: Basically nothing, this release is just a bookkeeping
/external/mobile-data-download/proto/
Dmetadata.proto39 // 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/
Dmetadata.proto39 // bookkeeping.
52 optional DataFileGroupBookkeeping bookkeeping = 248813966; field
477 // This proto contains extra information about a file group for bookkeeping.
/external/rust/crates/gdbstub/docs/
Dtransition_guide.md172 …-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/
Dflatbuffers.lobster147 // Initializes bookkeeping for writing a new vector.
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DCommonTreeNodeStream.as46 * but just in bookkeeping, not tree walking etc...
/external/grpc-grpc/third_party/nanopb/generator/proto/google/protobuf/
Ddescriptor.proto452 // using lazy parsing on this field is worth the additional bookkeeping
/external/openthread/third_party/mbedtls/repo/tests/suites/
Dtest_suite_mps.function462 * the necessary bookkeeping under the hood.
/external/mbedtls/tests/suites/
Dtest_suite_mps.function462 * the necessary bookkeeping under the hood.

123