/aosp12/frameworks/native/services/inputflinger/reader/controller/ |
H A D | PeripheralController.cpp | 109 setRawLightBrightness(rawId, brightness); in setLightColor() 147 setRawLightBrightness(rawId, getAlpha(color)); in setLightColor() 217 for (const auto& [id, rawId] : rawLightIds) { in setLightPlayerId() 221 setRawLightBrightness(rawId, 0); in setLightPlayerId() 228 for (const auto& [id, rawId] : rawLightIds) { in getLightPlayerId() 244 for (const auto& [id, rawId] : rawLightIds) { in dump() 299 for (const auto& rawId : rawLightIds) { in dump() local 347 for (const auto& rawId : rawBatteryIds) { in configureBattries() local 374 for (const auto& rawId : rawLightIds) { in configureLights() local 411 rawGlobalId = rawId; in configureLights() [all …]
|
H A D | PeripheralController.h | 83 int32_t rawId) in MonoLight() 84 : Light(context, name, id, InputDeviceLightType::MONO), rawId(rawId) {} in MonoLight() 85 int32_t rawId; member 116 int32_t rawId) in MultiColorLight() 117 : Light(context, name, id, InputDeviceLightType::MULTI_COLOR), rawId(rawId) {} in MultiColorLight() 118 int32_t rawId; member
|
/aosp12/packages/modules/Connectivity/core/tests/coretests/src/com/android/internal/net/ |
H A D | NetworkStatsFactoryTest.java | 132 private void stageFile(int rawId, File file) throws Exception { in stageFile() argument 137 in = getContext().getResources().openRawResource(rawId); in stageFile()
|
/aosp12/packages/modules/Connectivity/services/tests/servicestests/src/com/android/server/net/ |
H A D | NetworkStatsCollectionTest.java | 158 private void stageFile(int rawId, File file) throws Exception { in stageFile() argument 163 in = getContext().getResources().openRawResource(rawId); in stageFile()
|
/aosp12/frameworks/base/core/java/android/os/incremental/ |
H A D | IncrementalStorage.java | 392 final byte[] rawId = idToBytes(id); in getFileMetadata() 393 return mService.getMetadataById(mId, rawId); in getFileMetadata()
|
/aosp12/packages/modules/Connectivity/tests/unit/java/com/android/server/net/ |
H A D | NetworkStatsFactoryTest.java | 497 private void stageFile(int rawId, File file) throws Exception { in stageFile() argument 502 in = InstrumentationRegistry.getContext().getResources().openRawResource(rawId); in stageFile()
|
H A D | NetworkStatsCollectionTest.java | 534 private void stageFile(int rawId, File file) throws Exception { in stageFile() argument 539 in = InstrumentationRegistry.getContext().getResources().openRawResource(rawId); in stageFile()
|
/aosp12/frameworks/native/libs/gui/ |
H A D | ISurfaceComposer.cpp | 287 [](uint64_t rawId) { return PhysicalDisplayId(rawId); }); in getPhysicalDisplayIds() argument 300 uint64_t rawId; in getPrimaryPhysicalDisplayId() local 301 SAFE_PARCEL(reply.readUint64, &rawId); in getPrimaryPhysicalDisplayId() 302 *displayId = PhysicalDisplayId(rawId); in getPrimaryPhysicalDisplayId()
|
/aosp12/packages/modules/NetworkStack/tests/unit/src/android/net/apf/ |
H A D | ApfTest.java | 2214 private String stageFile(int rawId) throws Exception { in stageFile() argument 2220 in = InstrumentationRegistry.getContext().getResources().openRawResource(rawId); in stageFile()
|
/aosp12/frameworks/native/services/inputflinger/tests/ |
H A D | InputReader_test.cpp | 602 void addRawLightInfo(int32_t rawId, RawLightInfo&& info) { in addRawLightInfo() argument 603 mRawLightInfos.emplace(rawId, std::move(info)); in addRawLightInfo() 606 void fakeLightBrightness(int32_t rawId, int32_t brightness) { in fakeLightBrightness() argument 607 mLightBrightness.emplace(rawId, brightness); in fakeLightBrightness() 610 void fakeLightIntensities(int32_t rawId, in fakeLightIntensities() argument 612 mLightIntensities.emplace(rawId, std::move(intensities)); in fakeLightIntensities() 935 for (const auto& [rawId, info] : mRawLightInfos) { in getRawLightIds() 936 ids.push_back(rawId); in getRawLightIds()
|