Home
last modified time | relevance | path

Searched refs:currentSession (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/analytics/
DDataCollector.java188 SensorLoggerSession currentSession = mCurrentSession; in reportRejectedTouch() local
190 currentSession.setType(Session.REJECTED_TOUCH_REPORT); in reportRejectedTouch()
191 currentSession.end(System.currentTimeMillis(), Session.SUCCESS); in reportRejectedTouch()
192 Session proto = currentSession.toProto(); in reportRejectedTouch()
208 private void queueSession(final SensorLoggerSession currentSession) { in queueSession() argument
212 byte[] b = Session.toByteArray(currentSession.toProto()); in queueSession()
215 mFalsingPlugin.dataCollected(currentSession.getResult() == Session.SUCCESS, b); in queueSession()
218 if (currentSession.getResult() != Session.SUCCESS) { in queueSession()
/frameworks/base/telecomm/java/android/telecom/Logging/
DSessionManager.java372 Session currentSession = mSessionMapper.get(getCallingThreadId()); in getSessionId() local
373 return currentSession != null ? currentSession.toString() : ""; in getSessionId()
/frameworks/av/camera/ndk/impl/
DACameraDevice.cpp189 sp<ACameraCaptureSession> currentSession = mCurrentSession.promote(); in createCaptureSession() local
196 if (currentSession != nullptr) { in createCaptureSession()
197 currentSession->closeByDevice(); in createCaptureSession()
/frameworks/av/camera/ndk/ndk_vendor/impl/
DACameraDevice.cpp183 sp<ACameraCaptureSession> currentSession = mCurrentSession.promote(); in createCaptureSession() local
190 if (currentSession != nullptr) { in createCaptureSession()
191 currentSession->closeByDevice(); in createCaptureSession()
/frameworks/base/services/backup/java/com/android/server/backup/
DUserBackupManagerService.java3437 public void clearRestoreSession(ActiveRestoreSession currentSession) { in clearRestoreSession() argument
3439 if (currentSession != mActiveRestoreSession) { in clearRestoreSession()