Home
last modified time | relevance | path

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

12345678910>>...124

/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/dvb/
DDvbDeviceAccessor.java65 } catch (ClassNotFoundException e) {
66 Log.e(TAG, "Couldn't find class", e);
67 } catch (NoSuchMethodException e) {
68 Log.e(TAG, "Couldn't find method", e);
89 } catch (IllegalAccessException e) { in getDvbDeviceList()
90 Log.e(TAG, "Couldn't access", e); in getDvbDeviceList()
91 } catch (InvocationTargetException e) { in getDvbDeviceList()
92 Log.e(TAG, "Couldn't invoke", e); in getDvbDeviceList()
110 } catch (IllegalAccessException e) { in isDvbDeviceAvailable()
111 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/
DNfcTag.cpp37 static void deleteglobaldata(JNIEnv* e);
478 JNIEnv* e = NULL; in createNativeNfcTag() local
479 ScopedAttach attach(mNativeData->vm, &e); in createNativeNfcTag()
480 if (e == NULL) { in createNativeNfcTag()
485 ScopedLocalRef<jclass> tag_cls(e, in createNativeNfcTag()
486 e->GetObjectClass(mNativeData->cached_NfcTag)); in createNativeNfcTag()
487 if (e->ExceptionCheck()) { in createNativeNfcTag()
488 e->ExceptionClear(); in createNativeNfcTag()
494 jmethodID ctor = e->GetMethodID(tag_cls.get(), "<init>", "()V"); in createNativeNfcTag()
495 ScopedLocalRef<jobject> tag(e, e->NewObject(tag_cls.get(), ctor)); in createNativeNfcTag()
[all …]
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 …]
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.cpp163 static void nfcManager_doSetScreenState(JNIEnv* e, jobject o,
212 nfc_jni_native_data* getNative(JNIEnv* e, jobject o) { in getNative() argument
214 if (e) { in getNative()
215 sCachedNat = nfc_jni_get_nat(e, o); in getNative()
660 static jboolean nfcManager_initNativeStruc(JNIEnv* e, jobject o) { in nfcManager_initNativeStruc() argument
673 e->GetJavaVM(&(nat->vm)); in nfcManager_initNativeStruc()
674 nat->env_version = e->GetVersion(); in nfcManager_initNativeStruc()
675 nat->manager = e->NewGlobalRef(o); in nfcManager_initNativeStruc()
677 ScopedLocalRef<jclass> cls(e, e->GetObjectClass(o)); in nfcManager_initNativeStruc()
678 jfieldID f = e->GetFieldID(cls.get(), "mNative", "J"); in nfcManager_initNativeStruc()
[all …]
/packages/services/Car/car-lib/src/android/car/media/
DCarAudioManager.java114 } catch (RemoteException e) { in isDynamicRoutingEnabled()
115 return handleRemoteExceptionFromCarService(e, false); in isDynamicRoutingEnabled()
147 } catch (RemoteException e) { in setGroupVolume()
148 handleRemoteExceptionFromCarService(e); in setGroupVolume()
177 } catch (RemoteException e) { in getGroupMaxVolume()
178 return handleRemoteExceptionFromCarService(e, 0); in getGroupMaxVolume()
207 } catch (RemoteException e) { in getGroupMinVolume()
208 return handleRemoteExceptionFromCarService(e, 0); in getGroupMinVolume()
240 } catch (RemoteException e) { in getGroupVolume()
241 return handleRemoteExceptionFromCarService(e, 0); 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.java416 } catch (final IOException e) { in getMediaDurationMs()
417 … LogUtil.i(LogUtil.BUGLE_TAG, "Error extracting duration from " + part.getContentUri(), e); in getMediaDurationMs()
472 LogUtil.e(TAG, "Can't get image", new Exception()); in addPicturePart()
504 final OutOfMemoryError e = new OutOfMemoryError(); in addPicturePart() local
505 LogUtil.e(TAG, "Can't resize image: not enough memory?", e); in addPicturePart()
506 throw e; in addPicturePart()
539 LogUtil.e(TAG, "Can't get vcard", new Exception()); in addVCardPart()
617 } catch (final IOException e) { in getDataLength()
618 LogUtil.e(TAG, "getDataLength couldn't stream: " + uri, e); in getDataLength()
620 } 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/Bluetooth/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreService.java162 } catch (KeyStoreException e) { in start()
163 reportKeystoreException(e, "cannot find the keystore"); in start()
176 } catch (IOException e) { in factoryReset()
177 reportBluetoothKeystoreException(e, "IO error while file operating."); in factoryReset()
218 } catch (InterruptedException e) { in cleanupForNiapModeEnable()
219 reportBluetoothKeystoreException(e, "Interrupted while operating."); in cleanupForNiapModeEnable()
220 } catch (IOException e) { in cleanupForNiapModeEnable()
221 reportBluetoothKeystoreException(e, "IO error while file operating."); in cleanupForNiapModeEnable()
222 } catch (NoSuchAlgorithmException e) { in cleanupForNiapModeEnable()
223 reportBluetoothKeystoreException(e, "encrypt could not find the algorithm: SHA256"); in cleanupForNiapModeEnable()
[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/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/services/Mms/src/com/android/mms/service/
DMmsService.java189 LogUtil.e("Invalid subId " + subId);
244 LogUtil.e("Invalid subId " + subId);
296 LogUtil.e("deleteStoredMessage: invalid message URI: " + messageUri.toString());
306 LogUtil.e("deleteStoredMessage: failed to delete");
309 } catch (SQLiteException e) {
310 LogUtil.e("deleteStoredMessage: failed to delete", e);
323 LogUtil.e("deleteStoredConversation: invalid thread id");
334 LogUtil.e("deleteStoredConversation: failed to delete");
337 } catch (SQLiteException e) {
338 LogUtil.e("deleteStoredConversation: failed to delete", e);
[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/apps/SecureElement/src/com/android/se/
DTerminal.java152 } catch (Exception e) { in stateChange()
168 Log.e(mTag, mName + " died"); in serviceDied()
198 } catch (Exception e) {
199 Log.e(mTag, mName + " could not be initialized again");
205 Log.e(mTag, mName + " reach maximum retry count");
234 } catch (Exception e) { in initialize()
242 } catch (Exception e) { in initialize()
307 Log.e(mTag, "Error closing channel " + channel.getChannelNumber()); in closeChannel()
309 } catch (RemoteException e) { in closeChannel()
310 Log.e(mTag, "Exception in closeChannel() " + e); in closeChannel()
[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/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/modules/DnsResolver/
Dres_cache.cpp791 static void entry_free(Entry* e) { in entry_free() argument
793 if (e) { in entry_free()
794 free(e); in entry_free()
798 static void entry_mru_remove(Entry* e) { in entry_mru_remove() argument
799 e->mru_prev->mru_next = e->mru_next; in entry_mru_remove()
800 e->mru_next->mru_prev = e->mru_prev; in entry_mru_remove()
803 static void entry_mru_add(Entry* e, Entry* list) { in entry_mru_add() argument
806 e->mru_next = first; in entry_mru_add()
807 e->mru_prev = list; in entry_mru_add()
809 list->mru_next = e; in entry_mru_add()
[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/services/Telecomm/src/com/android/server/telecom/
DTelecomServiceImpl.java125 } catch (Exception e) {
126 Log.e(this, e, "getDefaultOutgoingPhoneAccount");
127 throw e;
149 } catch (Exception e) {
150 Log.e(this, e, "getUserSelectedOutgoingPhoneAccount");
151 throw e;
169 } catch (Exception e) {
170 Log.e(this, e, "setUserSelectedOutgoingPhoneAccount");
171 throw e;
200 } catch (Exception e) {
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java368 } catch (IOException e) { in onConnect()
369 Log.e(TAG, "Exception during onConnect:", e); in onConnect()
388 } catch (IOException e) { in onConnect()
389 Log.e(TAG, "Exception during onConnect:", e); in onConnect()
495 Log.e(TAG, "Storage locked, " + type + " failed"); in onPut()
508 Log.e(TAG, "Storage locked, " + type + " failed"); in onPut()
520 Log.e(TAG, "Storage locked, " + type + " failed"); in onPut()
536 } catch (RemoteException e) { in onPut()
544 } catch (Exception e) { in onPut()
547 Log.e(TAG, "Exception occured while handling request", e); in onPut()
[all …]
/packages/services/Car/service/src/com/android/car/trust/
DCarTrustAgentEnrollmentService.java182 Log.e(TAG, "Trusted Device Enrollment disabled"); in startEnrollmentAdvertising()
381 } catch (RemoteException e) { in registerEnrollmentCallback()
382 Log.e(TAG, "Cannot link death recipient to binder ", e); in registerEnrollmentCallback()
402 Log.e(TAG, "onEscrowTokenAdded() but no remote device connected!"); in onEscrowTokenAdded()
412 } catch (RemoteException e) { in onEscrowTokenAdded()
413 Log.e(TAG, "onEscrowTokenAdded dispatch failed", e); in onEscrowTokenAdded()
428 } catch (RemoteException e) { in onEscrowTokenRemoved()
429 Log.e(TAG, "onEscrowTokenRemoved dispatch failed", e); in onEscrowTokenRemoved()
454 Log.e(TAG, "EscrowToken removed, but shared prefs update failed"); in onEscrowTokenRemoved()
469 Log.e(TAG, in onEscrowTokenActiveStateChanged()
[all …]

12345678910>>...124