Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 3752) sorted by relevance

12345678910>>...151

/frameworks/base/telephony/java/android/telephony/ims/
DImsCallSessionListener.java60 } catch (RemoteException e) { in callSessionProgressing()
61 e.rethrowFromSystemServer(); in callSessionProgressing()
73 } catch (RemoteException e) { in callSessionInitiated()
74 e.rethrowFromSystemServer(); in callSessionInitiated()
87 } catch (RemoteException e) { in callSessionInitiatedFailed()
88 e.rethrowFromSystemServer(); in callSessionInitiatedFailed()
100 } catch (RemoteException e) { in callSessionTerminated()
101 e.rethrowFromSystemServer(); in callSessionTerminated()
117 } catch (RemoteException e) { in callSessionHeld()
118 e.rethrowFromSystemServer(); in callSessionHeld()
[all …]
DImsMmTelManager.java303 } catch (ServiceSpecificException e) { in registerImsRegistrationCallback()
304 if (e.errorCode == ImsException.CODE_ERROR_INVALID_SUBSCRIPTION) { in registerImsRegistrationCallback()
306 throw new IllegalArgumentException(e.getMessage()); in registerImsRegistrationCallback()
308 throw new ImsException(e.getMessage(), e.errorCode); in registerImsRegistrationCallback()
310 } catch (RemoteException | IllegalStateException e) { in registerImsRegistrationCallback()
311 throw new ImsException(e.getMessage(), ImsException.CODE_ERROR_SERVICE_UNAVAILABLE); in registerImsRegistrationCallback()
347 } catch (ServiceSpecificException e) { in registerImsRegistrationCallback()
348 throw new ImsException(e.getMessage(), e.errorCode); in registerImsRegistrationCallback()
349 } catch (RemoteException | IllegalStateException e) { in registerImsRegistrationCallback()
350 throw new ImsException(e.getMessage(), ImsException.CODE_ERROR_SERVICE_UNAVAILABLE); in registerImsRegistrationCallback()
[all …]
/frameworks/base/core/java/android/security/keystore/recovery/
DRecoveryController.java339 } catch (RemoteException e) { in initRecoveryService()
340 throw e.rethrowFromSystemServer(); in initRecoveryService()
341 } catch (ServiceSpecificException e) { in initRecoveryService()
342 if (e.errorCode == ERROR_BAD_CERTIFICATE_FORMAT in initRecoveryService()
343 || e.errorCode == ERROR_INVALID_CERTIFICATE) { in initRecoveryService()
344 throw new CertificateException("Invalid certificate for recovery service", e); in initRecoveryService()
346 if (e.errorCode == ERROR_DOWNGRADE_CERTIFICATE) { in initRecoveryService()
348 "Downgrading certificate serial version isn't supported.", e); in initRecoveryService()
350 throw wrapUnexpectedServiceSpecificException(e); in initRecoveryService()
367 } catch (RemoteException e) { in getKeyChainSnapshot()
[all …]
/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/adapters/
DRemoteXmlPullParserAdapter.java42 } catch (RemoteException e) { in setFeature()
43 throw new RuntimeException(e); in setFeature()
51 } catch (RemoteException e) { in getFeature()
52 throw new RuntimeException(e); in getFeature()
60 } catch (RemoteException e) { in setProperty()
61 throw new RuntimeException(e); in setProperty()
69 } catch (RemoteException e) { in getProperty()
70 throw new RuntimeException(e); in getProperty()
78 } catch (RemoteException e) { in setInput()
79 throw new RuntimeException(e); in setInput()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHal.java91 Log.e(TAG, "initalizing ISupplicant failed.");
131 } catch (RemoteException e) { in linkToServiceManagerDeath()
132 Log.e(TAG, "IServiceManager.linkToDeath exception", e); in linkToServiceManagerDeath()
165 Log.e(TAG, "Failed to get HIDL Service Manager"); in initialize()
175 Log.e(TAG, "Failed to register for notifications to " in initialize()
184 } catch (RemoteException e) { in initialize()
185 Log.e(TAG, "Exception while trying to register a listener for ISupplicant service: " in initialize()
186 + e); in initialize()
201 } catch (RemoteException e) { in linkToSupplicantDeath()
202 Log.e(TAG, "ISupplicant.linkToDeath exception", e); in linkToSupplicantDeath()
[all …]
/frameworks/base/telecomm/java/android/telecom/
DTelecomManager.java976 } catch (RemoteException e) { in getDefaultOutgoingPhoneAccount()
977 Log.e(TAG, "Error calling ITelecomService#getDefaultOutgoingPhoneAccount", e); in getDefaultOutgoingPhoneAccount()
1002 } catch (RemoteException e) { in getUserSelectedOutgoingPhoneAccount()
1003 Log.e(TAG, "Error calling ITelecomService#getUserSelectedOutgoingPhoneAccount", e); in getUserSelectedOutgoingPhoneAccount()
1024 } catch (RemoteException e) { in setUserSelectedOutgoingPhoneAccount()
1025 Log.e(TAG, "Error calling ITelecomService#setUserSelectedOutgoingPhoneAccount"); in setUserSelectedOutgoingPhoneAccount()
1044 } catch (RemoteException e) { in getSimCallManager()
1045 Log.e(TAG, "Error calling ITelecomService#getSimCallManager"); in getSimCallManager()
1065 } catch (RemoteException e) { in getSimCallManagerForSubscription()
1066 Log.e(TAG, "Error calling ITelecomService#getSimCallManager"); in getSimCallManagerForSubscription()
[all …]
/frameworks/base/core/java/android/hardware/radio/
DTunerAdapter.java67 } catch (RemoteException e) { in close()
68 Log.e(TAG, "Exception trying to close tuner", e); in close()
79 } catch (IllegalArgumentException e) { in setConfiguration()
80 Log.e(TAG, "Can't set configuration", e); in setConfiguration()
82 } catch (RemoteException e) { in setConfiguration()
83 Log.e(TAG, "service died", e); in setConfiguration()
96 } catch (RemoteException e) { in getConfiguration()
97 Log.e(TAG, "service died", e); in getConfiguration()
106 } catch (IllegalStateException e) { in setMute()
107 Log.e(TAG, "Can't set muted", e); in setMute()
[all …]
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/
DIntermediateClass.java34 } catch (ExceptionInMainDex e) { in get3()
36 } catch (ExceptionInSecondaryDex e) { in get3()
38 } catch (ExceptionInMainDex2 e) { in get3()
40 } catch (ExceptionInSecondaryDex2 e) { in get3()
42 } catch (OutOfMemoryError e) { in get3()
44 } catch (CaughtOnlyException e) { in get3()
46 } catch (ExceptionInSecondaryDexWithSuperInMain e) { in get3()
48 … catch (SuperExceptionInSecondaryDex|SuperExceptionInMainDex|CaughtOnlyByIntermediateException e) { in get3()
59 } catch (ExceptionInSecondaryDexWithSuperInMain e) { in get4()
61 } catch (ExceptionInSecondaryDex e) { in get4()
[all …]
/frameworks/base/core/java/android/app/
DStatsManager.java116 } catch (RemoteException e) { in addConfig()
117 Slog.e(TAG, "Failed to connect to statsd when adding configuration"); in addConfig()
118 throw new StatsUnavailableException("could not connect", e); in addConfig()
119 } catch (SecurityException e) { in addConfig()
120 throw new StatsUnavailableException(e.getMessage(), e); in addConfig()
135 } catch (StatsUnavailableException | IllegalArgumentException e) { in addConfiguration()
152 } catch (RemoteException e) { in removeConfig()
153 Slog.e(TAG, "Failed to connect to statsd when removing configuration"); in removeConfig()
154 throw new StatsUnavailableException("could not connect", e); in removeConfig()
155 } catch (SecurityException e) { in removeConfig()
[all …]
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
DKeyguardServiceWrapper.java53 } catch (RemoteException e) { in verifyUnlock()
54 Slog.w(TAG , "Remote Exception", e); in verifyUnlock()
62 } catch (RemoteException e) { in setOccluded()
63 Slog.w(TAG , "Remote Exception", e); in setOccluded()
71 } catch (RemoteException e) { in addStateMonitorCallback()
72 Slog.w(TAG , "Remote Exception", e); in addStateMonitorCallback()
80 } catch (RemoteException e) { in dismiss()
81 Slog.w(TAG , "Remote Exception", e); in dismiss()
89 } catch (RemoteException e) { in onDreamingStarted()
90 Slog.w(TAG , "Remote Exception", e); in onDreamingStarted()
[all …]
/frameworks/base/services/core/java/com/android/server/stats/
DStatsCompanionService.java330 } catch (RemoteException e) { in StatsCompanionService()
331 Slog.e(TAG, "Failed to inform statsd latest update of all apps", e); in StatsCompanionService()
360 } catch (RemoteException e) { in StatsCompanionService()
362 Slog.e(TAG, "register thermal listener error"); in StatsCompanionService()
365 Slog.e(TAG, "cannot find thermalservice, no throttling push notifications"); in StatsCompanionService()
390 } catch (IntentSender.SendIntentException e) { in sendDataBroadcast()
406 } catch (IntentSender.SendIntentException e) { in sendActiveConfigsChangedBroadcast()
441 } catch (IntentSender.SendIntentException e) { in sendSubscriberBroadcast()
477 } catch (IOException e) { in informAllUidsLocked()
478 Slog.e(TAG, "Failed to create a pipe to send uid map data.", e); in informAllUidsLocked()
[all …]
/frameworks/base/identity/java/android/security/identity/
DCredstoreIdentityCredentialStore.java49 } catch (android.os.RemoteException e) { in getInstanceForType()
50 throw new RuntimeException("Unexpected RemoteException ", e); in getInstanceForType()
51 } catch (android.os.ServiceSpecificException e) { in getInstanceForType()
52 if (e.errorCode == ICredentialStore.ERROR_GENERIC) { in getInstanceForType()
56 + e.errorCode, e); in getInstanceForType()
92 } catch (android.os.RemoteException e) { in getSupportedDocTypes()
93 throw new RuntimeException("Unexpected RemoteException ", e); in getSupportedDocTypes()
94 } catch (android.os.ServiceSpecificException e) { in getSupportedDocTypes()
96 + e.errorCode, e); in getSupportedDocTypes()
108 } catch (android.os.RemoteException e) { in createCredential()
[all …]
DCredstoreIdentityCredential.java102 } catch (android.os.RemoteException e) { in ensureEphemeralKeyPair()
103 throw new RuntimeException("Unexpected RemoteException ", e); in ensureEphemeralKeyPair()
104 } catch (android.os.ServiceSpecificException e) { in ensureEphemeralKeyPair()
106 + e.errorCode, e); in ensureEphemeralKeyPair()
111 | IOException e) { in ensureEphemeralKeyPair()
112 throw new RuntimeException("Unexpected exception ", e); in ensureEphemeralKeyPair()
129 } catch (android.os.RemoteException e) { in setReaderEphemeralPublicKey()
130 throw new RuntimeException("Unexpected RemoteException ", e); in setReaderEphemeralPublicKey()
131 } catch (android.os.ServiceSpecificException e) { in setReaderEphemeralPublicKey()
133 + e.errorCode, e); in setReaderEphemeralPublicKey()
[all …]
/frameworks/base/cmds/hid/src/com/android/commands/hid/
DHid.java61 } catch (Exception e) { in main()
62 error("HID injection failed.", e); in main()
73 } catch (UnsupportedEncodingException e) { in Hid()
74 throw new RuntimeException(e); in Hid()
80 Event e = null; in run() local
81 while ((e = mReader.getNextEvent()) != null) { in run()
82 process(e); in run()
93 private void process(Event e) { in process() argument
94 final int index = mDevices.indexOfKey(e.getId()); in process()
97 if (Event.COMMAND_DELAY.equals(e.getCommand())) { in process()
[all …]
/frameworks/base/core/java/android/bluetooth/le/
DAdvertisingSet.java48 } catch (RemoteException e) { in AdvertisingSet()
49 Log.e(TAG, "Failed to get Bluetooth gatt - ", e); in AdvertisingSet()
76 } catch (RemoteException e) { in enableAdvertising()
77 Log.e(TAG, "remote exception - ", e); in enableAdvertising()
96 } catch (RemoteException e) { in setAdvertisingData()
97 Log.e(TAG, "remote exception - ", e); in setAdvertisingData()
113 } catch (RemoteException e) { in setScanResponseData()
114 Log.e(TAG, "remote exception - ", e); in setScanResponseData()
128 } catch (RemoteException e) { in setAdvertisingParameters()
129 Log.e(TAG, "remote exception - ", e); in setAdvertisingParameters()
[all …]
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
DRecentsAnimationControllerCompat.java42 } catch (RemoteException e) { in screenshotTask()
43 Log.e(TAG, "Failed to screenshot task", e); in screenshotTask()
51 } catch (RemoteException e) { in setInputConsumerEnabled()
52 Log.e(TAG, "Failed to set input consumer enabled state", e); in setInputConsumerEnabled()
59 } catch (RemoteException e) { in setAnimationTargetsBehindSystemBars()
60 Log.e(TAG, "Failed to set whether animation targets are behind system bars", e); in setAnimationTargetsBehindSystemBars()
67 } catch (RemoteException e) { in setSplitScreenMinimized()
68 Log.e(TAG, "Failed to set minimize dock", e); in setSplitScreenMinimized()
75 } catch (RemoteException e) { in hideCurrentInputMethod()
76 Log.e(TAG, "Failed to set hide input method", e); in hideCurrentInputMethod()
[all …]
/frameworks/base/core/java/android/bluetooth/
DBluetoothDevice.java1027 Log.e(TAG, "BT not enabled. Cannot get Remote Device name"); in getName()
1040 } catch (RemoteException e) { in getName()
1041 Log.e(TAG, "", e); in getName()
1056 Log.e(TAG, "BT not enabled. Cannot get Remote Device type"); in getType()
1061 } catch (RemoteException e) { in getType()
1062 Log.e(TAG, "", e); in getType()
1079 Log.e(TAG, "BT not enabled. Cannot get Remote Device Alias"); in getAlias()
1088 } catch (RemoteException e) { in getAlias()
1089 Log.e(TAG, "", e); in getAlias()
1109 Log.e(TAG, "BT not enabled. Cannot set Remote Device name"); in setAlias()
[all …]
/frameworks/base/tests/permission/src/com/android/framework/permission/tests/
DWindowManagerPermissionTests.java49 } catch (SecurityException e) { in testMANAGE_APP_TOKENS()
51 } catch (RemoteException e) { in testMANAGE_APP_TOKENS()
59 } catch (SecurityException e) { in testMANAGE_APP_TOKENS()
61 } catch (RemoteException e) { in testMANAGE_APP_TOKENS()
69 } catch (SecurityException e) { in testMANAGE_APP_TOKENS()
71 } catch (RemoteException e) { in testMANAGE_APP_TOKENS()
79 } catch (SecurityException e) { in testMANAGE_APP_TOKENS()
81 } catch (RemoteException e) { in testMANAGE_APP_TOKENS()
89 } catch (SecurityException e) { in testMANAGE_APP_TOKENS()
91 } catch (RemoteException e) { in testMANAGE_APP_TOKENS()
[all …]
/frameworks/base/core/java/android/hardware/hdmi/
DHdmiTvClient.java87 } catch (RemoteException e) { in deviceSelect()
88 Log.e(TAG, "failed to select device: ", e); in deviceSelect()
114 } catch (RemoteException e) {
115 Log.e(TAG, "failed to select port: ", e);
142 } catch (RemoteException e) {
143 Log.e("TAG", "Failed to set InputChangeListener:", e);
165 } catch (RemoteException e) {
166 Log.e("TAG", "Failed to call getDeviceList():", e);
181 } catch (RemoteException e) {
182 Log.e(TAG, "failed to set system audio mode:", e);
[all …]
/frameworks/base/core/java/android/app/usage/
DStorageStatsManager.java70 } catch (RemoteException e) { in isQuotaSupported()
71 throw e.rethrowFromSystemServer(); in isQuotaSupported()
86 } catch (RemoteException e) { in isReservedSupported()
87 throw e.rethrowFromSystemServer(); in isReservedSupported()
110 } catch (ParcelableException e) { in getTotalBytes()
111 e.maybeRethrow(IOException.class); in getTotalBytes()
112 throw new RuntimeException(e); in getTotalBytes()
113 } catch (RemoteException e) { in getTotalBytes()
114 throw e.rethrowFromSystemServer(); in getTotalBytes()
142 } catch (ParcelableException e) { in getFreeBytes()
[all …]
/frameworks/base/services/net/java/android/net/ip/
DIpClientManager.java57 private void log(String s, Throwable e) { in log() argument
58 Log.e(mTag, s, e); in log()
71 } catch (RemoteException e) { in completedPreDhcpAction()
72 log("Error completing PreDhcpAction", e); in completedPreDhcpAction()
87 } catch (RemoteException e) { in confirmConfiguration()
88 log("Error confirming IpClient configuration", e); in confirmConfiguration()
101 } catch (RemoteException e) { in readPacketFilterComplete()
102 log("Error notifying IpClient of packet filter read", e); in readPacketFilterComplete()
117 } catch (RemoteException e) { in shutdown()
118 log("Error shutting down IpClient", e); in shutdown()
[all …]
/frameworks/base/core/java/android/content/pm/
DShortcutManager.java104 } catch (RemoteException e) { in setDynamicShortcuts()
105 throw e.rethrowFromSystemServer(); in setDynamicShortcuts()
123 } catch (RemoteException e) { in getDynamicShortcuts()
124 throw e.rethrowFromSystemServer(); in getDynamicShortcuts()
142 } catch (RemoteException e) { in getManifestShortcuts()
143 throw e.rethrowFromSystemServer(); in getManifestShortcuts()
164 } catch (RemoteException e) { in addDynamicShortcuts()
165 throw e.rethrowFromSystemServer(); in addDynamicShortcuts()
178 } catch (RemoteException e) { in removeDynamicShortcuts()
179 throw e.rethrowFromSystemServer(); in removeDynamicShortcuts()
[all …]
/frameworks/base/lowpan/java/android/net/lowpan/
DLowpanException.java51 static LowpanException rethrowFromServiceSpecificException(ServiceSpecificException e) in rethrowFromServiceSpecificException() argument
53 switch (e.errorCode) { in rethrowFromServiceSpecificException()
55 throw new InterfaceDisabledException(e); in rethrowFromServiceSpecificException()
58 throw new WrongStateException(e); in rethrowFromServiceSpecificException()
61 throw new OperationCanceledException(e); in rethrowFromServiceSpecificException()
64 throw new JoinFailedException(e); in rethrowFromServiceSpecificException()
67 throw new JoinFailedAtScanException(e); in rethrowFromServiceSpecificException()
70 throw new JoinFailedAtAuthException(e); in rethrowFromServiceSpecificException()
73 throw new NetworkAlreadyExistsException(e); in rethrowFromServiceSpecificException()
77 e.getMessage() != null ? e.getMessage() : "Feature not supported", e); in rethrowFromServiceSpecificException()
[all …]
/frameworks/base/core/java/android/database/sqlite/
DSqliteWrapper.java43 private static boolean isLowMemory(SQLiteException e) { in isLowMemory() argument
44 return e.getMessage().equals(SQLITE_EXCEPTION_DETAIL_MESSAGE); in isLowMemory()
48 public static void checkSQLiteException(Context context, SQLiteException e) { in checkSQLiteException() argument
49 if (isLowMemory(e)) { in checkSQLiteException()
53 throw e; in checkSQLiteException()
62 } catch (SQLiteException e) { in query()
63 Log.e(TAG, "Catch a SQLiteException when query: ", e); in query()
64 checkSQLiteException(context, e); in query()
72 } catch (SQLiteException e) { in requery()
73 Log.e(TAG, "Catch a SQLiteException when requery: ", e); in requery()
[all …]
/frameworks/base/core/java/android/se/omapi/
DSession.java84 } catch (RemoteException e) { in getATR()
85 throw new IllegalStateException(e.getMessage()); in getATR()
95 Log.e(TAG, "service not connected to system"); in close()
101 } catch (RemoteException e) { in close()
102 Log.e(TAG, "Error closing session", e); in close()
115 } catch (RemoteException e) { in isClosed()
126 Log.e(TAG, "service not connected to system"); in closeChannels()
133 } catch (RemoteException e) { in closeChannels()
134 Log.e(TAG, "Error closing channels", e); in closeChannels()
213 } catch (ServiceSpecificException e) { in openBasicChannel()
[all …]

12345678910>>...151