Searched defs:vibrate (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/os/
H A DVibrator.java43 * @param milliseconds How long to vibrate for.
45 public void vibrate(long milliseconds) method in class:Vibrator
48 Log.w(TAG, "Failed to vibrate; no vibrator service.");
52 mService.vibrate(milliseconds, mToken);
54 Log.w(TAG, "Failed to vibrate.", e);
71 public void vibrate(long[] pattern, int repeat) method in class:Vibrator
74 Log.w(TAG, "Failed to vibrate; no vibrator service.");
84 Log.w(TAG, "Failed to vibrate.", e);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DToneSettings.java29 public boolean vibrate; field in class:ToneSettings
31 public ToneSettings(Duration duration, Tone tone, boolean vibrate) { argument
34 this.vibrate = vibrate;
40 vibrate = in.readInt() == 1;
50 dest.writeInt(vibrate ? 1 : 0);
H A DCommandParams.java83 Tone tone, Duration duration, boolean vibrate) {
86 this.settings = new ToneSettings(duration, tone, vibrate);
82 PlayToneParams(CommandDetails cmdDet, TextMessage textMsg, Tone tone, Duration duration, boolean vibrate) argument
/frameworks/base/core/java/android/app/
H A DNotification.java57 * Use the default notification vibrate. This will ignore any given
58 * {@link #vibrate}. Using phone vibration requires the
167 * The pattern with which to vibrate.
170 * To vibrate the default pattern, see {@link #defaults}.
173 * @see android.os.Vibrator#vibrate(long[],int)
175 public long[] vibrate; field in class:Notification
348 vibrate = parcel.createLongArray();
381 final long[] vibrate = this.vibrate;
382 if (vibrate !
[all...]
/frameworks/base/services/java/com/android/server/
H A DVibratorService.java115 public void vibrate(long milliseconds, IBinder token) { method in class:VibratorService
/frameworks/base/core/java/com/android/internal/widget/
H A DRotarySelector.java519 vibrate(VIBRATE_SHORT);
524 vibrate(VIBRATE_SHORT);
669 private synchronized void vibrate(long duration) { method in class:RotarySelector
674 mVibrator.vibrate(duration);
704 vibrate(VIBRATE_LONG);
H A DSlidingTab.java528 vibrate(VIBRATE_SHORT);
807 private synchronized void vibrate(long duration) { method in class:SlidingTab
812 mVibrator.vibrate(duration);
829 vibrate(VIBRATE_LONG);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarService.java1479 void vibrate() { method in class:StatusBarService
1481 vib.vibrate(250);
1486 vibrate();
1498 vibrate();

Completed in 112 milliseconds