Home
last modified time | relevance | path

Searched refs:mLight (Results 1 – 7 of 7) sorted by relevance

/aosp12/hardware/google/interfaces/light/1.0/default/
H A DLightExt.h42 LightExt(HwILight*&& light) : mLight(light) { in LightExt()
48 return mLight->getSupportedTypes(_hidl_cb); in getSupportedTypes()
55 std::unique_ptr<HwILight> mLight;
H A DLightExt.cpp57 return mLight->setLight(type, state); in setLight()
/aosp12/hardware/google/interfaces/light/1.1/default/
H A DLightExt.h42 LightExt(HwILight*&& light) : mLight(light) { in LightExt()
54 return mLight->getSupportedTypes(_hidl_cb); in getSupportedTypes()
64 std::unique_ptr<HwILight> mLight;
H A DLightExt.cpp93 Status status = mLight->setLight(type, state); in setLight()
99 return mLight->setLight(type, state); in setLight()
/aosp12/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
H A Dvr.rscript33 static float3 mLight;
59 mLight = mLightRelitvePos.x + dx + mLightRelitvePos.y * dy + mLightRelitvePos.z * dz;
60 mLight = normalize(mLight);
263 // float3 mLight = (float3) {0,-1,0};
265 float3 r = 2 * normal * dot(mLight, normal) - mLight;
/aosp12/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java169 private Light mLight; field in NotificationRecord
227 mLight = calculateLights(); in NotificationRecord()
516 pw.println(prefix + "mLight= " + mLight); in dump()
1092 return mLight; in getLight()
/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DBuzzBeepBlinkTest.java111 @Mock LogicalLight mLight; field in BuzzBeepBlinkTest
181 mService.setLights(mLight); in setUp()
476 verify(mLight, never()).setFlashing(anyInt(), anyInt(), anyInt(), anyInt()); in verifyNeverLights()
480 verify(mLight, times(1)).setFlashing(anyInt(), anyInt(), anyInt(), anyInt()); in verifyLights()