Searched refs:vibrator (Results 1 – 10 of 10) sorted by relevance
389 FILE *vibrator = 0; in main() local392 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()
437 Vibrator vibrator = device.getVibrator(); in updateInputDeviceVibrators() local438 if (vibrator.hasVibrator()) { in updateInputDeviceVibrators()439 mInputDeviceVibrators.add(vibrator); in updateInputDeviceVibrators()
134 VibratorService vibrator = null; in initAndLoop() local285 vibrator = new VibratorService(context); in initAndLoop()286 ServiceManager.addService("vibrator", vibrator); in initAndLoop()838 vibrator.systemReady(); in initAndLoop()
209 Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE); in vibrate() local210 vibrator.vibrate(res.getInteger(R.integer.config_search_panel_view_vibration_duration)); in vibrate()
499 Vibrator vibrator = new SystemVibrator(); in rebootOrShutdown() local501 vibrator.vibrate(SHUTDOWN_VIBRATE_MS); in rebootOrShutdown()
134 Vibrator vibrator = (Vibrator) mContext.getSystemService(Context.VIBRATOR_SERVICE); in GlobalActions() local135 mHasVibrator = vibrator != null && vibrator.hasVibrator(); in GlobalActions()
207 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>
478 Vibrator vibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE); in AudioService() local479 mHasVibrator = vibrator == null ? false : vibrator.hasVibrator(); in AudioService()
1416 <h3>Control vibrator on input devices</h3>1418 <p>Among other capabilities, apps can now make use of any <strong>vibrator service</strong> associa…
6015 field public static final java.lang.String VIBRATOR_SERVICE = "vibrator";