Searched defs:problem (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/
H A DCameraAccessException.java111 public CameraAccessException(@AccessError int problem) { argument
112 super(getDefaultMessage(problem));
113 mReason = problem;
116 public CameraAccessException(@AccessError int problem, String message) { argument
117 super(getCombinedMessage(problem, message));
118 mReason = problem;
121 public CameraAccessException(@AccessError int problem, String message, Throwable cause) { argument
122 super(getCombinedMessage(problem, message), cause);
123 mReason = problem;
126 public CameraAccessException(@AccessError int problem, Throwabl argument
134 getDefaultMessage(@ccessError int problem) argument
155 getCombinedMessage(@ccessError int problem, String message) argument
160 getProblemString(int problem) argument
[all...]
/frameworks/base/core/java/android/view/
H A DInputEventConsistencyVerifier.java24 * Logs a description of each problem detected.
26 * When a problem is detected, the event is tainted. This mechanism prevents the same
40 // The number of recent events to log when a problem is detected.
221 problem("ACTION_DOWN but key is already down and this event "
232 problem("ACTION_UP but key was not down.");
241 problem("Invalid action " + KeyEvent.actionToString(action)
273 problem("ACTION_DOWN but trackball is already down.");
283 problem("ACTION_UP but trackball is not down.");
295 problem("Invalid action " + MotionEvent.actionToString(action)
301 problem("Trackbal
727 private void problem(String message) { method in class:InputEventConsistencyVerifier
[all...]

Completed in 74 milliseconds