Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DMmsSmsDatabaseHelper.java498 } catch (Throwable ex) { in updateThreads()
499 Log.e(TAG, ex.getMessage(), ex); in updateThreads()
678 } catch (Exception ex) { in createWordsTables()
679 Log.e(TAG, "got exception creating words table: " + ex.toString()); in createWordsTables()
694 } catch (Exception ex) { in createThreadIdIndex()
695 Log.e(TAG, "got exception creating indices: " + ex.toString()); in createThreadIdIndex()
703 } catch (Exception ex) { in createThreadIdDateIndex()
704 Log.e(TAG, "got exception creating indices: " + ex.toString()); in createThreadIdDateIndex()
711 } catch (Exception ex) { in createPartMidIndex()
712 Log.e(TAG, "got exception creating indices: " + ex.toString()); in createPartMidIndex()
[all …]
/packages/apps/Camera2/src/com/android/camera/
DFatalErrorHandlerImpl.java37 Exception ex = new Exception(); in onMediaStorageFailure() local
39 Log.e(TAG, "Handling Media Storage Failure:", ex); in onMediaStorageFailure()
47 finishActivity, ex); in onMediaStorageFailure()
52 Exception ex = new Exception(); in onCameraOpenFailure() local
54 Log.e(TAG, "Handling Camera Open Failure:", ex); in onCameraOpenFailure()
63 finishActivity, ex); in onCameraOpenFailure()
68 Exception ex = new Exception(); in onCameraReconnectFailure() local
70 Log.e(TAG, "Handling Camera Reconnect Failure:", ex); in onCameraReconnectFailure()
79 finishActivity, ex); in onCameraReconnectFailure()
84 Exception ex = new Exception(); in onGenericCameraAccessFailure() local
[all …]
/packages/services/Car/service/src/com/android/car/garagemode/
DLogger.java36 public void v(String msg, Exception ex) { in v() argument
37 Log.v(mTag, buildMessage(msg), ex); in v()
46 public void i(String msg, Exception ex) { in i() argument
47 Log.i(mTag, buildMessage(msg), ex); in i()
56 public void d(String msg, Exception ex) { in d() argument
57 Log.d(mTag, buildMessage(msg), ex); in d()
61 public void w(String msg, Exception ex) { in w() argument
62 Log.w(mTag, buildMessage(msg), ex); in w()
76 public void e(String msg, Exception ex) { in e() argument
77 Log.e(mTag, buildMessage(msg), ex); in e()
[all …]
/packages/services/Car/tests/GarageModeTestApp/src/com/google/android/car/garagemode/testapp/
DLogger.java35 public void v(String msg, Exception ex) { in v() argument
36 Log.v(mTag, buildMessage(msg), ex); in v()
45 public void i(String msg, Exception ex) { in i() argument
46 Log.i(mTag, buildMessage(msg), ex); in i()
55 public void d(String msg, Exception ex) { in d() argument
56 Log.d(mTag, buildMessage(msg), ex); in d()
60 public void w(String msg, Exception ex) { in w() argument
61 Log.w(mTag, buildMessage(msg), ex); in w()
75 public void e(String msg, Exception ex) { in e() argument
76 Log.e(mTag, buildMessage(msg), ex); in e()
[all …]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DCursorBackedSuggestionCursor.java96 } catch (RuntimeException ex) { in close()
98 Log.e(TAG, "close() failed, ", ex); in close()
117 } catch (RuntimeException ex) { in getCount()
119 Log.e(TAG, "getCount() failed, ", ex); in getCount()
132 } catch (RuntimeException ex) { in moveTo()
134 Log.e(TAG, "moveToPosition() failed, ", ex); in moveTo()
144 } catch (RuntimeException ex) { in moveToNext()
146 Log.e(TAG, "moveToNext() failed, ", ex); in moveToNext()
157 } catch (RuntimeException ex) { in getPosition()
159 Log.e(TAG, "getPosition() failed, ", ex); in getPosition()
[all …]
DPackageIconLoader.java83 } catch (PackageManager.NameNotFoundException ex) { in ensurePackageContext()
150 } catch (Resources.NotFoundException ex) { in getDrawable()
164 } catch (IOException ex) { in getDrawable()
165 Log.e(TAG, "Error closing icon stream for " + uri, ex); in getDrawable()
194 } catch (NameNotFoundException ex) { in getResourceId()
195 throw new FileNotFoundException("Failed to get resources: " + ex); in getResourceId()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DDatabaseWrapper.java156 } catch (SQLiteFullException ex) { in endTransaction()
157 LogUtil.e(TAG, "Database full, unable to endTransaction", ex); in endTransaction()
187 } catch (SQLiteFullException ex) { in insertWithOnConflict()
188 LogUtil.e(TAG, "Database full, unable to insertWithOnConflict", ex); in insertWithOnConflict()
347 } catch (SQLiteFullException ex) { in update()
348 LogUtil.e(TAG, "Database full, unable to update", ex); in update()
367 } catch (SQLiteFullException ex) { in delete()
368 LogUtil.e(TAG, "Database full, unable to delete", ex); in delete()
389 } catch (SQLiteFullException ex) { in insert()
390 LogUtil.e(TAG, "Database full, unable to insert", ex); in insert()
[all …]
DDatabaseHelper.java663 } catch (final SQLException ex) { in dropView()
666 + ex); in dropView()
670 throw ex; in dropView()
699 } catch (final SQLException ex) { in dropAllTables()
702 + ex); in dropAllTables()
730 } catch (final SQLException ex) { in dropAllTriggers()
733 " " + ex); in dropAllTriggers()
774 } catch (final SQLException ex) { in dropAllIndexes()
777 + ex); in dropAllIndexes()
/packages/apps/Camera2/src/com/android/camera/app/
DLegacyLocationProvider.java94 } catch (SecurityException ex) { in startReceivingLocationUpdates()
95 Log.i(TAG, "fail to request location update, ignore", ex); in startReceivingLocationUpdates()
96 } catch (IllegalArgumentException ex) { in startReceivingLocationUpdates()
97 Log.d(TAG, "provider does not exist " + ex.getMessage()); in startReceivingLocationUpdates()
105 } catch (SecurityException ex) { in startReceivingLocationUpdates()
106 Log.i(TAG, "fail to request location update, ignore", ex); in startReceivingLocationUpdates()
107 } catch (IllegalArgumentException ex) { in startReceivingLocationUpdates()
108 Log.d(TAG, "provider does not exist " + ex.getMessage()); in startReceivingLocationUpdates()
120 } catch (Exception ex) { in stopReceivingLocationUpdates()
121 Log.i(TAG, "fail to remove location listners, ignore", ex); in stopReceivingLocationUpdates()
/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DOpportunisticNetworkServiceTest.java67 } catch (RemoteException ex) { in testCheckEnable()
68 Log.e(TAG, "RemoteException", ex); in testCheckEnable()
87 } catch (RemoteException ex) { in testSetPreferredDataSubscriptionId()
88 Log.e(TAG, "RemoteException", ex); in testSetPreferredDataSubscriptionId()
101 } catch (RemoteException ex) { in testGetPreferredDataSubscriptionId()
102 Log.e(TAG, "RemoteException", ex); in testGetPreferredDataSubscriptionId()
127 } catch (RemoteException ex) { in testUpdateAvailableNetworksWithInvalidArguments()
128 Log.e(TAG, "RemoteException", ex); in testUpdateAvailableNetworksWithInvalidArguments()
148 } catch (RemoteException ex) { in testUpdateAvailableNetworksWithSuccess()
149 Log.e(TAG, "RemoteException", ex); in testUpdateAvailableNetworksWithSuccess()
/packages/apps/LegacyCamera/src/com/android/camera/
DLocationManager.java86 } catch (SecurityException ex) { in startReceivingLocationUpdates()
87 Log.i(TAG, "fail to request location update, ignore", ex); in startReceivingLocationUpdates()
88 } catch (IllegalArgumentException ex) { in startReceivingLocationUpdates()
89 Log.d(TAG, "provider does not exist " + ex.getMessage()); in startReceivingLocationUpdates()
98 } catch (SecurityException ex) { in startReceivingLocationUpdates()
99 Log.i(TAG, "fail to request location update, ignore", ex); in startReceivingLocationUpdates()
100 } catch (IllegalArgumentException ex) { in startReceivingLocationUpdates()
101 Log.d(TAG, "provider does not exist " + ex.getMessage()); in startReceivingLocationUpdates()
112 } catch (Exception ex) { in stopReceivingLocationUpdates()
113 Log.i(TAG, "fail to remove location listners, ignore", ex); in stopReceivingLocationUpdates()
/packages/apps/Camera2/src/com/android/camera/one/v2/
DCamera2OneCameraManagerImpl.java57 } catch (IllegalStateException ex) { in create()
87 } catch (CameraAccessException ex) { in hasCamera()
88 Log.e(TAG, "Unable to read camera list.", ex); in hasCamera()
105 } catch (CameraAccessException ex) { in findFirstCamera()
106 Log.e(TAG, "Unable to read camera list.", ex); in findFirstCamera()
130 } catch (CameraAccessException ex) { in getCameraCharacteristics()
131 throw new OneCameraAccessException("Unable to get camera characteristics", ex); in getCameraCharacteristics()
184 } catch (CameraAccessException ex) { in findFirstCameraIdFacing()
185 Log.w(TAG, "Unable to get camera ID", ex); in findFirstCameraIdFacing()
DCamera2OneCameraOpenerImpl.java72 } catch (IllegalStateException ex) { in create()
195 } catch (CameraAccessException ex) { in open()
196 Log.e(TAG, "Could not open camera. " + ex.getMessage()); in open()
203 } catch (UnsupportedOperationException ex) { in open()
204 Log.e(TAG, "Could not open camera. " + ex.getMessage()); in open()
211 } catch (SecurityException ex) { in open()
/packages/services/Telephony/src/com/android/phone/
DTelephonyShellCommand.java223 } catch (RemoteException ex) { in handleEmergencyNumberTestModeCommand()
225 + ", error " + ex.getMessage()); in handleEmergencyNumberTestModeCommand()
226 errPw.println("Exception: " + ex.getMessage()); in handleEmergencyNumberTestModeCommand()
235 } catch (RemoteException ex) { in handleEmergencyNumberTestModeCommand()
236 Log.w(LOG_TAG, "emergency-number-test-mode -c " + "error " + ex.getMessage()); in handleEmergencyNumberTestModeCommand()
237 errPw.println("Exception: " + ex.getMessage()); in handleEmergencyNumberTestModeCommand()
258 } catch (RemoteException ex) { in handleEmergencyNumberTestModeCommand()
260 + ", error " + ex.getMessage()); in handleEmergencyNumberTestModeCommand()
261 errPw.println("Exception: " + ex.getMessage()); in handleEmergencyNumberTestModeCommand()
269 } catch (RemoteException ex) { in handleEmergencyNumberTestModeCommand()
[all …]
/packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
DReverseGeocodeTask.java118 } catch (AuthException ex) { in doInBackground()
119 LogUtil.e("ReverseGeocodeTask.onLocationChanged", "AuthException", ex); in doInBackground()
121 } catch (JSONException ex) { in doInBackground()
122 LogUtil.e("ReverseGeocodeTask.onLocationChanged", "JSONException", ex); in doInBackground()
124 } catch (Exception ex) { in doInBackground()
125 LogUtil.e("ReverseGeocodeTask.onLocationChanged", "Exception!!!", ex); in doInBackground()
141 } catch (Exception ex) { in onPostExecute()
142 LogUtil.e("ReverseGeocodeTask.onPostExecute", "Exception!!!", ex); in onPostExecute()
/packages/apps/PermissionController/src/com/android/packageinstaller/incident/
DReportDetails.java51 public ParseException(String message, Throwable ex) { in ParseException() argument
52 super(message, ex); in ParseException()
85 } catch (IOException ex) { in parseIncidentReport()
86 throw new ParseException("Error while reading stream.", ex); in parseIncidentReport()
87 } catch (OutOfMemoryError ex) { in parseIncidentReport()
88 throw new ParseException("Out of memory while loading incident report.", ex); in parseIncidentReport()
/packages/services/BuiltInPrintService/src/com/android/bips/jni/
DPdfRender.java115 } catch (RemoteException | FileNotFoundException ex) { in openDocument()
116 Log.w(TAG, "Failed to open " + fileName, ex); in openDocument()
134 } catch (RemoteException | IllegalArgumentException ex) { in getPageSize()
135 Log.w(TAG, "getPageWidth failed", ex); in getPageSize()
182 } catch (RemoteException | IOException | IllegalArgumentException | OutOfMemoryError ex) { in renderPageStripe()
183 Log.w(TAG, "Render failed", ex); in renderPageStripe()
/packages/apps/Email/src/com/android/email/activity/setup/
DCheckSettingsErrorDialogFragment.java134 public static int getReasonFromException (MessagingException ex) { in getReasonFromException() argument
135 final int exceptionCode = ex.getExceptionType(); in getReasonFromException()
146 public static String getErrorString(Context context, MessagingException ex) { in getErrorString() argument
148 String message = ex.getMessage(); in getErrorString()
152 switch (ex.getExceptionType()) { in getErrorString()
181 String[] unsupportedPolicies = (String[]) ex.getExceptionData(); in getErrorString()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncherProvider.java437 } catch (SQLException ex) { in deleteEmptyFolders()
438 Log.e(TAG, ex.getMessage(), ex); in deleteEmptyFolders()
704 } catch (SQLException ex) { in onUpgrade()
705 Log.e(TAG, ex.getMessage(), ex); in onUpgrade()
885 } catch (SQLException ex) { in convertShortcutsToLauncherActivities()
886 Log.w(TAG, "Error deduping shortcuts", ex); in convertShortcutsToLauncherActivities()
911 } catch (SQLException ex) { in updateFolderItemsRank()
913 Log.e(TAG, ex.getMessage(), ex); in updateFolderItemsRank()
924 } catch (SQLException ex) { in addIntegerColumn()
925 Log.e(TAG, ex.getMessage(), ex); in addIntegerColumn()
/packages/apps/Gallery/src/com/android/camera/
DImageManager.java219 } catch (FileNotFoundException ex) { in addImage()
220 Log.w(TAG, ex); in addImage()
222 } catch (IOException ex) { in addImage()
223 Log.w(TAG, ex); in addImage()
254 } catch (IOException ex) { in getExifOrientation()
255 Log.e(TAG, "cannot read exif", ex); in getExifOrientation()
460 } catch (IOException ex) { in checkFsWritable()
495 } catch (UnsupportedOperationException ex) { in query()
DReverseGeocoderTask.java60 } catch (IOException ex) { in doInBackground()
62 Log.e(TAG, "Geocoder exception: ", ex); in doInBackground()
63 } catch (RuntimeException ex) { in doInBackground()
65 Log.e(TAG, "Geocoder exception: ", ex); in doInBackground()
/packages/apps/Messaging/src/com/android/messaging/
DBugleApplication.java184 public void uncaughtException(final Thread thread, final Throwable ex) { in uncaughtException() argument
187 LogUtil.e(TAG, "Uncaught exception in background thread " + thread, ex); in uncaughtException()
194 sSystemUncaughtExceptionHandler.uncaughtException(thread, ex); in uncaughtException()
198 sSystemUncaughtExceptionHandler.uncaughtException(thread, ex); in uncaughtException()
250 } catch (final Exception ex) { in maybeHandleSharedPrefsUpgrade()
253 LogUtil.e(LogUtil.BUGLE_TAG, "Failed to upgrade shared prefs", ex); in maybeHandleSharedPrefsUpgrade()
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
DThreadPool.java134 } catch (Throwable ex) { in run()
135 Log.w(TAG, "Exception in running a job", ex); in run()
178 } catch (Exception ex) { in get()
179 Log.w(TAG, "ingore exception", ex); in get()
247 } catch (InterruptedException ex) { in acquireResource()
/packages/apps/Camera2/src/com/android/camera/util/
DSize.java70 public Size(com.android.ex.camera2.portability.Size size) { in Size()
146 public com.android.ex.camera2.portability.Size toPortabilitySize() { in toPortabilitySize()
147 return new com.android.ex.camera2.portability.Size(width, height); in toPortabilitySize()
159 public static List<Size> convert(List<com.android.ex.camera2.portability.Size> sizes) { in convert()
161 for (com.android.ex.camera2.portability.Size size : sizes) { in convert()
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
DSapService.java211 } catch (IOException ex) { in closeServerSocket()
212 Log.e(TAG, "Close Server Socket error: ", ex); in closeServerSocket()
242 } catch (InterruptedException ex) { in closeService()
243 Log.w(TAG, "mAcceptThread close error", ex); in closeService()
381 } catch (IOException ex) { in run()
382 Log.e(TAG, "catch exception starting obex server session", ex); in run()
412 } catch (IOException ex) { in run()
415 Log.v(TAG, "Accept exception: ", ex); in run()
810 } catch (IOException ex) { in onReceive()
811 Log.e(TAG, "Caught the error: ", ex); in onReceive()

12345678910>>...14