/aosp14/frameworks/base/core/java/android/os/ |
H A D | DeadObjectException.java | 24 public class DeadObjectException extends RemoteException { class 25 public DeadObjectException() { in DeadObjectException() method in DeadObjectException 29 public DeadObjectException(String message) { in DeadObjectException() method in DeadObjectException
|
H A D | DeadSystemException.java | 23 public class DeadSystemException extends DeadObjectException {
|
H A D | RemoteException.java | 81 if (this instanceof DeadObjectException) { in rethrowFromSystemServer()
|
H A D | OWNERS | 25 per-file DeadObjectException.java = file:platform/frameworks/native:/libs/binder/OWNERS
|
/aosp14/frameworks/base/core/java/android/content/ |
H A D | ContentProviderClient.java | 33 import android.os.DeadObjectException; 203 } catch (DeadObjectException e) { in query() 221 } catch (DeadObjectException e) { in getType() 241 } catch (DeadObjectException e) { in getStreamTypes() 259 } catch (DeadObjectException e) { in canonicalize() 277 } catch (DeadObjectException e) { in uncanonicalize() 303 } catch (DeadObjectException e) { in refresh() 323 } catch (DeadObjectException e) { in checkUriPermission() 349 } catch (DeadObjectException e) { in insert() 369 } catch (DeadObjectException e) { in bulkInsert() [all …]
|
/aosp14/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger_middleware/ |
H A D | FakeSoundTriggerHal.java | 41 import android.os.DeadObjectException; 382 if (mIsDead) throw new DeadObjectException(); in getProperties() 398 if (mIsDead) throw new DeadObjectException(); in registerGlobalCallback() 407 if (mIsDead) throw new DeadObjectException(); in loadSoundModel() 426 if (mIsDead) throw new DeadObjectException(); in loadPhraseSoundModel() 446 if (mIsDead) throw new DeadObjectException(); in unloadSoundModel() 475 if (mIsDead) throw new DeadObjectException(); in startRecognition() 499 if (mIsDead) throw new DeadObjectException(); in stopRecognition() 515 if (mIsDead) throw new DeadObjectException(); in forceRecognitionEvent() 536 if (mIsDead) throw new DeadObjectException(); in queryParameter() [all …]
|
H A D | SoundTriggerHalEnforcer.java | 28 import android.os.DeadObjectException; 228 if (e.getCause() instanceof DeadObjectException) { in handleException()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
H A D | ScrollCaptureClient.java | 33 import android.os.DeadObjectException; 226 completer.setException(new DeadObjectException("No active connection!")); 289 mStartCompleter.setException(new DeadObjectException("The remote process died")); 293 new DeadObjectException("The remote process died")); 296 mEndCompleter.setException(new DeadObjectException("The remote process died")); 333 completer.setException(new DeadObjectException("Connection is closed!"));
|
/aosp14/frameworks/base/core/java/android/service/translation/ |
H A D | OnTranslationResultCallbackWrapper.java | 20 import android.os.DeadObjectException; 61 if (e instanceof DeadObjectException) { in accept()
|
/aosp14/frameworks/base/core/java/android/service/autofill/ |
H A D | SavedDatasetsInfoCallbackImpl.java | 28 import android.os.DeadObjectException; 87 } catch (DeadObjectException e) { in send()
|
/aosp14/frameworks/base/core/java/android/service/voice/ |
H A D | VoiceInteractionSessionService.java | 24 import android.os.DeadObjectException; 140 } catch (DeadObjectException ignored) { in deliverSession()
|
/aosp14/frameworks/base/core/java/com/android/internal/os/ |
H A D | RuntimeInit.java | 27 import android.os.DeadObjectException; 163 if (t2 instanceof DeadObjectException) { in uncaughtException() 430 if (t2 instanceof DeadObjectException) { in wtf()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
H A D | KeyguardUnlockAnimationController.kt | 26 import android.os.DeadObjectException 450 } catch (e: DeadObjectException) { 573 } catch (e: DeadObjectException) { 674 } catch (e: DeadObjectException) {
|
/aosp14/frameworks/base/services/core/java/com/android/server/inputmethod/ |
H A D | IInputMethodClientInvoker.java | 23 import android.os.DeadObjectException; 90 if (DEBUG || !(e instanceof DeadObjectException)) { in logRemoteException()
|
H A D | IInputMethodInvoker.java | 23 import android.os.DeadObjectException; 85 if (DEBUG || !(e instanceof DeadObjectException)) { in logRemoteException()
|
/aosp14/frameworks/base/services/backup/java/com/android/server/backup/transport/ |
H A D | TransportUtils.java | 21 import android.os.DeadObjectException;
|
/aosp14/frameworks/base/services/core/java/com/android/server/servicewatcher/ |
H A D | ServiceWatcherImpl.java | 28 import android.os.DeadObjectException; 252 operation.onError(new DeadObjectException()); in runOnBinder()
|
/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
H A D | BinderDeathDispatcherTest.java | 26 import android.os.DeadObjectException; 100 throw new DeadObjectException(); in linkToDeath()
|
/aosp14/frameworks/base/services/core/java/com/android/server/media/ |
H A D | MediaSessionRecord.java | 66 import android.os.DeadObjectException; 691 } catch (DeadObjectException e) { in pushPlaybackStateUpdate() 719 } catch (DeadObjectException e) { in pushMetadataUpdate() 754 } catch (DeadObjectException e) { in pushQueueUpdate() 781 } catch (DeadObjectException e) { in pushQueueTitleUpdate() 808 } catch (DeadObjectException e) { in pushExtrasUpdate() 835 } catch (DeadObjectException e) { in pushVolumeUpdate() 860 } catch (DeadObjectException e) { in pushEvent() 889 } catch (DeadObjectException e) { in pushSessionDestroyed()
|
/aosp14/frameworks/base/services/core/java/com/android/server/logcat/ |
H A D | LogcatManagerService.java | 31 import android.os.DeadObjectException; 524 } catch (DeadObjectException e) { in approveRequest() 545 } catch (DeadObjectException e) { in declineRequest()
|
/aosp14/frameworks/base/services/robotests/backup/src/com/android/server/backup/internal/ |
H A D | PerformInitializeTaskTest.java | 42 import android.os.DeadObjectException; 362 when(transport.initializeDevice()).thenThrow(DeadObjectException.class); in testRun_whenTransportThrowsDeadObjectException()
|
/aosp14/frameworks/base/services/core/java/com/android/server/broadcastradio/aidl/ |
H A D | RadioModule.java | 34 import android.os.DeadObjectException; 434 } catch (DeadObjectException ex) { in fanoutAidlCallbackLocked()
|
/aosp14/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
H A D | RadioModule.java | 37 import android.os.DeadObjectException; 388 } catch (DeadObjectException ex) { in fanoutAidlCallbackLocked()
|
/aosp14/frameworks/base/services/core/java/com/android/server/trust/ |
H A D | TrustManagerService.java | 53 import android.os.DeadObjectException; 1475 } catch (DeadObjectException e) { in notifyListenerIsActiveUnlockRunning() 1515 } catch (DeadObjectException e) { in dispatchOnTrustChanged() 1532 } catch (DeadObjectException e) { in dispatchOnEnabledTrustAgentsChanged() 1549 } catch (DeadObjectException e) { in dispatchOnTrustManagedChanged() 1566 } catch (DeadObjectException e) { in dispatchOnTrustError()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/os/ |
H A D | BinderProxyCountingTest.java | 364 } catch (DeadObjectException doe) { in testKillBadBehavingApp()
|