Searched refs:onMS (Results 1 - 2 of 2) sorted by relevance
/frameworks/base/services/java/com/android/server/ |
H A D | LightsService.java | 84 public void setFlashing(int color, int mode, int onMS, int offMS) { argument 86 setLightLocked(color, mode, onMS, offMS, BRIGHTNESS_MODE_USER); 95 public void pulse(int color, int onMS) { argument 98 setLightLocked(color, LIGHT_FLASH_HARDWARE, onMS, 1000, BRIGHTNESS_MODE_USER); 99 mH.sendMessageDelayed(Message.obtain(mH, 1, this), onMS); 116 private void setLightLocked(int color, int mode, int onMS, int offMS, int brightnessMode) { argument 117 if (color != mColor || mode != mMode || onMS != mOnMS || offMS != mOffMS) { 122 mOnMS = onMS; 124 setLight_native(mNativePointer, mId, color, mode, onMS, offMS, brightnessMode); 208 int onMS, in 207 setLight_native(int ptr, int light, int color, int mode, int onMS, int offMS, int brightnessMode) argument [all...] |
/frameworks/base/services/jni/ |
H A D | com_android_server_LightsService.cpp | 107 int light, int colorARGB, int flashMode, int onMS, int offMS, int brightnessMode) 119 state.flashOnMS = onMS; 106 setLight_native(JNIEnv *env, jobject clazz, int ptr, int light, int colorARGB, int flashMode, int onMS, int offMS, int brightnessMode) argument
|
Completed in 68 milliseconds