HomeSort by relevance Sort by last modified time
    Searched refs:Vibrator (Results 51 - 75 of 113) sorted by null

1 23 4 5

  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
RingerTest.java 25 import android.os.Vibrator;
50 @Mock Vibrator mockVibrator;
  /frameworks/base/core/java/android/hardware/input/
InputManager.java 36 import android.os.Vibrator;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 27 import android.os.Vibrator;
69 private final Vibrator mVibrator;
154 mVibrator = (Vibrator) launcher.getSystemService(Context.VIBRATOR_SERVICE);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DefaultSoftKeyboard.java 28 import android.os.Vibrator;
295 protected Vibrator mVibrator = null;
741 /* vibrator */
744 mVibrator = (Vibrator)mWnn.getSystemService(Context.VIBRATOR_SERVICE);
749 Log.d("OpenWnn", "NO VIBRATOR");
    [all...]
TextCandidatesViewManager.java 31 import android.os.Vibrator;
149 /** Vibrator for touch vibration */
150 private Vibrator mVibrator = null;
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/policy/
AccessibilityShortcutControllerTest.java 28 import android.os.Vibrator;
96 private @Mock Vibrator mVibrator;
  /development/samples/ControllerSample/src/com/example/controllersample/
GameView.java 31 import android.os.Vibrator;
47 * the game controller has a vibrator, then it is used to provide feedback when
49 * vibrator is used for that purpose.
783 * Gets the vibrator from the controller if it is present. Note that it
784 * would be easy to get the system vibrator here if the controller one
787 * @return the Vibrator for the controller, or null if it is not
791 private final Vibrator getVibrator() {
800 Vibrator vibrator = getVibrator(); local
801 if (null != vibrator) {
807 Vibrator vibrator = getVibrator(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
VibratorService.java 28 import android.hardware.vibrator.V1_0.Constants.EffectStrength;
46 import android.os.Vibrator;
95 private final ArrayList<Vibrator> mInputDeviceVibrators = new ArrayList<Vibrator>();
203 mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "*vibrator*");
295 // the system vibrator when connected.
620 Vibrator vibrator = device.getVibrator(); local
621 if (vibrator.hasVibrator()) {
622 mInputDeviceVibrators.add(vibrator);
    [all...]
  /frameworks/base/services/core/java/com/android/server/power/
ShutdownThread.java 44 import android.os.Vibrator;
657 Vibrator vibrator = new SystemVibrator(context); local
659 vibrator.vibrate(SHUTDOWN_VIBRATE_MS, VIBRATION_ATTRIBUTES);
665 // vibrator is asynchronous so we need to wait to avoid shutting down too soon.
  /frameworks/base/core/java/android/app/
SystemServiceRegistry.java 115 import android.os.Vibrator;
518 registerService(Context.VIBRATOR_SERVICE, Vibrator.class,
519 new CachedServiceFetcher<Vibrator>() {
521 public Vibrator createService(ContextImpl ctx) {
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioManagerTest.java 45 import android.os.Vibrator;
71 Vibrator vibrator = (Vibrator) mContext.getSystemService(Context.VIBRATOR_SERVICE); local
73 mHasVibrator = (vibrator != null) && vibrator.hasVibrator();
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
AndroidFacade.java 39 import android.os.Vibrator;
105 private final Vibrator mVibrator;
122 mVibrator = (Vibrator) mService.getSystemService(Context.VIBRATOR_SERVICE);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
SlidingTab.java 26 import android.os.Vibrator;
78 private Vibrator mVibrator;
829 mVibrator = (android.os.Vibrator) getContext()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
GlobalActionsDialog.java 49 import android.os.Vibrator;
154 Vibrator vibrator = (Vibrator) mContext.getSystemService(Context.VIBRATOR_SERVICE); local
155 mHasVibrator = vibrator != null && vibrator.hasVibrator();
217 // Simple toggle style if there's no vibrator, otherwise use a tri-state
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogControllerImpl.java 41 import android.os.Vibrator;
98 private final Vibrator mVibrator;
123 mVibrator = (Vibrator) mContext.getSystemService(Context.VIBRATOR_SERVICE);
    [all...]
  /frameworks/base/services/core/java/com/android/server/policy/
LegacyGlobalActions.java 50 import android.os.Vibrator;
156 Vibrator vibrator = (Vibrator) mContext.getSystemService(Context.VIBRATOR_SERVICE); local
157 mHasVibrator = vibrator != null && vibrator.hasVibrator();
218 // Simple toggle style if there's no vibrator, otherwise use a tri-state
    [all...]
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationTestList.java 38 import android.os.Vibrator;
56 Vibrator mVibrator;
81 mVibrator = (Vibrator)getSystemService(VIBRATOR_SERVICE);
    [all...]
NotificationBuilderTest.java 34 import android.os.Vibrator;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 32 import android.os.Vibrator;
819 Vibrator vibrator = (Vibrator) mContext.getSystemService(Context.VIBRATOR_SERVICE); local
    [all...]
  /test/vts/tools/build/tasks/list/
vts_func_fuzzer_package_list.mk 111 android.hardware.vibrator@1.0-vts.func_fuzzer.Vibrator \
  /frameworks/base/services/tests/notification/src/com/android/server/notification/
BuzzBeepBlinkTest.java 54 import android.os.Vibrator;
75 @Mock Vibrator mVibrator;
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
ExpandedAlarmViewHolder.java 29 import android.os.Vibrator;
143 // Vibrator checkbox handler
522 mHasVibrator = ((Vibrator) context.getSystemService(VIBRATOR_SERVICE)).hasVibrator();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
MLand.java 36 import android.os.Vibrator;
138 private Vibrator mVibrator;
193 mVibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsService.java 50 import android.os.Vibrator;
141 private Vibrator mVibrator = null;
243 // Get a handle to the system vibrator.
244 mVibrator = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
    [all...]
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportProgressService.java 90 import android.os.Vibrator;
    [all...]

Completed in 1018 milliseconds

1 23 4 5