Searched defs:onMS (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/jni/
H A Dcom_android_server_LightsService.cpp107 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
/frameworks/base/services/java/com/android/server/
H A DLightsService.java84 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...]

Completed in 32 milliseconds