Home
last modified time | relevance | path

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

/frameworks/native/cmds/dumpstate/
Ddumpstate.c372 FILE *vibrator = 0; in main() local
375 vibrator = fopen("/sys/class/timed_output/vibrator/enable", "w"); in main()
376 if (vibrator) fcntl(fileno(vibrator), F_SETFD, FD_CLOEXEC); in main()
450 } else if (vibrator) { in main()
451 fputs("150", vibrator); in main()
452 fflush(vibrator); in main()
459 } else if (vibrator) { in main()
462 fputs("75\n", vibrator); in main()
463 fflush(vibrator); in main()
466 fclose(vibrator); in main()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DVolumeController.java49 Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE); in VolumeController() local
50 mHasVibrator = vibrator == null ? false : vibrator.hasVibrator(); in VolumeController()
/frameworks/base/services/java/com/android/server/
DVibratorService.java433 Vibrator vibrator = device.getVibrator(); in updateInputDeviceVibrators() local
434 if (vibrator.hasVibrator()) { in updateInputDeviceVibrators()
435 mInputDeviceVibrators.add(vibrator); in updateInputDeviceVibrators()
DSystemServer.java132 VibratorService vibrator = null; in run() local
292 vibrator = new VibratorService(context); in run()
293 ServiceManager.addService("vibrator", vibrator); in run()
771 vibrator.systemReady(); in run()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSearchPanelView.java226 Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE); in vibrate() local
227 vibrator.vibrate(res.getInteger(R.integer.config_search_panel_view_vibration_duration)); in vibrate()
/frameworks/base/services/java/com/android/server/power/
DShutdownThread.java500 Vibrator vibrator = new SystemVibrator(); in rebootOrShutdown() local
502 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.java466 Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE); in AudioService() local
467 mHasVibrator = vibrator == null ? false : vibrator.hasVibrator(); in AudioService()
/frameworks/base/docs/html/about/versions/
Djelly-bean.jd846 <h3>Control vibrator on input devices</h3>
848 <p>Among other capabilities, apps can now make use of any <strong>vibrator service</strong> associa…
/frameworks/base/api/
Dcurrent.txt5733 field public static final java.lang.String VIBRATOR_SERVICE = "vibrator";