Home
last modified time | relevance | path

Searched refs:mErrorState (Results 1 – 22 of 22) sorted by relevance

/aosp12/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPageContentView.java47 private Drawable mErrorState; field in PageContentView
69 setBackground(mErrorState); in onPageContentAvailable()
101 mErrorState = errorState; in init()
109 setBackground(mErrorState); in init()
/aosp12/frameworks/av/services/camera/libcameraservice/api2/
H A DCompositeStream.cpp36 mErrorState(false) { in CompositeStream()
96 if (!mErrorState && (streamId == getStreamId())) { in onBufferRequestForFrameNumber()
103 if (!mErrorState && !bufferInfo.mError) { in onBufferReleased()
190 mErrorState = true; in onError()
H A DDepthCompositeStream.cpp411 if ((inputFrame->error || mErrorState) && !inputFrame->errorNotified) { in releaseInputFrameLocked()
437 if (mErrorState) { in threadLoop()
739 if (!mErrorState) { in onFrameAvailable()
748 if (!mErrorState) { in onFrameAvailable()
H A DCompositeStream.h127 bool mErrorState; variable
H A DHeicCompositeStream.cpp280 if (mErrorState || (streamId != getStreamId())) { in onBufferRequestForFrameNumber()
309 if (!mErrorState) { in onFrameAvailable()
323 if (!mErrorState) { in onFrameAvailable()
395 if (!mErrorState) { in onHeicOutputFrameAvailable()
464 mErrorState = true; in onHeicCodecError()
559 if (mErrorState) { in onShutter()
1215 if (inputFrame->error || mErrorState) { in releaseInputFrameLocked()
1658 if (mErrorState) { in threadLoop()
/aosp12/packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/
H A DPlayer.java83 private final PlaybackState mErrorState; field in Player
111 mErrorState = new PlaybackState.Builder() in Player()
348 mSession.setPlaybackState(mErrorState); in startPlayback()
363 mSession.setPlaybackState(mErrorState); in startPlayback()
529 mSession.setPlaybackState(mErrorState); in safeAdvance()
538 mSession.setPlaybackState(mErrorState); in safeRetreat()
600 mSession.setPlaybackState(mErrorState); in onSkipToQueueItem()
/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DStrictModeViolationDialog.java70 if (app.mErrorState.getErrorReportReceiver() != null) { in StrictModeViolationDialog()
94 mProc.mErrorState.getDialogController().clearViolationDialogs();
H A DAppErrors.java451 ErrorDialogController controller = app.mErrorState.getDialogController(); in killAppAtUserRequestLocked()
469 final ProcessErrorStateRecord errState = app.mErrorState; in killAppImmediateLSP()
745 final ProcessErrorStateRecord errState = app.mErrorState;
796 result.setComponent(r.mErrorState.getErrorReportReceiver());
805 final ProcessErrorStateRecord errState = r.mErrorState;
853 final ProcessErrorStateRecord errState = app.mErrorState;
985 final ProcessErrorStateRecord errState = proc.mErrorState;
1062 final ProcessErrorStateRecord errState = proc.mErrorState;
H A DAppNotRespondingDialog.java111 final boolean hasReceiver = mProc.mErrorState.getErrorReportReceiver() != null; in onCreate()
155 final ProcessErrorStateRecord errState = app.mErrorState;
H A DNativeCrashListener.java267 pr.mErrorState.setCrashing(true); in consumeNativeCrashData()
268 pr.mErrorState.setForceCrashReport(true); in consumeNativeCrashData()
H A DAppErrorDialog.java114 final boolean hasReceiver = mProc.mErrorState.getErrorReportReceiver() != null; in onCreate()
159 mProc.mErrorState.getDialogController().clearCrashDialogs(false /* needDismiss */); in setResult()
H A DAnrHelper.java163 mApp.mErrorState.appNotResponding(mActivityShortComponentName, mAppInfo, in appNotResponding()
H A DProcessRecord.java342 final ProcessErrorStateRecord mErrorState; field in ProcessRecord
467 mErrorState.dump(pw, prefix, nowUptime); in dump()
510 mErrorState = new ProcessErrorStateRecord(this); in ProcessRecord()
923 mErrorState.onCleanupApplicationRecordLSP(); in onCleanupApplicationRecordLSP()
H A DProcessProviderRecord.java119 final boolean alwaysRemove = mApp.mErrorState.isBad() || !allowRestart; in onCleanupApplicationRecordLocked()
H A DErrorDialogController.java189 mApp.mErrorState.isSilentAnr() /* lastUsedOnly */); in showAnrDialogs()
H A DBroadcastQueue.java680 || filter.receiverList.app.mErrorState.isCrashing())) { in deliverToRegisteredReceiverLocked()
1065 isDead = proc == null || proc.mErrorState.isCrashing(); in processNextBroadcastLocked()
1473 if (r.curApp != null && r.curApp.mErrorState.isCrashing()) { in processNextBroadcastLocked()
H A DProcessList.java2494 app.mErrorState.setBad(false);
2564 app.mErrorState.setCrashHandler(crashHandler);
3815 final ProcessErrorStateRecord errState = app.mErrorState; in getRunningAppProcessesLOSP()
H A DContentProviderHelper.java1751 if (!alwaysBad && !app.mErrorState.isBad() && cpr.hasConnectionOrHandle()) { in cleanupAppInLaunchingProvidersLocked()
H A DActivityManagerService.java1585 if (proc.mErrorState.getDialogController().hasViolationDialogs()) { in handleMessage()
1591 proc.mErrorState.getDialogController().showViolationDialogs(res); in handleMessage()
1605 app.mErrorState.getDialogController().showDebugWaitingDialogs(); in handleMessage()
1609 app.mErrorState.getDialogController().clearWaitingDialog(); in handleMessage()
8434 final ProcessErrorStateRecord errState = app.mErrorState; in getProcessesInErrorState()
/aosp12/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPageAdapter.java99 private BitmapDrawable mErrorState; field in PageAdapter
355 content.init(provider, mEmptyState, mErrorState, mMediaSize, mMinMargins); in onBindViewHolder()
517 mErrorState = new BitmapDrawable(mContext.getResources(), errorBitmap); in updatePreviewAreaPageSizeAndEmptyState()
802 page.init(null, mEmptyState, mErrorState, mMediaSize, mMinMargins); in recyclePageView()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DAnrHelperTest.java109 verify(mAnrApp.mErrorState, timeout(TimeUnit.SECONDS.toMillis(5))).appNotResponding( in testHandleAppNotResponding()
H A DProcessRecordTests.java111 mProcessErrorState = spy(mProcessRecord.mErrorState); in setUpProcess()