Home
last modified time | relevance | path

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

12345678910>>...127

/packages/apps/Calendar/src/com/android/calendar/
DEvent.java159 Event e = new Event(); in clone() local
161 e.title = title; in clone()
162 e.color = color; in clone()
163 e.location = location; in clone()
164 e.allDay = allDay; in clone()
165 e.startDay = startDay; in clone()
166 e.endDay = endDay; in clone()
167 e.startTime = startTime; in clone()
168 e.endTime = endTime; in clone()
169 e.startMillis = startMillis; in clone()
[all …]
/packages/apps/TV/tuner/src/com/android/tv/tuner/
DDvbDeviceAccessor.java62 } catch (ClassNotFoundException e) {
63 Log.e(TAG, "Couldn't find class", e);
64 } catch (NoSuchMethodException e) {
65 Log.e(TAG, "Couldn't find method", e);
82 } catch (IllegalAccessException e) { in getDvbDeviceList()
83 Log.e(TAG, "Couldn't access", e); in getDvbDeviceList()
84 } catch (InvocationTargetException e) { in getDvbDeviceList()
85 Log.e(TAG, "Couldn't invoke", e); in getDvbDeviceList()
100 } catch (IllegalAccessException e) { in isDvbDeviceAvailable()
101 Log.e(TAG, "Couldn't access", e); in isDvbDeviceAvailable()
[all …]
/packages/apps/Nfc/src/com/android/nfc/sneptest/
DDtaSnepClient.java89 } catch(IOException e) { in DtaClientOperations()
90 Log.e(TAG, "Error connecting remote server"); in DtaClientOperations()
100 } catch (UnsupportedEncodingException e) { in DtaClientOperations()
101 e.printStackTrace(); in DtaClientOperations()
102 } catch (IOException e) { in DtaClientOperations()
103 e.printStackTrace(); in DtaClientOperations()
115 } catch (UnsupportedEncodingException e) { in DtaClientOperations()
116 e.printStackTrace(); in DtaClientOperations()
117 } catch (IOException e) { in DtaClientOperations()
118 e.printStackTrace(); in DtaClientOperations()
[all …]
/packages/apps/Nfc/nci/jni/
DNfcJniUtil.cpp45 JNIEnv* e = NULL; in JNI_OnLoad() local
50 if (jvm->GetEnv((void**)&e, JNI_VERSION_1_6)) return JNI_ERR; in JNI_OnLoad()
52 if (android::register_com_android_nfc_NativeNfcManager(e) == -1) in JNI_OnLoad()
54 if (android::register_com_android_nfc_NativeLlcpServiceSocket(e) == -1) in JNI_OnLoad()
56 if (android::register_com_android_nfc_NativeLlcpSocket(e) == -1) in JNI_OnLoad()
58 if (android::register_com_android_nfc_NativeNfcTag(e) == -1) return JNI_ERR; in JNI_OnLoad()
59 if (android::register_com_android_nfc_NativeLlcpConnectionlessSocket(e) == -1) in JNI_OnLoad()
61 if (android::register_com_android_nfc_NativeP2pDevice(e) == -1) in JNI_OnLoad()
63 if (RoutingManager::getInstance().registerJniFunctions(e) == -1) in JNI_OnLoad()
80 int nfc_jni_cache_object(JNIEnv* e, const char* className, jobject* cachedObj) { in nfc_jni_cache_object() argument
[all …]
DNfcTag.cpp540 JNIEnv* e = NULL; in createNativeNfcTag() local
541 ScopedAttach attach(mNativeData->vm, &e); in createNativeNfcTag()
542 if (e == NULL) { in createNativeNfcTag()
547 ScopedLocalRef<jclass> tag_cls(e, in createNativeNfcTag()
548 e->GetObjectClass(mNativeData->cached_NfcTag)); in createNativeNfcTag()
549 if (e->ExceptionCheck()) { in createNativeNfcTag()
550 e->ExceptionClear(); in createNativeNfcTag()
556 jmethodID ctor = e->GetMethodID(tag_cls.get(), "<init>", "()V"); in createNativeNfcTag()
557 ScopedLocalRef<jobject> tag(e, e->NewObject(tag_cls.get(), ctor)); in createNativeNfcTag()
560 fillNativeNfcTagMembers1(e, tag_cls.get(), tag.get()); in createNativeNfcTag()
[all …]
DNativeLlcpConnectionlessSocket.cpp60 static jboolean nativeLlcpConnectionlessSocket_doSendTo(JNIEnv* e, jobject o, in nativeLlcpConnectionlessSocket_doSendTo() argument
66 ScopedLocalRef<jclass> c(e, e->GetObjectClass(o)); in nativeLlcpConnectionlessSocket_doSendTo()
67 jfieldID f = e->GetFieldID(c.get(), "mHandle", "I"); in nativeLlcpConnectionlessSocket_doSendTo()
68 jint handle = e->GetIntField(o, f); in nativeLlcpConnectionlessSocket_doSendTo()
70 ScopedByteArrayRO bytes(e, data); in nativeLlcpConnectionlessSocket_doSendTo()
168 static jobject nativeLlcpConnectionlessSocket_doReceiveFrom(JNIEnv* e, jobject, in nativeLlcpConnectionlessSocket_doReceiveFrom() argument
173 ScopedLocalRef<jclass> clsLlcpPacket(e, NULL); in nativeLlcpConnectionlessSocket_doReceiveFrom()
207 if (nfc_jni_cache_object_local(e, "com/android/nfc/LlcpPacket", in nativeLlcpConnectionlessSocket_doReceiveFrom()
214 clsLlcpPacket.reset(e->GetObjectClass(llcpPacket)); in nativeLlcpConnectionlessSocket_doReceiveFrom()
215 if (e->ExceptionCheck()) { in nativeLlcpConnectionlessSocket_doReceiveFrom()
[all …]
DNativeNfcManager.cpp162 static void nfcManager_doSetScreenState(JNIEnv* e, jobject o,
211 nfc_jni_native_data* getNative(JNIEnv* e, jobject o) { in getNative() argument
213 if (e) { in getNative()
214 sCachedNat = nfc_jni_get_nat(e, o); in getNative()
628 static jboolean nfcManager_initNativeStruc(JNIEnv* e, jobject o) { in nfcManager_initNativeStruc() argument
641 e->GetJavaVM(&(nat->vm)); in nfcManager_initNativeStruc()
642 nat->env_version = e->GetVersion(); in nfcManager_initNativeStruc()
643 nat->manager = e->NewGlobalRef(o); in nfcManager_initNativeStruc()
645 ScopedLocalRef<jclass> cls(e, e->GetObjectClass(o)); in nfcManager_initNativeStruc()
646 jfieldID f = e->GetFieldID(cls.get(), "mNative", "J"); in nfcManager_initNativeStruc()
[all …]
/packages/services/Car/car-lib/src/android/car/media/
DCarAudioManager.java116 } catch (RemoteException e) { in isDynamicRoutingEnabled()
117 throw e.rethrowFromSystemServer(); in isDynamicRoutingEnabled()
149 } catch (RemoteException e) { in setGroupVolume()
150 throw e.rethrowFromSystemServer(); in setGroupVolume()
179 } catch (RemoteException e) { in getGroupMaxVolume()
180 throw e.rethrowFromSystemServer(); in getGroupMaxVolume()
209 } catch (RemoteException e) { in getGroupMinVolume()
210 throw e.rethrowFromSystemServer(); in getGroupMinVolume()
242 } catch (RemoteException e) { in getGroupVolume()
243 throw e.rethrowFromSystemServer(); in getGroupVolume()
[all …]
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/notification/
DNotificationBackend.java68 Log.e(TAG, "Error loading application label for " + row.pkg, t); in loadAppRow()
128 } catch (PackageManager.NameNotFoundException e) { in isSystemApp()
129 e.printStackTrace(); in isSystemApp()
138 } catch (Exception e) { in getNotificationsBanned()
139 Log.w(TAG, "Error calling NoMan", e); in getNotificationsBanned()
154 } catch (Exception e) { in setNotificationsEnabledForPackage()
155 Log.w(TAG, "Error calling NoMan", e); in setNotificationsEnabledForPackage()
163 } catch (Exception e) { in canShowBadge()
164 Log.w(TAG, "Error calling NoMan", e); in canShowBadge()
173 } catch (Exception e) { in setShowBadge()
[all …]
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationBackend.java70 Log.e(TAG, "Error loading application label for " + row.pkg, t); in loadAppRow()
136 } catch (PackageManager.NameNotFoundException e) { in isSystemApp()
137 e.printStackTrace(); in isSystemApp()
146 } catch (Exception e) { in getNotificationsBanned()
147 Log.w(TAG, "Error calling NoMan", e); in getNotificationsBanned()
162 } catch (Exception e) { in setNotificationsEnabledForPackage()
163 Log.w(TAG, "Error calling NoMan", e); in setNotificationsEnabledForPackage()
171 } catch (Exception e) { in canShowBadge()
172 Log.w(TAG, "Error calling NoMan", e); in canShowBadge()
181 } catch (Exception e) { in setShowBadge()
[all …]
/packages/apps/Messaging/src/com/android/messaging/sms/
DMmsUtils.java411 } catch (final IOException e) { in getMediaDurationMs()
412 … LogUtil.i(LogUtil.BUGLE_TAG, "Error extracting duration from " + part.getContentUri(), e); in getMediaDurationMs()
467 LogUtil.e(TAG, "Can't get image", new Exception()); in addPicturePart()
499 final OutOfMemoryError e = new OutOfMemoryError(); in addPicturePart() local
500 LogUtil.e(TAG, "Can't resize image: not enough memory?", e); in addPicturePart()
501 throw e; in addPicturePart()
534 LogUtil.e(TAG, "Can't get vcard", new Exception()); in addVCardPart()
612 } catch (final IOException e) { in getDataLength()
613 LogUtil.e(TAG, "getDataLength couldn't stream: " + uri, e); in getDataLength()
615 } catch (final FileNotFoundException e) { in getDataLength()
[all …]
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
DForwardingContentProvider.java55 } catch (RemoteException e) { in query()
56 throw new RuntimeException(e); in query()
67 } catch (RemoteException e) { in query()
68 throw new RuntimeException(e); in query()
76 } catch (RemoteException e) { in getType()
77 throw new RuntimeException(e); in getType()
85 } catch (RemoteException e) { in getStreamTypes()
86 throw new RuntimeException(e); in getStreamTypes()
94 } catch (RemoteException e) { in insert()
95 throw new RuntimeException(e); in insert()
[all …]
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
DCameraManager.java94 void onCameraError(int errorCode, Exception e); in onCameraError() argument
233 } catch (final RuntimeException e) { in CameraManager()
234 LogUtil.e(TAG, "Unable to load camera info", e); in CameraManager()
341 } catch (final RuntimeException e) { in selectCamera()
342 LogUtil.e(TAG, "RuntimeException in CameraManager.selectCamera", e); in selectCamera()
344 mListener.onCameraError(ERROR_OPENING_CAMERA, e); in selectCamera()
365 } catch (final RuntimeException e) { in selectCameraByIndex()
366 LogUtil.e(TAG, "RuntimeException in CameraManager.selectCameraByIndex", e); in selectCameraByIndex()
368 mListener.onCameraError(ERROR_OPENING_CAMERA, e); in selectCameraByIndex()
427 } catch (final Exception e) { in openCamera()
[all …]
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DRcsProvider.java358 Log.e(TAG, "Querying individual event types is not supported, uri: " + uri); in query()
361 Log.e(TAG, "Querying participant events with id's is not supported, uri: " + uri); in query()
371 Log.e(TAG, in query()
392 Log.e(TAG, "Querying individual event types is not supported, uri: " + uri); in query()
399 Log.e(TAG, in query()
412 Log.e(TAG, in query()
421 Log.e(TAG, in query()
429 Log.e(TAG, in query()
437 Log.e(TAG, in query()
445 Log.e(TAG, in query()
[all …]
/packages/apps/Nfc/tests/src/com/android/nfc/snep/
DSnepBasicTests.java49 } catch (Exception e) { in testGetSmallNdef()
50 Log.e(TAG, "error getting message", e); in testGetSmallNdef()
59 } catch (SnepException e) { in testGetSmallNdef()
60 throw new IOException("Failed to retrieve SNEP message", e); in testGetSmallNdef()
80 } catch (Exception e) { in testGetLargeNdef()
81 Log.e(TAG, "error getting message", e); in testGetLargeNdef()
90 } catch (SnepException e) { in testGetLargeNdef()
91 throw new IOException("Failed to retrieve SNEP message", e); in testGetLargeNdef()
111 } catch (Exception e) { in testGetExcessiveNdef()
112 Log.e(TAG, "error getting message", e); in testGetExcessiveNdef()
[all …]
/packages/apps/Messaging/src/com/android/messaging/mmslib/
DSqliteWrapper.java41 } catch (SQLiteException e) { in query()
42 LogUtil.e(TAG, "SqliteWrapper: catch an exception when query", e); in query()
44 } catch (IllegalArgumentException e) { in query()
45 LogUtil.e(TAG, "SqliteWrapper: catch an exception when query", e); in query()
54 } catch (SQLiteException e) { in update()
55 LogUtil.e(TAG, "SqliteWrapper: catch an exception when update", e); in update()
57 } catch (IllegalArgumentException e) { in update()
58 LogUtil.e(TAG, "SqliteWrapper: catch an exception when update", e); in update()
67 } catch (SQLiteException e) { in delete()
68 LogUtil.e(TAG, "SqliteWrapper: catch an exception when delete", e); in delete()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomServiceImpl.java124 } catch (Exception e) {
125 Log.e(this, e, "getDefaultOutgoingPhoneAccount");
126 throw e;
148 } catch (Exception e) {
149 Log.e(this, e, "getUserSelectedOutgoingPhoneAccount");
150 throw e;
168 } catch (Exception e) {
169 Log.e(this, e, "setUserSelectedOutgoingPhoneAccount");
170 throw e;
194 } catch (Exception e) {
[all …]
/packages/services/Mms/src/com/android/mms/service/
DMmsService.java288 LogUtil.e("deleteStoredMessage: invalid message URI: " + messageUri.toString());
298 LogUtil.e("deleteStoredMessage: failed to delete");
301 } catch (SQLiteException e) {
302 LogUtil.e("deleteStoredMessage: failed to delete", e);
315 LogUtil.e("deleteStoredConversation: invalid thread id");
326 LogUtil.e("deleteStoredConversation: failed to delete");
329 } catch (SQLiteException e) {
330 LogUtil.e("deleteStoredConversation: failed to delete", e);
350 LogUtil.e("archiveStoredConversation: invalid thread id");
418 LogUtil.e("Add running or pending: empty request"); in addSimRequest()
[all …]
/packages/apps/MusicFX/src/com/android/musicfx/
DControlPanelEffect.java237 } catch (final IllegalStateException e) { in initEffectsPreferences()
238 Log.e(TAG, "Equalizer: " + e); in initEffectsPreferences()
239 } catch (final IllegalArgumentException e) { in initEffectsPreferences()
240 Log.e(TAG, "Equalizer: " + e); in initEffectsPreferences()
241 } catch (final UnsupportedOperationException e) { in initEffectsPreferences()
242 Log.e(TAG, "Equalizer: " + e); in initEffectsPreferences()
243 } catch (final RuntimeException e) { in initEffectsPreferences()
244 Log.e(TAG, "Equalizer: " + e); in initEffectsPreferences()
254 Log.e(TAG, "Error retrieving default EQ values, setting all presets" in initEffectsPreferences()
326 } catch (final RuntimeException e) { in initEffectsPreferences()
[all …]
/packages/apps/Email/provider_src/com/android/email/provider/
DDBHelper.java419 } catch (SQLException e) { in resetMessageTable()
529 } catch (SQLException e) { in resetAccountTable()
582 } catch (SQLException e) { in resetHostAuthTable()
628 } catch (SQLException e) { in resetMailboxTable()
659 } catch (SQLException e) { in resetAttachmentTable()
692 } catch (final SQLException e) { in upgradeBodyToVersion5()
694 LogUtils.w(TAG, e, "Exception upgrading EmailProviderBody.db from <v5"); in upgradeBodyToVersion5()
703 } catch (final SQLException e) { in upgradeBodyFromVersion5ToVersion6()
705 LogUtils.w(TAG, e, "Exception upgrading EmailProviderBody.db from v5 to v6"); in upgradeBodyFromVersion5ToVersion6()
713 } catch (final SQLException e) { in upgradeBodyFromVersion6ToVersion8()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DMotionEventHelper.java28 public static MotionEvent transformEvent(MotionEvent e, Matrix m) { in transformEvent() argument
32 return transformEventNew(e, m); in transformEvent()
34 return transformEventOld(e, m); in transformEvent()
39 private static MotionEvent transformEventNew(MotionEvent e, Matrix m) { in transformEventNew() argument
40 MotionEvent newEvent = MotionEvent.obtain(e); in transformEventNew()
46 private static MotionEvent transformEventOld(MotionEvent e, Matrix m) { in transformEventOld() argument
47 long downTime = e.getDownTime(); in transformEventOld()
48 long eventTime = e.getEventTime(); in transformEventOld()
49 int action = e.getAction(); in transformEventOld()
50 int pointerCount = e.getPointerCount(); in transformEventOld()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DBinaryDictionaryFileDumper.java184 } catch (RemoteException e) { in getWordListWordListInfos()
188 Log.e(TAG, "RemoteException: communication with the dictionary pack cut", e); in getWordListWordListInfos()
190 } catch (Exception e) { in getWordListWordListInfos()
194 Log.e(TAG, "Unexpected exception communicating with the dictionary pack", e); in getWordListWordListInfos()
212 } catch (FileNotFoundException e) { in openAssetFileDescriptor()
215 Log.e(TAG, "Could not find a word list from the dictionary provider." in openAssetFileDescriptor()
218 } catch (RemoteException e) { in openAssetFileDescriptor()
219 Log.e(TAG, "Can't communicate with the dictionary pack", e); in openAssetFileDescriptor()
246 } catch (RemoteException e) { in installWordListToStaging()
247 Log.e(TAG, "Can't communicate with the dictionary pack", e); in installWordListToStaging()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java363 } catch (IOException e) { in onConnect()
364 Log.e(TAG, "Exception during onConnect:", e); in onConnect()
383 } catch (IOException e) { in onConnect()
384 Log.e(TAG, "Exception during onConnect:", e); in onConnect()
490 Log.e(TAG, "Storage locked, " + type + " failed"); in onPut()
503 Log.e(TAG, "Storage locked, " + type + " failed"); in onPut()
515 Log.e(TAG, "Storage locked, " + type + " failed"); in onPut()
531 } catch (RemoteException e) { in onPut()
539 } catch (Exception e) { in onPut()
542 Log.e(TAG, "Exception occured while handling request", e); in onPut()
[all …]
/packages/services/Car/service/src/com/android/car/trust/
DCarTrustAgentEnrollmentService.java177 Log.e(TAG, "Trusted Device Enrollment disabled"); in startEnrollmentAdvertising()
356 } catch (RemoteException e) { in registerEnrollmentCallback()
357 Log.e(TAG, "Cannot link death recipient to binder ", e); in registerEnrollmentCallback()
377 Log.e(TAG, "onEscrowTokenAdded() but no remote device connected!"); in onEscrowTokenAdded()
387 } catch (RemoteException e) { in onEscrowTokenAdded()
388 Log.e(TAG, "onEscrowTokenAdded dispatch failed", e); in onEscrowTokenAdded()
403 } catch (RemoteException e) { in onEscrowTokenRemoved()
404 Log.e(TAG, "onEscrowTokenRemoved dispatch failed", e); in onEscrowTokenRemoved()
429 Log.e(TAG, "EscrowToken removed, but shared prefs update failed"); in onEscrowTokenRemoved()
444 Log.e(TAG, in onEscrowTokenActiveStateChanged()
[all …]
/packages/apps/Car/Hvac/src/com/android/car/hvac/
DHvacController.java165 } catch (CarNotConnectedException e) { in initHvacManager()
166 Log.e(TAG, "Car not connected in HVAC"); in initHvacManager()
180 } catch (CarNotConnectedException e) {
181 Log.e(TAG, "Car not connected in onServiceConnected");
408 } catch (InterruptedException e) { in requestRefresh()
443 } catch (android.car.CarNotConnectedException e) { in isTemperatureControlAvailable()
444 Log.e(TAG, "Car not connected in isTemperatureControlAvailable"); in isTemperatureControlAvailable()
467 } catch (android.car.CarNotConnectedException e) { in fetchTemperature()
468 Log.e(TAG, "Car not connected in fetchTemperature"); in fetchTemperature()
498 } catch (android.car.CarNotConnectedException e) { in setTemperature()
[all …]

12345678910>>...127