Home
last modified time | relevance | path

Searched refs:mErrorServiceConnection (Results 1 – 4 of 4) sorted by relevance

/cts/tests/camera/src/android/hardware/multiprocess/camera/cts/
DCamera1Activity.java34 ErrorLoggingService.ErrorServiceConnection mErrorServiceConnection; field in Camera1Activity
40 mErrorServiceConnection = new ErrorLoggingService.ErrorServiceConnection(this); in onCreate()
41 mErrorServiceConnection.start(); in onCreate()
51 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, TAG + in onResume()
58 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_EVICTED, in onResume()
62 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, in onResume()
68 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_CONNECT, in onResume()
71 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, TAG + in onResume()
87 if (mErrorServiceConnection != null) { in onDestroy()
88 mErrorServiceConnection.stop(); in onDestroy()
[all …]
DCamera2Activity.java37 ErrorLoggingService.ErrorServiceConnection mErrorServiceConnection; field in Camera2Activity
43 mErrorServiceConnection = new ErrorLoggingService.ErrorServiceConnection(this); in onCreate()
44 mErrorServiceConnection.start(); in onCreate()
62 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, TAG + in onResume()
69 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, TAG + in onResume()
78 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_AVAILABLE, in onResume()
86 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_UNAVAILABLE, in onResume()
97 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_CONNECT, in onResume()
104 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_EVICTED, in onResume()
111 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, TAG + in onResume()
[all …]
DMediaRecorderCameraActivity.java50 private ErrorLoggingService.ErrorServiceConnection mErrorServiceConnection; field in MediaRecorderCameraActivity
60 mErrorServiceConnection = new ErrorLoggingService.ErrorServiceConnection(this); in onCreate()
61 mErrorServiceConnection.start(); in onCreate()
83 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, TAG + in onResume()
99 if (mErrorServiceConnection != null) { in onDestroy()
100 mErrorServiceConnection.stop(); in onDestroy()
101 mErrorServiceConnection = null; in onDestroy()
131 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_CONNECT, in surfaceChanged()
134 mErrorServiceConnection.logAsync(TestConstants.EVENT_CAMERA_ERROR, TAG + in surfaceChanged()
DCameraEvictionTest.java52 ErrorLoggingService.ErrorServiceConnection mErrorServiceConnection; field in CameraEvictionTest
119 mErrorServiceConnection = new ErrorLoggingService.ErrorServiceConnection(mContext); in setUp()
120 mErrorServiceConnection.start(); in setUp()
129 if (mErrorServiceConnection != null) { in tearDown()
130 mErrorServiceConnection.stop(); in tearDown()
131 mErrorServiceConnection = null; in tearDown()
194 … List<ErrorLoggingService.LogEvent> allEvents = mErrorServiceConnection.getLog(SETUP_TIMEOUT, in testBasicCamera2ActivityEviction()
247 eventList2 = mErrorServiceConnection.getLog(EVICTION_TIMEOUT); in testBasicCamera2ActivityEviction()
309 events = mErrorServiceConnection.getLog(SETUP_TIMEOUT, in testAPI1ActivityEviction()
355 eventList2 = mErrorServiceConnection.getLog(EVICTION_TIMEOUT); in testAPI1ActivityEviction()