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

/frameworks/base/core/java/android/os/
H A DVibrator.java39 * @param milliseconds How long to vibrate for.
41 public void vibrate(long milliseconds) method in class:Vibrator
44 mService.vibrate(milliseconds, mToken);
62 public void vibrate(long[] pattern, int repeat) method in class:Vibrator
/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
156 * The pattern with which to vibrate.
159 * To vibrate the default pattern, see {@link #defaults}.
162 * @see android.os.Vibrator#vibrate(long[],int)
164 public long[] vibrate; field in class:Notification
337 vibrate = parcel.createLongArray();
393 parcel.writeLongArray(vibrate);
456 sb.append("Notification(vibrate=");
457 if (this.vibrate !
[all...]
/frameworks/base/services/java/com/android/server/
H A DVibratorService.java111 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/services/java/com/android/server/status/
H A DStatusBarService.java1815 void vibrate() { method in class:StatusBarService
1818 vib.vibrate(250);
1823 vibrate();
1835 vibrate();

Completed in 269 milliseconds