Home
last modified time | relevance | path

Searched refs:vibrator (Results 1 – 10 of 10) sorted by relevance

/frameworks/native/cmds/dumpstate/
Ddumpstate.c389 FILE *vibrator = 0; in main() local
392 vibrator = fopen("/sys/class/timed_output/vibrator/enable", "w"); in main()
393 if (vibrator) fcntl(fileno(vibrator), F_SETFD, FD_CLOEXEC); in main()
467 } else if (vibrator) { in main()
468 fputs("150", vibrator); in main()
469 fflush(vibrator); in main()
476 } else if (vibrator) { in main()
479 fputs("75\n", vibrator); in main()
480 fflush(vibrator); in main()
483 fclose(vibrator); in main()
/frameworks/base/services/java/com/android/server/
DVibratorService.java437 Vibrator vibrator = device.getVibrator(); in updateInputDeviceVibrators() local
438 if (vibrator.hasVibrator()) { in updateInputDeviceVibrators()
439 mInputDeviceVibrators.add(vibrator); in updateInputDeviceVibrators()
DSystemServer.java134 VibratorService vibrator = null; in initAndLoop() local
285 vibrator = new VibratorService(context); in initAndLoop()
286 ServiceManager.addService("vibrator", vibrator); in initAndLoop()
838 vibrator.systemReady(); in initAndLoop()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSearchPanelView.java209 Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE); in vibrate() local
210 vibrator.vibrate(res.getInteger(R.integer.config_search_panel_view_vibration_duration)); in vibrate()
/frameworks/base/services/java/com/android/server/power/
DShutdownThread.java499 Vibrator vibrator = new SystemVibrator(); in rebootOrShutdown() local
501 vibrator.vibrate(SHUTDOWN_VIBRATE_MS); in rebootOrShutdown()
/frameworks/base/policy/src/com/android/internal/policy/impl/
DGlobalActions.java134 Vibrator vibrator = (Vibrator) mContext.getSystemService(Context.VIBRATOR_SERVICE); in GlobalActions() local
135 mHasVibrator = vibrator != null && vibrator.hasVibrator(); in GlobalActions()
/frameworks/base/docs/html/guide/topics/ui/accessibility/
Dservices.jd207 including connecting to user feedback system services, such as the audio manager or device vibrator.
230 services, such as the audio manager or device vibrator.</li>
/frameworks/base/media/java/android/media/
DAudioService.java478 Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE); in AudioService() local
479 mHasVibrator = vibrator == null ? false : vibrator.hasVibrator(); in AudioService()
/frameworks/base/docs/html/about/versions/
Djelly-bean.jd1416 <h3>Control vibrator on input devices</h3>
1418 <p>Among other capabilities, apps can now make use of any <strong>vibrator service</strong> associa…
/frameworks/base/api/
Dcurrent.txt6015 field public static final java.lang.String VIBRATOR_SERVICE = "vibrator";