Home
last modified time | relevance | path

Searched defs:e (Results 1 – 25 of 330) sorted by relevance

12345678910>>...14

/aosp14/frameworks/base/core/java/android/hardware/camera2/utils/
H A DUncheckedThrow.java28 public static void throwAnyException(Exception e) { in throwAnyException()
40 public static void throwAnyException(Throwable e) { in throwAnyException()
49 private static<T extends Throwable> void throwAnyImpl(Throwable e) throws T { in throwAnyImpl()
/aosp14/frameworks/base/core/java/android/view/
H A DGestureDetector.java73 boolean onDown(@NonNull MotionEvent e); in onDown()
83 void onShowPress(@NonNull MotionEvent e); in onShowPress()
92 boolean onSingleTapUp(@NonNull MotionEvent e); in onSingleTapUp()
119 void onLongPress(@NonNull MotionEvent e); in onLongPress()
163 boolean onDoubleTap(@NonNull MotionEvent e); in onDoubleTap()
172 boolean onDoubleTapEvent(@NonNull MotionEvent e); in onDoubleTapEvent()
187 boolean onContextClick(@NonNull MotionEvent e); in onContextClick()
203 public void onLongPress(@NonNull MotionEvent e) { in onLongPress()
216 public void onShowPress(@NonNull MotionEvent e) { in onShowPress()
219 public boolean onDown(@NonNull MotionEvent e) { in onDown()
[all …]
H A DInputQueue.java47 private static native long nativeSendKeyEvent(long ptr, KeyEvent e, boolean preDispatch); in nativeSendKeyEvent()
48 private static native long nativeSendMotionEvent(long ptr, MotionEvent e); in nativeSendMotionEvent()
93 public void sendInputEvent(InputEvent e, Object token, boolean predispatch, in sendInputEvent()
109 ActiveInputEvent e = mActiveEventArray.valueAt(index); in finishInputEvent() local
118 ActiveInputEvent e = mActiveInputEventPool.acquire(); in obtainActiveInputEvent() local
127 private void recycleActiveInputEvent(ActiveInputEvent e) { in recycleActiveInputEvent()
H A DInputEventCompatProcessor.java53 public List<InputEvent> processInputEventForCompatibility(InputEvent e) { in processInputEventForCompatibility()
77 public InputEvent processInputEventBeforeFinish(InputEvent e) { in processInputEventBeforeFinish()
/aosp14/frameworks/base/cmds/uinput/src/com/android/commands/uinput/
H A DUinput.java85 Event e = null; in run() local
98 private void process(Event e) { in process()
119 private void registerDevice(Event e) { in registerDevice()
134 private static void error(String msg, Exception e) { in error()
/aosp14/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DHid.java75 Event e = null; in run() local
88 private void process(Event e) { in process()
114 private void registerDevice(Event e) { in registerDevice()
129 private static void error(String msg, Exception e) { in error()
/aosp14/frameworks/base/services/backup/java/com/android/server/backup/keyvalue/
H A DKeyValueBackupReporter.java122 void onInitializeTransportError(Exception e) { in onInitializeTransportError()
130 void onExtractPmAgentDataError(Exception e) { in onExtractPmAgentDataError()
163 void onBindAgentError(String packageName, SecurityException e) { in onBindAgentError()
193 void onCallAgentDoBackupError(String packageName, boolean callingAgent, Exception e) { in onCallAgentDoBackupError()
226 void onAgentDataError(String packageName, IOException e) { in onAgentDataError()
230 void onDigestError(NoSuchAlgorithmException e) { in onDigestError()
284 void onAgentDoQuotaExceededError(Exception e) { in onAgentDoQuotaExceededError()
310 void onPackageBackupTransportError(String packageName, Exception e) { in onPackageBackupTransportError()
371 void onTransportRequestBackupTimeError(Exception e) { in onTransportRequestBackupTimeError()
385 void onSetCurrentTokenError(Exception e) { in onSetCurrentTokenError()
[all …]
/aosp14/system/core/fastboot/fuzzy_fastboot/
H A Dtransport_sniffer.cpp26 Event e(READ_ERROR, std::move(buf)); in Read() local
33 Event e(READ, std::move(buf)); in Read() local
47 Event e(WRITE_ERROR, std::move(buf)); in Write() local
54 Event e(WRITE, std::move(buf)); in Write() local
69 Event e(RESET, std::move(buf)); in Reset() local
188 Event e(SERIAL, std::move(buf)); in ProcessSerial() local
/aosp14/frameworks/base/core/java/com/android/internal/util/function/pooled/
H A DOmniFunction.java141 public R apply(A a, B b, C c, D d, E e) { in apply()
146 public R apply(A a, B b, C c, D d, E e, F f) { in apply()
151 public R apply(A a, B b, C c, D d, E e, F f, G g) { in apply()
156 public R apply(A a, B b, C c, D d, E e, F f, G g, H h) { in apply()
161 public R apply(A a, B b, C c, D d, E e, F f, G g, H h, I i) { in apply()
166 public R apply(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j) { in apply()
181 public void accept(A a, B b, C c, D d, E e) { in accept()
186 public void accept(A a, B b, C c, D d, E e, F f) { in accept()
191 public void accept(A a, B b, C c, D d, E e, F f, G g) { in accept()
196 public void accept(A a, B b, C c, D d, E e, F f, G g, H h) { in accept()
[all …]
/aosp14/frameworks/base/core/java/com/android/internal/os/
H A DRpmStats.java38 PowerStatePlatformSleepState e = mPlatformLowPowerStats.get(name); in getAndUpdatePlatformState() local
52 PowerStateSubsystem e = mSubsystemLowPowerStats.get(name); in getSubsystem() local
83 PowerStateElement e = mVoters.get(name); in putVoter() local
103 PowerStateElement e = mStates.get(name); in putState() local
H A DRuntimeInit.java77 public static void logUncaught(String threadName, String processName, int pid, Throwable e) { in logUncaught()
99 public void uncaughtException(Thread t, Throwable e) { in uncaughtException()
113 logUncaught(t.getName(), ActivityThread.currentProcessName(), Process.myPid(), e); in uncaughtException() local
144 public void uncaughtException(Thread t, Throwable e) { in uncaughtException()
196 private void ensureLogging(Thread t, Throwable e) { in ensureLogging()
/aosp14/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DAssociationServiceException.java28 public AssociationServiceException(String msg, Exception e) { in AssociationServiceException()
32 public AssociationServiceException(Exception e) { in AssociationServiceException()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/people/
H A DNotificationHelper.java104 public static boolean isMissedCall(NotificationEntry e) { in isMissedCall()
114 private static boolean hasContent(NotificationEntry e) { in hasContent()
124 public static boolean isValid(NotificationEntry e) { in isValid()
131 public static boolean isMissedCallOrHasContent(NotificationEntry e) { in isMissedCallOrHasContent()
/aosp14/frameworks/base/core/tests/coretests/src/android/content/integrity/
H A DIntegrityUtilsTest.java48 Exception e = in testInvalidHexDigest_mustHaveEvenLength() local
57 Exception e = in testInvalidHexDigest_invalidHexChar() local
H A DRuleTest.java58 Exception e = in testInvalidRule_invalidFormula() local
112 Exception e = in testInvalidRule_invalidEffect() local
/aosp14/system/core/init/
H A Dinterprocess_fifo_test.cpp22 #define ASSERT_OK(e) ASSERT_THAT(e, Ok()) argument
23 #define ASSERT_NOT_OK(e) ASSERT_THAT(e, Not(Ok())) argument
/aosp14/frameworks/base/services/core/java/com/android/server/location/listeners/
H A DBinderListenerRegistration.java69 public void onOperationFailure(ListenerOperation<TListener> operation, Exception e) { in onOperationFailure()
71 Log.w(getTag(), "registration " + this + " removed", e); in onOperationFailure() local
H A DPendingIntentListenerRegistration.java57 protected void onOperationFailure(ListenerOperation<TListener> operation, Exception e) { in onOperationFailure()
59 Log.w(getTag(), "registration " + this + " removed", e); in onOperationFailure() local
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DUdfpsLogger.kt32 fun e(tag: String, @CompileTimeConstant msg: String) = log(tag, msg, ERROR) regex
34 fun e(tag: String, @CompileTimeConstant msg: String, throwable: Throwable?) { regex
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotifInflationErrorManager.java50 public void setInflationError(NotificationEntry entry, Exception e) { in setInflationError()
93 void onNotifInflationError(NotificationEntry entry, Exception e); in onNotifInflationError()
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DDecorCaptionView.java174 public boolean onTouch(View v, MotionEvent e) { in onTouch()
372 public boolean onDown(MotionEvent e) { in onDown()
377 public void onShowPress(MotionEvent e) { in onShowPress()
382 public boolean onSingleTapUp(MotionEvent e) { in onSingleTapUp()
398 public void onLongPress(MotionEvent e) { in onLongPress()
/aosp14/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsic3DLUT.java35 private ScriptIntrinsic3DLUT(long id, RenderScript rs, Element e) { in ScriptIntrinsic3DLUT()
50 public static ScriptIntrinsic3DLUT create(RenderScript rs, Element e) { in create()
H A DScriptIntrinsicBlur.java48 public static ScriptIntrinsicBlur create(RenderScript rs, Element e) { in create()
68 Element e = ain.getElement(); in setInput() local
/aosp14/frameworks/base/keystore/java/android/security/keystore2/
H A DKeyStoreCryptoOperationUtils.java112 AndroidKeyStoreKey key, KeyStoreException e) { in getInvalidKeyException()
138 AndroidKeyStoreKey key, KeyStoreException e) { in getExceptionForCipherInit()
/aosp14/frameworks/base/core/java/android/util/
H A DExceptionUtils.java33 public static RuntimeException wrap(IOException e) { in wrap()
37 public static void maybeUnwrapIOException(RuntimeException e) throws IOException { in maybeUnwrapIOException()

12345678910>>...14