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

/frameworks/base/core/java/android/os/
H A DVibrator.java49 * @param milliseconds The number of milliseconds to vibrate.
51 public abstract void vibrate(long milliseconds); method in class:Vibrator
73 public abstract void vibrate(long[] pattern, int repeat); method in class:Vibrator
H A DNullVibrator.java42 public void vibrate(long milliseconds) { method in class:NullVibrator
46 public void vibrate(long[] pattern, int repeat) { method in class:NullVibrator
H A DSystemVibrator.java40 Log.w(TAG, "Failed to vibrate; no vibrator service.");
51 public void vibrate(long milliseconds) { method in class:SystemVibrator
53 Log.w(TAG, "Failed to vibrate; no vibrator service.");
57 mService.vibrate(milliseconds, mToken);
59 Log.w(TAG, "Failed to vibrate.", e);
64 public void vibrate(long[] pattern, int repeat) { method in class:SystemVibrator
66 Log.w(TAG, "Failed to vibrate; no vibrator service.");
76 Log.w(TAG, "Failed to vibrate.", e);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
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.java88 Tone tone, Duration duration, boolean vibrate) {
91 this.settings = new ToneSettings(duration, tone, vibrate);
87 PlayToneParams(CommandDetails cmdDet, TextMessage textMsg, Tone tone, Duration duration, boolean vibrate) argument
/frameworks/wilhelm/src/itf/
H A DIVibra.c22 static SLresult IVibra_Vibrate(SLVibraItf self, SLboolean vibrate) argument
28 thiz->mVibrate = SL_BOOLEAN_FALSE != vibrate; // normalize
45 SLboolean vibrate = thiz->mVibrate; local
47 *pVibrating = vibrate;
/frameworks/base/services/java/com/android/server/
H A DVibratorService.java167 public void vibrate(long milliseconds, IBinder token) { method in class:VibratorService
421 mInputDeviceVibrators.get(i).vibrate(millis);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSearchPanelView.java146 vibrate();
217 private void vibrate() { method in class:SearchPanelView
223 vibrator.vibrate(res.getInteger(R.integer.config_search_panel_view_vibration_duration));
242 vibrate();
H A DExpandHelper.java453 vibrate(mPopDuration);
604 private synchronized void vibrate(long duration) { method in class:ExpandHelper
609 mVibrator.vibrate(duration);
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java796 public void vibrate(long milliseconds) { method in class:InputManager.InputDeviceVibrator
797 vibrate(new long[] { 0, milliseconds}, -1);
801 public void vibrate(long[] pattern, int repeat) { method in class:InputManager.InputDeviceVibrator
806 mIm.vibrate(mDeviceId, pattern, repeat, mToken);
808 Log.w(TAG, "Failed to vibrate.", ex);
/frameworks/base/core/java/com/android/internal/widget/
H A DRotarySelector.java521 vibrate(VIBRATE_SHORT);
526 vibrate(VIBRATE_SHORT);
671 private synchronized void vibrate(long duration) { method in class:RotarySelector
680 mVibrator.vibrate(duration);
711 vibrate(VIBRATE_LONG);
H A DWaveView.java577 private synchronized void vibrate(long duration) { method in class:WaveView
586 mVibrator.vibrate(duration);
604 vibrate(VIBRATE_LONG);
H A DSlidingTab.java532 vibrate(VIBRATE_SHORT);
815 private synchronized void vibrate(long duration) { method in class:SlidingTab
824 mVibrator.vibrate(duration);
842 vibrate(VIBRATE_LONG);
/frameworks/base/core/java/android/app/
H A DNotification.java77 * Use the default notification vibrate. This will ignore any given
78 * {@link #vibrate}. Using phone vibration requires the
233 * The pattern with which to vibrate.
236 * To vibrate the default pattern, see {@link #defaults}.
239 * @see android.os.Vibrator#vibrate(long[],int)
241 public long[] vibrate; field in class:Notification
578 vibrate = parcel.createLongArray();
631 final long[] vibrate = this.vibrate;
632 if (vibrate !
[all...]
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DGlowPadView.java441 vibrate();
562 private void vibrate() { method in class:GlowPadView
567 mVibrator.vibrate(mVibrationDuration);
669 * Enable or disable vibrate on touch.
968 vibrate();
H A DMultiWaveView.java481 vibrate();
597 private void vibrate() { method in class:MultiWaveView
602 mVibrator.vibrate(mVibrationDuration);
702 * Enable or disable vibrate on touch.
939 vibrate();
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java1154 public void vibrate(int deviceId, long[] pattern, int repeat, IBinder token) { method in class:InputManagerService
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java2414 void vibrate() { method in class:PhoneStatusBar
2417 vib.vibrate(250);
2422 vibrate();
2434 vibrate();
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp677 virtual void vibrate(int32_t deviceId, nsecs_t duration) { function in class:android::FakeEventHub
/frameworks/base/services/input/
H A DInputReader.cpp675 void InputReader::vibrate(int32_t deviceId, const nsecs_t* pattern, size_t patternSize, function in class:android::InputReader
682 device->vibrate(pattern, patternSize, repeat, token);
1050 void InputDevice::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, function in class:android::InputDevice
1055 mapper->vibrate(pattern, patternSize, repeat, token);
1768 void InputMapper::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, function in class:android::InputMapper
1874 void VibratorInputMapper::vibrate(const nsecs_t* pattern, size_t patternSize, ssize_t repeat, function in class:android::VibratorInputMapper
1884 ALOGD("vibrate: deviceId=%d, pattern=[%s], repeat=%ld, token=%d",
1933 ALOGD("nextStep: sending vibrate deviceId=%d, duration=%lld",
1936 getEventHub()->vibrate(getDeviceId(), duration);
1939 ALOGD("nextStep: sending cancel vibrate deviceI
[all...]

Completed in 2109 milliseconds