Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/ims/stub/
DImsConfigImplBase.java106 AtomicReference<RemoteException> exceptionRef = new AtomicReference<>(); in addImsConfigCallback() local
111 exceptionRef.set(e); in addImsConfigCallback()
115 if (exceptionRef.get() != null) { in addImsConfigCallback()
117 throw exceptionRef.get(); in addImsConfigCallback()
123 AtomicReference<RemoteException> exceptionRef = new AtomicReference<>(); in removeImsConfigCallback() local
128 exceptionRef.set(e); in removeImsConfigCallback()
132 if (exceptionRef.get() != null) { in removeImsConfigCallback()
134 throw exceptionRef.get(); in removeImsConfigCallback()
149 AtomicReference<RemoteException> exceptionRef = new AtomicReference<>(); in getConfigInt() local
162 exceptionRef.set(e); in getConfigInt()
[all …]
DImsRegistrationImplBase.java222 AtomicReference<RemoteException> exceptionRef = new AtomicReference<>();
227 exceptionRef.set(e);
231 if (exceptionRef.get() != null) {
232 throw exceptionRef.get();
239 AtomicReference<RemoteException> exceptionRef = new AtomicReference<>();
244 exceptionRef.set(e);
248 if (exceptionRef.get() != null) {
249 throw exceptionRef.get();
/frameworks/base/telephony/java/android/telephony/ims/feature/
DMmTelFeature.java145 AtomicReference<RemoteException> exceptionRef = new AtomicReference<>();
150 exceptionRef.set(e);
155 if (exceptionRef.get() != null) {
156 throw exceptionRef.get();
175 AtomicReference<RemoteException> exceptionRef = new AtomicReference<>();
180 exceptionRef.set(e);
185 if (exceptionRef.get() != null) {
186 throw exceptionRef.get();
194 AtomicReference<RemoteException> exceptionRef = new AtomicReference<>();
199 exceptionRef.set(e);
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/euicc/
DEuiccConnectorTest.java337 final AtomicReference<String> exceptionRef = new AtomicReference<>(); in testCommandDispatch_forAvailableMemory_unsupportedOperationException() local
348 if (exceptionRef.get() != null) { in testCommandDispatch_forAvailableMemory_unsupportedOperationException()
351 exceptionRef.set(message); in testCommandDispatch_forAvailableMemory_unsupportedOperationException()
360 String message = exceptionRef.get(); in testCommandDispatch_forAvailableMemory_unsupportedOperationException()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
DEuiccController.java1914 AtomicReference<Exception> exceptionRef = new AtomicReference(); in blockingGetAvailableMemoryInBytesFromEuiccService() local
1926 exceptionRef.set(new UnsupportedOperationException(message)); in blockingGetAvailableMemoryInBytesFromEuiccService()
1936 return awaitResultOrException(latch, memoryRef, exceptionRef); in blockingGetAvailableMemoryInBytesFromEuiccService()