Searched defs:action (Results 1 - 25 of 282) sorted by last modified time

1234567891011>>

/packages/services/Telephony/tests/src/com/android/phone/tests/
H A DCallDialTest.java110 private void fireIntent(String action) { argument
111 log("fireIntent(action = '" + action + "')...");
135 Intent intent = new Intent(action, uri);
/packages/services/Telecomm/src/com/android/server/telecom/ui/
H A DMissedCallNotifierImpl.java511 * @param action The intent action.
514 private PendingIntent createTelecomPendingIntent(String action, Uri data, argument
516 Intent intent = new Intent(action, data, mContext, TelecomBroadcastReceiver.class);
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DCallAudioRouteStateMachineTest.java77 public int action; field in class:CallAudioRouteStateMachineTest.RoutingTestParameters
87 int bluetoothInteraction, int action, int expectedRoute,
95 this.action = action;
115 ", action=" + action +
409 CallAudioRouteStateMachine.CONNECT_WIRED_HEADSET, // action
422 CallAudioRouteStateMachine.CONNECT_WIRED_HEADSET, // action
435 CallAudioRouteStateMachine.CONNECT_WIRED_HEADSET, // action
448 CallAudioRouteStateMachine.DISCONNECT_WIRED_HEADSET, // action
85 RoutingTestParameters(String name, int initialRoute, int availableRoutes, int speakerInteraction, int bluetoothInteraction, int action, int expectedRoute, int expectedAvailableRoutes, boolean doesDeviceSupportEarpiece, boolean shouldRunWithFocus) argument
[all...]
H A DComponentContextFixture.java530 private void addService(String action, ComponentName name, IInterface service) { argument
531 mComponentNamesByAction.put(action, name);
H A DNewOutgoingCallIntentBroadcasterTest.java374 private Intent buildIntent(Uri handle, String action, Bundle extras) { argument
375 Intent i = new Intent(action, handle);
/packages/services/Car/TrustAgent/src/com/android/car/trust/comms/
H A DSimpleBleClient.java67 * Wrapper class to allow queuing of BLE actions. The BLE stack allows only one action to be
77 public BleAction(BluetoothGattCharacteristic characteristic, int action) { argument
78 mAction = action;
159 * Writes to a {@link BluetoothGattCharacteristic} if possible, or queues the action until
169 * Reads a {@link BluetoothGattCharacteristic} if possible, or queues the read action until
201 private void processAction(BleAction action) { argument
204 mBleActionQueue.add(action);
208 mBleActionQueue.add(action);
217 private void executeAction(BleAction action) { argument
218 if (action
[all...]
/packages/services/Car/car-support-lib/src/android/support/car/ui/
H A DCarActionExtender.java36 public CarActionExtender(NotificationCompat.Action action) { argument
37 Bundle autoBundle = action.getExtras();
H A DCarLayoutManager.java1498 protected void onTargetFound(View targetView, RecyclerView.State state, Action action) { argument
1509 action.update(0, -dy, time, mInterpolator);
H A DPagedLayoutManager.java136 protected void onTargetFound(View targetView, RecyclerView.State state, Action action) { argument
143 action.update(0, -dy, DURATION_MS, mInterpolator);
/packages/services/Car/libvehiclemonitor/java/src/com/android/car/vehiclemonitor/
H A DVehicleMonitor.java62 void onAppViolation(int pid, int uid, int action, int violation); argument
135 private void notifyAppViolation(int pid, int uid, int action, int violation) { argument
136 AppViolation appViolation = new AppViolation(pid, uid, action, violation);
161 public void onAppViolation(int pid, int uid, int action, int violation) { argument
164 vehicleMonitor.mEventHandler.notifyAppViolation(pid, uid, action, violation);
175 AppViolation(int pid, int uid, int action, int violation) { argument
178 mAction = action;
/packages/services/Car/libvehiclemonitor/native/
H A DIVehicleMonitorListener.cpp42 int32_t pid, int32_t uid, int32_t action, int32_t violation) {
48 data.writeInt32(action);
69 int32_t action = data.readInt32(); local
71 onAppViolation(pid, uid, action, violation);
41 onAppViolation( int32_t pid, int32_t uid, int32_t action, int32_t violation) argument
/packages/services/Car/service/src/com/android/car/
H A DCarServiceUtils.java69 * @param action The code to run on the main thread.
71 public static void runOnMain(Runnable action) { argument
72 runOnLooper(Looper.getMainLooper(), action);
77 * @param looper Looper to run the action.
78 * @param action The code to run.
80 public static void runOnLooper(Looper looper, Runnable action) { argument
81 new Handler(looper).post(action);
89 * @param action The code to run on the main thread.
91 public static void runOnMainSync(Runnable action) { argument
92 runOnLooperSync(Looper.getMainLooper(), action);
102 runOnLooperSync(Looper looper, Runnable action) argument
[all...]
/packages/services/Car/service/src/com/android/car/hal/
H A DHalClient.java153 int action(); method in interface:HalClient.RetriableCallback
157 int status = callback.action();
167 status = callback.action();
H A DInputHalService.java115 int action = (v.value.int32Values.get(0) == VehicleHwKeyInputAction.ACTION_DOWN) ?
120 Log.i(CarLog.TAG_INPUT, "hal event code:" + code + ", action:" + action +
124 dispatchKeyEvent(listener, action, code, display);
128 private void dispatchKeyEvent(InputListener listener, int action, int code, int display) { argument
131 if (action == KeyEvent.ACTION_DOWN) {
135 long downTime = action == KeyEvent.ACTION_UP
141 action,
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/
H A DCarEmulator.java125 public void injectKey(int keyCode, int action) { argument
129 .addIntValue(action, keyCode, 0, 0)
/packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
H A DInstrumentClusterController.java639 RetriableServiceBinder(Handler handler, Context context, Class<?> cls, String action, argument
644 mIntent.setAction(action);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DUserDictionaryToolsList.java133 /** The time of previous action */
497 /* save the action time */
606 * @param action The string of action
609 private void screenTransition(String action, String classname) { argument
611 if (action.equals("")) {
614 mIntent = new Intent(action);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
H A DKeyboardAccessibilityNodeProvider.java265 public boolean performAction(final int virtualViewId, final int action, argument
271 return performActionForKey(key, action);
275 * Performs the specified accessibility action for the given key.
277 * @param key The on which to perform the action.
278 * @param action The action to perform.
279 * @return The result of performing the action, or false if the action is not supported.
281 boolean performActionForKey(final Key key, final int action) { argument
282 switch (action) {
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
H A DIntentCompatUtils.java32 public static boolean is_ACTION_USER_INITIALIZE(final String action) { argument
33 return ACTION_USER_INITIALIZE != null && ACTION_USER_INITIALIZE.equals(action);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DNonDistinctMultitouchHelper.java48 final int action = me.getActionMasked();
60 injectMotionEvent(action, me.getX(index), me.getY(index), downTime, eventTime,
91 if (action == MotionEvent.ACTION_UP) {
104 private static void injectMotionEvent(final int action, final float x, final float y, argument
108 downTime, eventTime, action, x, y, 0 /* metaState */);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DEmojiAltPhysicalKeyDetector.java67 Log.d(TAG, "EmojiHotKeys.onKeyDown() - " + mName + " - enabling action");
73 Log.d(TAG, "EmojiHotKeys.onKeyDown() - " + mName + " - disabling action");
98 Log.d(TAG, "EmojiHotKeys.onKeyUp() - " + mName + " - firing action");
100 action();
105 Log.d(TAG, "EmojiHotKeys.onKeyUp() - " + mName + " - canceled, ignoring action");
114 Log.d(TAG, "EmojiHotKeys.onKeyUp() - " + mName + " - disabling action");
120 protected abstract void action(); method in class:EmojiAltPhysicalKeyDetector.EmojiHotKeys
130 protected void action() {
141 protected void action() {
H A DRichInputConnection.java937 // revert to the most basic behavior possible for the next action (backspace in
940 // Interestingly, in either case, chances are any action the user takes next will result
965 public boolean performPrivateCommand(final String action, final Bundle data) { argument
970 return mIC.performPrivateCommand(action, data);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
H A DPrivateCommandPerformer.java31 * @param action Name of the command to be performed. This must be a scoped
39 boolean performPrivateCommand(String action, Bundle data); argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
H A DSetupWizardActivity.java480 public void setAction(final Runnable action) { argument
482 mAction = action;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
H A DActionTestsBase.java17 package com.android.inputmethod.keyboard.action;

Completed in 1594 milliseconds

1234567891011>>