Home
last modified time | relevance | path

Searched refs:completed (Results 1 – 25 of 68) sorted by relevance

123

/frameworks/opt/car/setupwizard/library/main/src/com/android/car/setupwizardlib/summary/
DDeferredAction.java26 public final boolean completed; field in DeferredAction
29 public DeferredAction(String deferredNotificationDescription, boolean completed, int priority) { in DeferredAction() argument
31 this.completed = completed; in DeferredAction()
DPartnerSummaryActionsCollector.java115 boolean completed, Bundle summaryStateBundle) { in buildSummaryAction() argument
152 SummaryActionState completeState = completed in buildSummaryAction()
171 private static DeferredAction buildDeferredAction(boolean completed, in buildDeferredAction() argument
186 return new DeferredAction(deferredNotificationDescription, completed, priority); in buildDeferredAction()
256 boolean completed = in getPartnerSummaryActions()
260 SummaryAction summaryAction = buildSummaryAction(completed, summaryActionBundle); in getPartnerSummaryActions()
300 boolean completed = in getPartnerDeferredActions()
308 DeferredAction deferredAction = buildDeferredAction(completed, in getPartnerDeferredActions()
/frameworks/base/tests/CompanionDeviceMultiDeviceTests/client/src/android/companion/multidevices/
DCallbackUtils.kt84 private val completed = CountDownLatch(1) constant
89 completed.countDown() in onResult()
94 completed.countDown() in onError()
98 if (!completed.await(CALLBACK_TIMEOUT_SEC, SECONDS)) { in waitForCompletion()
/frameworks/base/services/core/java/com/android/server/wm/
DRemoteDisplayChangeController.java174 final boolean completed = mCallbacks.isEmpty(); in continueDisplayChange()
175 if (completed) { in continueDisplayChange()
179 if (completed) { in continueDisplayChange()
/frameworks/base/apex/jobscheduler/service/aconfig/
Dapp_idle.aconfig7 description: "Postpone app idle check after boot completed"
/frameworks/base/services/tests/InputMethodSystemServerTests/src/com/android/inputmethodservice/
DInputMethodServiceTest.java728 boolean completed = signal.await(TIMEOUT_IN_SECONDS, TimeUnit.SECONDS); in verifyInputViewStatusInternal()
729 if (expected && !completed) { in verifyInputViewStatusInternal()
732 } else if (!expected && completed) { in verifyInputViewStatusInternal()
780 boolean completed = signal.await(TIMEOUT_IN_SECONDS, TimeUnit.SECONDS); in verifyFullscreenMode()
781 if (expected && !completed) { in verifyFullscreenMode()
783 } else if (!expected && completed) { in verifyFullscreenMode()
/frameworks/compile/slang/tests/P_reduce_general_result/
DScriptC_reduce_general_result.java.expect114 // until the asynchronously-launched operation has completed.
155 // until the asynchronously-launched operation has completed.
191 // until the asynchronously-launched operation has completed.
232 // until the asynchronously-launched operation has completed.
273 // until the asynchronously-launched operation has completed.
309 // until the asynchronously-launched operation has completed.
350 // until the asynchronously-launched operation has completed.
391 // until the asynchronously-launched operation has completed.
427 // until the asynchronously-launched operation has completed.
468 // until the asynchronously-launched operation has completed.
[all …]
/frameworks/rs/toolkit/
DREADME.txt8 has been completed. This is a staging area for the reviews.
/frameworks/base/docs/html/
D__DEPRECATED__DO_NOT_EDIT__.txt4 of 12/2016. Migration of content was completed on 10/16/2016.
/frameworks/base/docs/
D__DEPRECATED__DO_NOT_EDIT__.txt4 of 12/2016. Migration of content was completed on 10/16/2016.
/frameworks/base/services/tests/InputMethodSystemServerTests/src/com/android/server/inputmethod/
DInputMethodBindingControllerTest.java171 boolean completed = mCountDownLatch.await(TIMEOUT_IN_SECONDS, TimeUnit.SECONDS); in testBindCurrentMethodWithMainConnection()
172 if (!completed) { in testBindCurrentMethodWithMainConnection()
/frameworks/av/media/codec2/hal/client/
DGraphicsTracker.cpp767 bool *completed, bool *updateDequeue, in requestDeallocate() argument
791 *completed = false; in requestDeallocate()
794 *completed = true; in requestDeallocate()
822 bool completed; in deallocate() local
827 c2_status_t res = requestDeallocate(bid, fence, &completed, &updateDequeue, in deallocate()
832 if (completed == true) { in deallocate()
/frameworks/compile/slang/tests/P_reduce_general_examples_halter/
DScriptC_reduce_general_examples_halter.java.expect50 // until the asynchronously-launched operation has completed.
86 // until the asynchronously-launched operation has completed.
/frameworks/base/packages/SystemUI/docs/
Dphysics-animation-layout.md44 …translationY animations, and calls the provided callbacks only when both animations have completed.
52 …ction to call when the animations for every property (including chained animations) have completed.
72 …`, where the endAction is called when both translationX and translationY animations have completed.
73 …Action)`, which starts all of the animations and calls the end action when they have all completed.
/frameworks/base/services/core/java/com/android/server/
DEventLogTags.logtags21 # This is logged when the screen on broadcast has completed
23 # This is logged when the screen broadcast has completed
25 # This is logged when the screen on broadcast has completed
/frameworks/proto_logging/stats/atoms/wearpas/
Dwearpas_extension_atoms.proto132 * Total number of new anomalies detected during the just-completed operation
137 * Total anomalies active at the end of the just-completed operation
/frameworks/opt/telephony/proto/src/
Dpin_storage.proto32 // unattended reboot is completed.
/frameworks/compile/slang/tests/P_reduce_general_examples_explicit/
DScriptC_reduce_general_examples_explicit.java.expect54 // until the asynchronously-launched operation has completed.
95 // until the asynchronously-launched operation has completed.
131 // until the asynchronously-launched operation has completed.
/frameworks/native/opengl/specs/
DEGL_ANDROID_get_frame_timestamps.txt181 application's rendering to the surface was completed.
204 buffer have been submitted, but not necessarily completed.
206 purpose of display/composition were completed for this frame.
/frameworks/native/cmds/installd/
Ddexopt.h129 /* out */ bool* completed = nullptr);
Ddexopt.cpp1792 /* out */ bool* completed) { in dexopt() argument
1800 if (completed == nullptr) { in dexopt()
1801 completed = &local_completed; in dexopt()
1803 *completed = true; in dexopt()
1805 *completed = false; in dexopt()
1847 *completed = true; in dexopt()
1852 *completed = false; in dexopt()
1974 *completed = false; in dexopt()
2002 *completed = false; in dexopt()
2049 *completed = true; in dexopt()
/frameworks/base/core/tests/coretests/src/android/provider/
DDeviceConfigTest.java806 final CompletableFuture<Boolean> completed = new CompletableFuture<>(); in onPropertiesChangedListener_setPropertyCallback() local
810 completed.complete(true); in onPropertiesChangedListener_setPropertyCallback()
819 assertThat(completed.get( in onPropertiesChangedListener_setPropertyCallback()
845 final CompletableFuture<Boolean> completed = new CompletableFuture<>(); in onPropertiesChangedListener_setPropertiesCallback() local
849 completed.complete(true); in onPropertiesChangedListener_setPropertiesCallback()
858 assertThat(completed.get( in onPropertiesChangedListener_setPropertiesCallback()
/frameworks/compile/slang/tests/P_reduce_general_examples_backward/
DScriptC_reduce_general_examples_backward.java.expect56 // until the asynchronously-launched operation has completed.
97 // until the asynchronously-launched operation has completed.
133 // until the asynchronously-launched operation has completed.
169 // until the asynchronously-launched operation has completed.
/frameworks/compile/slang/tests/P_reduce_general_examples/
DScriptC_reduce_general_examples.java.expect56 // until the asynchronously-launched operation has completed.
97 // until the asynchronously-launched operation has completed.
133 // until the asynchronously-launched operation has completed.
169 // until the asynchronously-launched operation has completed.
/frameworks/av/media/module/bufferpool/1.0/
DAccessorImpl.cpp294 auto completed = mCompletedTransactions.find( in handleTransferTo() local
296 if (completed != mCompletedTransactions.end()) { in handleTransferTo()
298 mCompletedTransactions.erase(completed); in handleTransferTo()

123