/packages/services/Car/evs/app/ |
D | ConfigManager.cpp | 54 bool complete = true; in initialize() local 79 complete &= readChildNodeAsFloat("car", car, "width", &mCarWidth); in initialize() 80 complete &= readChildNodeAsFloat("car", car, "wheelBase", &mWheelBase); in initialize() 81 complete &= readChildNodeAsFloat("car", car, "frontExtent", &mFrontExtent); in initialize() 82 complete &= readChildNodeAsFloat("car", car, "rearExtent", &mRearExtent); in initialize() 95 … complete &= readChildNodeAsFloat("display", displayNode, "frontRange", &mFrontRangeInCarSpace); in initialize() 96 … complete &= readChildNodeAsFloat("display", displayNode, "rearRange", &mRearRangeInCarSpace); in initialize() 109 … complete &= readChildNodeAsFloat("graphic", graphicNode, "frontPixel", &mCarGraphicFrontPixel); in initialize() 110 … complete &= readChildNodeAsFloat("display", graphicNode, "rearPixel", &mCarGraphicRearPixel); in initialize() 187 return complete; in initialize()
|
/packages/services/Telecomm/src/com/android/server/telecom/callfiltering/ |
D | CallScreeningServiceFilter.java | 73 mResultFuture.complete(mPriorStageResult); in allowCall() 89 mResultFuture.complete(new CallFilteringResult.Builder() in disallowCall() 103 mResultFuture.complete(mPriorStageResult); in disallowCall() 118 mResultFuture.complete(new CallFilteringResult.Builder() in silenceCall() 128 mResultFuture.complete(mPriorStageResult); in silenceCall() 149 mResultFuture.complete(new CallFilteringResult.Builder() in screenCallFurther() 159 mResultFuture.complete(mPriorStageResult); in screenCallFurther() 186 mResultFuture.complete(mPriorStageResult); in onServiceConnected() 193 mResultFuture.complete(mPriorStageResult); in onServiceDisconnected() 199 mResultFuture.complete(mPriorStageResult); in onBindingDied() [all …]
|
D | DirectToVoicemailFilter.java | 51 resultFuture.complete(new CallFilteringResult.Builder() in startFilterLookup() 70 resultFuture.complete(IncomingCallFilterGraph.DEFAULT_RESULT); in startFilterLookup()
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
D | BluetoothPeripheralHandover.java | 213 complete(false); in nextStepInit() 247 complete(false); in nextStepInit() 305 complete(false); in nextStepDisconnect() 317 complete(false); in nextStepDisconnect() 425 complete(true); in nextStepConnect() 428 complete(false); in nextStepConnect() 440 complete(true); in nextStepConnect() 443 complete(false); in nextStepConnect() 458 complete(false); in startBonding() 462 complete(false); in startBonding() [all …]
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | RingerTest.java | 161 mFuture.complete(false); // not using audio coupled haptics in testNoActionInTheaterMode() 175 mFuture.complete(false); // not using audio coupled haptics in testNoActionWithExternalRinger() 193 mFuture.complete(false); // not using audio coupled haptics in testNoActionWhenDialerRings() 209 mFuture.complete(false); // not using audio coupled haptics in testAudioFocusStillAcquiredWhenDialerRings() 226 mFuture.complete(false); // not using audio coupled haptics in testNoActionWhenCallIsSelfManaged() 242 mFuture.complete(false); // not using audio coupled haptics in testCallWaitingButNoRingForSpecificContacts() 265 mFuture.complete(true); in testNoVibrateDueToAudioCoupledHaptics() 281 mFuture.complete(false); // not using audio coupled haptics in testVibrateButNoRingForNullRingtone() 300 mFuture.complete(false); // not using audio coupled haptics in testVibrateButNoRingForSilentRingtone() 330 mFuture.complete(false); in testStopRingingBeforeHapticsLookupComplete() [all …]
|
D | IncomingCallFilterGraphTest.java | 95 handler.postDelayed(() -> resultFuture.complete(PASS_CALL_RESULT), in startFilterLookup() 115 CallFilterResultCallback listener = (call, result) -> testResult.complete(result); in testEmptyGraph() 128 CallFilterResultCallback listener = (call, result) -> testResult.complete(result); in testFiltersPerformOrder() 146 CallFilterResultCallback listener = (call, result) -> testResult.complete(result); in testFiltersPerformInParallel() 165 CallFilterResultCallback listener = (call, result) -> testResult.complete(result); in testFiltersTimeout()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | PhoneAccountSuggestionHelper.java | 91 future.complete( in bindAndGetSuggestions() 94 future.complete( in bindAndGetSuggestions() 105 future.complete(getDefaultSuggestions(availablePhoneAccounts)); in bindAndGetSuggestions() 120 future.complete(getDefaultSuggestions(availablePhoneAccounts)); in bindAndGetSuggestions() 129 future.complete(getDefaultSuggestions(availablePhoneAccounts)); in bindAndGetSuggestions() 141 future.complete(getDefaultSuggestions(availablePhoneAccounts)); in bindAndGetSuggestions()
|
D | AsyncRingtonePlayer.java | 163 mHapticsFuture.complete(false /* ringtoneHasHaptics */); 174 mHapticsFuture.complete(false /* ringtoneHasHaptics */); 193 mHapticsFuture.complete(false /* ringtoneHasHaptics */); 217 mHapticsFuture.complete(hasHaptics);
|
D | CallScreeningServiceHelper.java | 138 mFuture.complete(null); in bindAndGetCallIdentification() 154 mFuture.complete(null); in bindAndGetCallIdentification() 164 mFuture.complete(null); in bindAndGetCallIdentification() 176 mFuture.complete(null); in bindAndGetCallIdentification()
|
D | Ringer.java | 260 mBlockOnRingingFuture.complete(null); in startRinging() 348 mVibrateFuture.whenComplete((v, e) -> mBlockOnRingingFuture.complete(null)); in startRinging() 352 mBlockOnRingingFuture.complete(null); in startRinging()
|
D | CallerInfoLookupHelper.java | 94 callerInfoFuture.complete(new Pair<>(handle, null)); in startLookup() 105 callerInfoFuture.complete(new Pair<>(handle, info)); in startLookup()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
D | ActionMonitor.java | 200 boolean complete = false; in isComplete() 202 complete = (mState == STATE_COMPLETE); in isComplete() 204 return complete; in isComplete() 294 private final void complete(final Action action, in complete() method in ActionMonitor 346 monitor.complete(action, expectedOldState, result, succeeded); in setCompleteState()
|
D | SyncMessagesAction.java | 382 syncManager.complete(); in processBackgroundResponse() 494 syncManager.complete(); in processBackgroundResponse()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
D | PhonebookPullRequest.java | 38 public boolean complete = false; field in PhonebookPullRequest 94 complete = true; in onPullComplete()
|
/packages/apps/Dialer/java/com/android/voicemail/impl/sync/ |
D | VvmNetworkRequest.java | 110 future.complete(new NetworkWrapper(network, this)); in onAvailable() 116 future.complete(null); in onFailed()
|
/packages/apps/Nfc/src/com/android/nfc/beam/ |
D | BluetoothOppHandover.java | 94 void complete() { in complete() method in BluetoothOppHandover 126 complete(); in sendIntent()
|
/packages/services/Car/service/src/com/android/car/ |
D | CarLocationService.java | 214 future.complete(null); in onStateChanged() 231 future.complete(null); in onStateChanged() 237 future.complete(null); in onStateChanged()
|
D | BluetoothDeviceConnectionPolicy.java | 83 future.complete(null);
|
/packages/apps/Dialer/java/com/android/voicemail/impl/sms/ |
D | StatusSmsFetcher.java | 120 future.complete(sms.getFields()); in onReceive() 140 future.complete(translatedBundle); in onReceive()
|
/packages/apps/WallpaperPicker/src/com/android/photos/views/ |
D | TiledImageView.java | 191 boolean complete = mRenderer.image.draw(mCanvas); in onDrawFrame() 192 if (complete && readyCallback != null) { in onDrawFrame()
|
/packages/services/Car/car-usb-handler/src/android/car/usb/handler/ |
D | AoapServiceManager.java | 207 mConnected.complete(null); in onServiceConnected() 239 boolean res = response.complete(message.getData()); in onResponse()
|
/packages/apps/Gallery2/src/com/android/photos/views/ |
D | TiledImageView.java | 308 boolean complete = mRenderer.image.draw(mCanvas); in onDrawFrame() 309 if (complete && readyCallback != null) { in onDrawFrame()
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/ |
D | TestPredicate.java | 46 mFuture.complete(t); in test()
|
/packages/apps/Settings/tests/unit/src/com/android/settings/network/ |
D | TetherProvisioningActivityTest.java | 61 mFuture.complete(resultCode); in onReceiveResult()
|
/packages/apps/Car/Cluster/src/android/car/cluster/ |
D | ImageResolver.java | 162 future.complete(bitmaps); in getBitmaps()
|