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.java361 Session currentSession = mSessionMapper.get(getCallingThreadId()); in getSessionId() local
362 return currentSession != null ? currentSession.toString() : ""; in getSessionId()
/frameworks/av/camera/ndk/impl/
DACameraDevice.cpp201 sp<ACameraCaptureSession> currentSession = mCurrentSession.promote(); in createCaptureSession() local
208 if (currentSession != nullptr) { in createCaptureSession()
209 currentSession->closeByDevice(); in createCaptureSession()
/frameworks/av/camera/ndk/ndk_vendor/impl/
DACameraDevice.cpp195 sp<ACameraCaptureSession> currentSession = mCurrentSession.promote(); in createCaptureSession() local
202 if (currentSession != nullptr) { in createCaptureSession()
203 currentSession->closeByDevice(); in createCaptureSession()
/frameworks/base/services/backup/java/com/android/server/backup/
DUserBackupManagerService.java3368 public void clearRestoreSession(ActiveRestoreSession currentSession) { in clearRestoreSession() argument
3370 if (currentSession != mActiveRestoreSession) { in clearRestoreSession()