├── Android.mk ├── CleanSpec.mk ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── hardware.c ├── include └── hardware │ ├── activity_recognition.h │ ├── audio.h │ ├── audio_alsaops.h │ ├── audio_amplifier.h │ ├── audio_effect.h │ ├── audio_policy.h │ ├── bluetooth.h │ ├── boot_control.h │ ├── bt_av.h │ ├── bt_common_types.h │ ├── bt_gatt.h │ ├── bt_gatt_client.h │ ├── bt_gatt_server.h │ ├── bt_gatt_types.h │ ├── bt_hf.h │ ├── bt_hf_client.h │ ├── bt_hh.h │ ├── bt_hl.h │ ├── bt_mce.h │ ├── bt_pan.h │ ├── bt_rc.h │ ├── bt_sdp.h │ ├── bt_sock.h │ ├── camera.h │ ├── camera2.h │ ├── camera3.h │ ├── camera_common.h │ ├── consumerir.h │ ├── context_hub.h │ ├── display_defs.h │ ├── fb.h │ ├── fingerprint.h │ ├── fused_location.h │ ├── gatekeeper.h │ ├── gps.h │ ├── gps_internal.h │ ├── gralloc.h │ ├── gralloc1.h │ ├── hardware.h │ ├── hdmi_cec.h │ ├── hw_auth_token.h │ ├── hwcomposer.h │ ├── hwcomposer2.h │ ├── hwcomposer_defs.h │ ├── input.h │ ├── keymaster0.h │ ├── keymaster1.h │ ├── keymaster2.h │ ├── keymaster_common.h │ ├── keymaster_defs.h │ ├── lights.h │ ├── local_time_hal.h │ ├── memtrack.h │ ├── nfc.h │ ├── nfc_tag.h │ ├── nvram.h │ ├── power.h │ ├── qemu_pipe.h │ ├── qemud.h │ ├── radio.h │ ├── sensors.h │ ├── sound_trigger.h │ ├── thermal.h │ ├── tv_input.h │ ├── vehicle.h │ ├── vehicle_camera.h │ ├── vibrator.h │ └── vr.h ├── modules ├── Android.mk ├── README.android ├── audio │ ├── Android.mk │ ├── audio_amplifier.c │ ├── audio_hw.c │ └── audio_policy.c ├── audio_remote_submix │ ├── Android.mk │ └── audio_hw.cpp ├── camera │ ├── Android.mk │ ├── Camera.cpp │ ├── Camera.h │ ├── CameraHAL.cpp │ ├── CameraHAL.h │ ├── ExampleCamera.cpp │ ├── ExampleCamera.h │ ├── Metadata.cpp │ ├── Metadata.h │ ├── Stream.cpp │ ├── Stream.h │ ├── VendorTags.cpp │ └── VendorTags.h ├── consumerir │ ├── Android.mk │ └── consumerir.c ├── fingerprint │ ├── Android.mk │ └── fingerprint.c ├── gralloc │ ├── Android.mk │ ├── framebuffer.cpp │ ├── gr.h │ ├── gralloc.cpp │ ├── gralloc_priv.h │ └── mapper.cpp ├── hwcomposer │ ├── Android.mk │ ├── README.android │ └── hwcomposer.cpp ├── input │ ├── Android.mk │ └── evdev │ │ ├── Android.mk │ │ ├── BitUtils.cpp │ │ ├── BitUtils.h │ │ ├── EvdevModule.cpp │ │ ├── InputDevice.cpp │ │ ├── InputDevice.h │ │ ├── InputDeviceManager.cpp │ │ ├── InputDeviceManager.h │ │ ├── InputHost.cpp │ │ ├── InputHost.h │ │ ├── InputHub.cpp │ │ ├── InputHub.h │ │ ├── InputMapper.cpp │ │ ├── InputMapper.h │ │ ├── MouseInputMapper.cpp │ │ ├── MouseInputMapper.h │ │ ├── SwitchInputMapper.cpp │ │ └── SwitchInputMapper.h ├── local_time │ ├── Android.mk │ └── local_time_hw.c ├── nfc-nci │ ├── Android.mk │ └── nfc_nci_example.c ├── nfc │ ├── Android.mk │ └── nfc_pn544_example.c ├── power │ ├── Android.mk │ └── power.c ├── radio │ ├── Android.mk │ ├── radio_hal_tool.c │ └── radio_hw.c ├── sensors │ ├── Android.mk │ ├── SensorEventQueue.cpp │ ├── SensorEventQueue.h │ ├── multihal.cpp │ └── tests │ │ ├── Android.mk │ │ └── SensorEventQueue_test.cpp ├── soundtrigger │ ├── Android.mk │ └── sound_trigger_hw.c ├── thermal │ ├── Android.mk │ └── thermal.c ├── tv_input │ ├── Android.mk │ └── tv_input.cpp ├── usbaudio │ ├── Android.mk │ └── audio_hal.c ├── usbcamera │ ├── Android.mk │ ├── Camera.cpp │ ├── Camera.h │ ├── CameraHAL.cpp │ ├── CameraHAL.h │ ├── HotplugThread.cpp │ ├── HotplugThread.h │ ├── Metadata.cpp │ ├── Metadata.h │ ├── Stream.cpp │ ├── Stream.h │ ├── UsbCamera.cpp │ └── UsbCamera.h ├── vehicle │ ├── Android.mk │ ├── timeUtil.cpp │ └── vehicle.c ├── vibrator │ ├── Android.mk │ └── vibrator.c └── vr │ ├── Android.mk │ └── vr.c └── tests ├── Android.mk ├── camera2 ├── Android.mk ├── CameraBurstTests.cpp ├── CameraFrameTests.cpp ├── CameraMetadataTests.cpp ├── CameraModuleFixture.h ├── CameraModuleTests.cpp ├── CameraMultiStreamTests.cpp ├── CameraStreamFixture.h ├── CameraStreamTests.cpp ├── ForkedTests.cpp ├── TestExtensions.h ├── TestForkerEventListener.cpp ├── TestForkerEventListener.h ├── TestSettings.cpp ├── TestSettings.h ├── camera2_utils.cpp ├── camera2_utils.h └── main.cpp ├── camera3 ├── Android.mk ├── camera3test_fixtures.h └── camera3tests.cpp ├── fingerprint ├── Android.mk ├── fingerprint_test_fixtures.h └── fingerprint_tests.cpp ├── hardware ├── Android.mk ├── struct-last.cpp ├── struct-offset.cpp └── struct-size.cpp ├── hwc ├── Android.mk ├── cnativewindow.c ├── test-arrows.c ├── util.c └── util.h ├── input ├── Android.mk └── evdev │ ├── Android.mk │ ├── BitUtils_test.cpp │ ├── InputDevice_test.cpp │ ├── InputHub_test.cpp │ ├── InputMocks.cpp │ ├── InputMocks.h │ ├── MockInputHost.h │ ├── MouseInputMapper_test.cpp │ ├── SwitchInputMapper_test.cpp │ ├── TestHelpers.cpp │ └── TestHelpers.h ├── keymaster ├── Android.mk └── keymaster_test.cpp ├── nusensors ├── Android.mk └── nusensors.cpp └── vehicle ├── Android.mk ├── README ├── vehicle-hal-tool.c ├── vehicle_test_fixtures.h └── vehicle_tests.cpp /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/Android.mk -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/NOTICE -------------------------------------------------------------------------------- /hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/hardware.c -------------------------------------------------------------------------------- /include/hardware/activity_recognition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/activity_recognition.h -------------------------------------------------------------------------------- /include/hardware/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/audio.h -------------------------------------------------------------------------------- /include/hardware/audio_alsaops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/audio_alsaops.h -------------------------------------------------------------------------------- /include/hardware/audio_amplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/audio_amplifier.h -------------------------------------------------------------------------------- /include/hardware/audio_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/audio_effect.h -------------------------------------------------------------------------------- /include/hardware/audio_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/audio_policy.h -------------------------------------------------------------------------------- /include/hardware/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bluetooth.h -------------------------------------------------------------------------------- /include/hardware/boot_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/boot_control.h -------------------------------------------------------------------------------- /include/hardware/bt_av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_av.h -------------------------------------------------------------------------------- /include/hardware/bt_common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_common_types.h -------------------------------------------------------------------------------- /include/hardware/bt_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_gatt.h -------------------------------------------------------------------------------- /include/hardware/bt_gatt_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_gatt_client.h -------------------------------------------------------------------------------- /include/hardware/bt_gatt_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_gatt_server.h -------------------------------------------------------------------------------- /include/hardware/bt_gatt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_gatt_types.h -------------------------------------------------------------------------------- /include/hardware/bt_hf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_hf.h -------------------------------------------------------------------------------- /include/hardware/bt_hf_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_hf_client.h -------------------------------------------------------------------------------- /include/hardware/bt_hh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_hh.h -------------------------------------------------------------------------------- /include/hardware/bt_hl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_hl.h -------------------------------------------------------------------------------- /include/hardware/bt_mce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_mce.h -------------------------------------------------------------------------------- /include/hardware/bt_pan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_pan.h -------------------------------------------------------------------------------- /include/hardware/bt_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_rc.h -------------------------------------------------------------------------------- /include/hardware/bt_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_sdp.h -------------------------------------------------------------------------------- /include/hardware/bt_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/bt_sock.h -------------------------------------------------------------------------------- /include/hardware/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/camera.h -------------------------------------------------------------------------------- /include/hardware/camera2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/camera2.h -------------------------------------------------------------------------------- /include/hardware/camera3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/camera3.h -------------------------------------------------------------------------------- /include/hardware/camera_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/camera_common.h -------------------------------------------------------------------------------- /include/hardware/consumerir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/consumerir.h -------------------------------------------------------------------------------- /include/hardware/context_hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/context_hub.h -------------------------------------------------------------------------------- /include/hardware/display_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/display_defs.h -------------------------------------------------------------------------------- /include/hardware/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/fb.h -------------------------------------------------------------------------------- /include/hardware/fingerprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/fingerprint.h -------------------------------------------------------------------------------- /include/hardware/fused_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/fused_location.h -------------------------------------------------------------------------------- /include/hardware/gatekeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/gatekeeper.h -------------------------------------------------------------------------------- /include/hardware/gps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/gps.h -------------------------------------------------------------------------------- /include/hardware/gps_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/gps_internal.h -------------------------------------------------------------------------------- /include/hardware/gralloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/gralloc.h -------------------------------------------------------------------------------- /include/hardware/gralloc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/gralloc1.h -------------------------------------------------------------------------------- /include/hardware/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/hardware.h -------------------------------------------------------------------------------- /include/hardware/hdmi_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/hdmi_cec.h -------------------------------------------------------------------------------- /include/hardware/hw_auth_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/hw_auth_token.h -------------------------------------------------------------------------------- /include/hardware/hwcomposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/hwcomposer.h -------------------------------------------------------------------------------- /include/hardware/hwcomposer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/hwcomposer2.h -------------------------------------------------------------------------------- /include/hardware/hwcomposer_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/hwcomposer_defs.h -------------------------------------------------------------------------------- /include/hardware/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/input.h -------------------------------------------------------------------------------- /include/hardware/keymaster0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/keymaster0.h -------------------------------------------------------------------------------- /include/hardware/keymaster1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/keymaster1.h -------------------------------------------------------------------------------- /include/hardware/keymaster2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/keymaster2.h -------------------------------------------------------------------------------- /include/hardware/keymaster_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/keymaster_common.h -------------------------------------------------------------------------------- /include/hardware/keymaster_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/keymaster_defs.h -------------------------------------------------------------------------------- /include/hardware/lights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/lights.h -------------------------------------------------------------------------------- /include/hardware/local_time_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/local_time_hal.h -------------------------------------------------------------------------------- /include/hardware/memtrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/memtrack.h -------------------------------------------------------------------------------- /include/hardware/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/nfc.h -------------------------------------------------------------------------------- /include/hardware/nfc_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/nfc_tag.h -------------------------------------------------------------------------------- /include/hardware/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/nvram.h -------------------------------------------------------------------------------- /include/hardware/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/power.h -------------------------------------------------------------------------------- /include/hardware/qemu_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/qemu_pipe.h -------------------------------------------------------------------------------- /include/hardware/qemud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/qemud.h -------------------------------------------------------------------------------- /include/hardware/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/radio.h -------------------------------------------------------------------------------- /include/hardware/sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/sensors.h -------------------------------------------------------------------------------- /include/hardware/sound_trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/sound_trigger.h -------------------------------------------------------------------------------- /include/hardware/thermal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/thermal.h -------------------------------------------------------------------------------- /include/hardware/tv_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/tv_input.h -------------------------------------------------------------------------------- /include/hardware/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/vehicle.h -------------------------------------------------------------------------------- /include/hardware/vehicle_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/vehicle_camera.h -------------------------------------------------------------------------------- /include/hardware/vibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/vibrator.h -------------------------------------------------------------------------------- /include/hardware/vr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/include/hardware/vr.h -------------------------------------------------------------------------------- /modules/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/Android.mk -------------------------------------------------------------------------------- /modules/README.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/README.android -------------------------------------------------------------------------------- /modules/audio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/audio/Android.mk -------------------------------------------------------------------------------- /modules/audio/audio_amplifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/audio/audio_amplifier.c -------------------------------------------------------------------------------- /modules/audio/audio_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/audio/audio_hw.c -------------------------------------------------------------------------------- /modules/audio/audio_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/audio/audio_policy.c -------------------------------------------------------------------------------- /modules/audio_remote_submix/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/audio_remote_submix/Android.mk -------------------------------------------------------------------------------- /modules/audio_remote_submix/audio_hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/audio_remote_submix/audio_hw.cpp -------------------------------------------------------------------------------- /modules/camera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/Android.mk -------------------------------------------------------------------------------- /modules/camera/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/Camera.cpp -------------------------------------------------------------------------------- /modules/camera/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/Camera.h -------------------------------------------------------------------------------- /modules/camera/CameraHAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/CameraHAL.cpp -------------------------------------------------------------------------------- /modules/camera/CameraHAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/CameraHAL.h -------------------------------------------------------------------------------- /modules/camera/ExampleCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/ExampleCamera.cpp -------------------------------------------------------------------------------- /modules/camera/ExampleCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/ExampleCamera.h -------------------------------------------------------------------------------- /modules/camera/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/Metadata.cpp -------------------------------------------------------------------------------- /modules/camera/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/Metadata.h -------------------------------------------------------------------------------- /modules/camera/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/Stream.cpp -------------------------------------------------------------------------------- /modules/camera/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/Stream.h -------------------------------------------------------------------------------- /modules/camera/VendorTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/VendorTags.cpp -------------------------------------------------------------------------------- /modules/camera/VendorTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/camera/VendorTags.h -------------------------------------------------------------------------------- /modules/consumerir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/consumerir/Android.mk -------------------------------------------------------------------------------- /modules/consumerir/consumerir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/consumerir/consumerir.c -------------------------------------------------------------------------------- /modules/fingerprint/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/fingerprint/Android.mk -------------------------------------------------------------------------------- /modules/fingerprint/fingerprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/fingerprint/fingerprint.c -------------------------------------------------------------------------------- /modules/gralloc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/gralloc/Android.mk -------------------------------------------------------------------------------- /modules/gralloc/framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/gralloc/framebuffer.cpp -------------------------------------------------------------------------------- /modules/gralloc/gr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/gralloc/gr.h -------------------------------------------------------------------------------- /modules/gralloc/gralloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/gralloc/gralloc.cpp -------------------------------------------------------------------------------- /modules/gralloc/gralloc_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/gralloc/gralloc_priv.h -------------------------------------------------------------------------------- /modules/gralloc/mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/gralloc/mapper.cpp -------------------------------------------------------------------------------- /modules/hwcomposer/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/hwcomposer/Android.mk -------------------------------------------------------------------------------- /modules/hwcomposer/README.android: -------------------------------------------------------------------------------- 1 | 2 | Skeleton for the "hwcomposer" HAL module. 3 | 4 | -------------------------------------------------------------------------------- /modules/hwcomposer/hwcomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/hwcomposer/hwcomposer.cpp -------------------------------------------------------------------------------- /modules/input/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/Android.mk -------------------------------------------------------------------------------- /modules/input/evdev/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/Android.mk -------------------------------------------------------------------------------- /modules/input/evdev/BitUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/BitUtils.cpp -------------------------------------------------------------------------------- /modules/input/evdev/BitUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/BitUtils.h -------------------------------------------------------------------------------- /modules/input/evdev/EvdevModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/EvdevModule.cpp -------------------------------------------------------------------------------- /modules/input/evdev/InputDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputDevice.cpp -------------------------------------------------------------------------------- /modules/input/evdev/InputDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputDevice.h -------------------------------------------------------------------------------- /modules/input/evdev/InputDeviceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputDeviceManager.cpp -------------------------------------------------------------------------------- /modules/input/evdev/InputDeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputDeviceManager.h -------------------------------------------------------------------------------- /modules/input/evdev/InputHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputHost.cpp -------------------------------------------------------------------------------- /modules/input/evdev/InputHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputHost.h -------------------------------------------------------------------------------- /modules/input/evdev/InputHub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputHub.cpp -------------------------------------------------------------------------------- /modules/input/evdev/InputHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputHub.h -------------------------------------------------------------------------------- /modules/input/evdev/InputMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputMapper.cpp -------------------------------------------------------------------------------- /modules/input/evdev/InputMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/InputMapper.h -------------------------------------------------------------------------------- /modules/input/evdev/MouseInputMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/MouseInputMapper.cpp -------------------------------------------------------------------------------- /modules/input/evdev/MouseInputMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/MouseInputMapper.h -------------------------------------------------------------------------------- /modules/input/evdev/SwitchInputMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/SwitchInputMapper.cpp -------------------------------------------------------------------------------- /modules/input/evdev/SwitchInputMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/input/evdev/SwitchInputMapper.h -------------------------------------------------------------------------------- /modules/local_time/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/local_time/Android.mk -------------------------------------------------------------------------------- /modules/local_time/local_time_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/local_time/local_time_hw.c -------------------------------------------------------------------------------- /modules/nfc-nci/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/nfc-nci/Android.mk -------------------------------------------------------------------------------- /modules/nfc-nci/nfc_nci_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/nfc-nci/nfc_nci_example.c -------------------------------------------------------------------------------- /modules/nfc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/nfc/Android.mk -------------------------------------------------------------------------------- /modules/nfc/nfc_pn544_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/nfc/nfc_pn544_example.c -------------------------------------------------------------------------------- /modules/power/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/power/Android.mk -------------------------------------------------------------------------------- /modules/power/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/power/power.c -------------------------------------------------------------------------------- /modules/radio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/radio/Android.mk -------------------------------------------------------------------------------- /modules/radio/radio_hal_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/radio/radio_hal_tool.c -------------------------------------------------------------------------------- /modules/radio/radio_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/radio/radio_hw.c -------------------------------------------------------------------------------- /modules/sensors/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/sensors/Android.mk -------------------------------------------------------------------------------- /modules/sensors/SensorEventQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/sensors/SensorEventQueue.cpp -------------------------------------------------------------------------------- /modules/sensors/SensorEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/sensors/SensorEventQueue.h -------------------------------------------------------------------------------- /modules/sensors/multihal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/sensors/multihal.cpp -------------------------------------------------------------------------------- /modules/sensors/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/sensors/tests/Android.mk -------------------------------------------------------------------------------- /modules/sensors/tests/SensorEventQueue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/sensors/tests/SensorEventQueue_test.cpp -------------------------------------------------------------------------------- /modules/soundtrigger/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/soundtrigger/Android.mk -------------------------------------------------------------------------------- /modules/soundtrigger/sound_trigger_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/soundtrigger/sound_trigger_hw.c -------------------------------------------------------------------------------- /modules/thermal/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/thermal/Android.mk -------------------------------------------------------------------------------- /modules/thermal/thermal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/thermal/thermal.c -------------------------------------------------------------------------------- /modules/tv_input/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/tv_input/Android.mk -------------------------------------------------------------------------------- /modules/tv_input/tv_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/tv_input/tv_input.cpp -------------------------------------------------------------------------------- /modules/usbaudio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbaudio/Android.mk -------------------------------------------------------------------------------- /modules/usbaudio/audio_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbaudio/audio_hal.c -------------------------------------------------------------------------------- /modules/usbcamera/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/Android.mk -------------------------------------------------------------------------------- /modules/usbcamera/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/Camera.cpp -------------------------------------------------------------------------------- /modules/usbcamera/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/Camera.h -------------------------------------------------------------------------------- /modules/usbcamera/CameraHAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/CameraHAL.cpp -------------------------------------------------------------------------------- /modules/usbcamera/CameraHAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/CameraHAL.h -------------------------------------------------------------------------------- /modules/usbcamera/HotplugThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/HotplugThread.cpp -------------------------------------------------------------------------------- /modules/usbcamera/HotplugThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/HotplugThread.h -------------------------------------------------------------------------------- /modules/usbcamera/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/Metadata.cpp -------------------------------------------------------------------------------- /modules/usbcamera/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/Metadata.h -------------------------------------------------------------------------------- /modules/usbcamera/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/Stream.cpp -------------------------------------------------------------------------------- /modules/usbcamera/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/Stream.h -------------------------------------------------------------------------------- /modules/usbcamera/UsbCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/UsbCamera.cpp -------------------------------------------------------------------------------- /modules/usbcamera/UsbCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/usbcamera/UsbCamera.h -------------------------------------------------------------------------------- /modules/vehicle/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/vehicle/Android.mk -------------------------------------------------------------------------------- /modules/vehicle/timeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/vehicle/timeUtil.cpp -------------------------------------------------------------------------------- /modules/vehicle/vehicle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/vehicle/vehicle.c -------------------------------------------------------------------------------- /modules/vibrator/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/vibrator/Android.mk -------------------------------------------------------------------------------- /modules/vibrator/vibrator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/vibrator/vibrator.c -------------------------------------------------------------------------------- /modules/vr/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/vr/Android.mk -------------------------------------------------------------------------------- /modules/vr/vr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/modules/vr/vr.c -------------------------------------------------------------------------------- /tests/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /tests/camera2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/Android.mk -------------------------------------------------------------------------------- /tests/camera2/CameraBurstTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/CameraBurstTests.cpp -------------------------------------------------------------------------------- /tests/camera2/CameraFrameTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/CameraFrameTests.cpp -------------------------------------------------------------------------------- /tests/camera2/CameraMetadataTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/CameraMetadataTests.cpp -------------------------------------------------------------------------------- /tests/camera2/CameraModuleFixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/CameraModuleFixture.h -------------------------------------------------------------------------------- /tests/camera2/CameraModuleTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/CameraModuleTests.cpp -------------------------------------------------------------------------------- /tests/camera2/CameraMultiStreamTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/CameraMultiStreamTests.cpp -------------------------------------------------------------------------------- /tests/camera2/CameraStreamFixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/CameraStreamFixture.h -------------------------------------------------------------------------------- /tests/camera2/CameraStreamTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/CameraStreamTests.cpp -------------------------------------------------------------------------------- /tests/camera2/ForkedTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/ForkedTests.cpp -------------------------------------------------------------------------------- /tests/camera2/TestExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/TestExtensions.h -------------------------------------------------------------------------------- /tests/camera2/TestForkerEventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/TestForkerEventListener.cpp -------------------------------------------------------------------------------- /tests/camera2/TestForkerEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/TestForkerEventListener.h -------------------------------------------------------------------------------- /tests/camera2/TestSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/TestSettings.cpp -------------------------------------------------------------------------------- /tests/camera2/TestSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/TestSettings.h -------------------------------------------------------------------------------- /tests/camera2/camera2_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/camera2_utils.cpp -------------------------------------------------------------------------------- /tests/camera2/camera2_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/camera2_utils.h -------------------------------------------------------------------------------- /tests/camera2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera2/main.cpp -------------------------------------------------------------------------------- /tests/camera3/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera3/Android.mk -------------------------------------------------------------------------------- /tests/camera3/camera3test_fixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera3/camera3test_fixtures.h -------------------------------------------------------------------------------- /tests/camera3/camera3tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/camera3/camera3tests.cpp -------------------------------------------------------------------------------- /tests/fingerprint/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/fingerprint/Android.mk -------------------------------------------------------------------------------- /tests/fingerprint/fingerprint_test_fixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/fingerprint/fingerprint_test_fixtures.h -------------------------------------------------------------------------------- /tests/fingerprint/fingerprint_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/fingerprint/fingerprint_tests.cpp -------------------------------------------------------------------------------- /tests/hardware/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/hardware/Android.mk -------------------------------------------------------------------------------- /tests/hardware/struct-last.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/hardware/struct-last.cpp -------------------------------------------------------------------------------- /tests/hardware/struct-offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/hardware/struct-offset.cpp -------------------------------------------------------------------------------- /tests/hardware/struct-size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/hardware/struct-size.cpp -------------------------------------------------------------------------------- /tests/hwc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/hwc/Android.mk -------------------------------------------------------------------------------- /tests/hwc/cnativewindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/hwc/cnativewindow.c -------------------------------------------------------------------------------- /tests/hwc/test-arrows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/hwc/test-arrows.c -------------------------------------------------------------------------------- /tests/hwc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/hwc/util.c -------------------------------------------------------------------------------- /tests/hwc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/hwc/util.h -------------------------------------------------------------------------------- /tests/input/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/Android.mk -------------------------------------------------------------------------------- /tests/input/evdev/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/Android.mk -------------------------------------------------------------------------------- /tests/input/evdev/BitUtils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/BitUtils_test.cpp -------------------------------------------------------------------------------- /tests/input/evdev/InputDevice_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/InputDevice_test.cpp -------------------------------------------------------------------------------- /tests/input/evdev/InputHub_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/InputHub_test.cpp -------------------------------------------------------------------------------- /tests/input/evdev/InputMocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/InputMocks.cpp -------------------------------------------------------------------------------- /tests/input/evdev/InputMocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/InputMocks.h -------------------------------------------------------------------------------- /tests/input/evdev/MockInputHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/MockInputHost.h -------------------------------------------------------------------------------- /tests/input/evdev/MouseInputMapper_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/MouseInputMapper_test.cpp -------------------------------------------------------------------------------- /tests/input/evdev/SwitchInputMapper_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/SwitchInputMapper_test.cpp -------------------------------------------------------------------------------- /tests/input/evdev/TestHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/TestHelpers.cpp -------------------------------------------------------------------------------- /tests/input/evdev/TestHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/input/evdev/TestHelpers.h -------------------------------------------------------------------------------- /tests/keymaster/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/keymaster/Android.mk -------------------------------------------------------------------------------- /tests/keymaster/keymaster_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/keymaster/keymaster_test.cpp -------------------------------------------------------------------------------- /tests/nusensors/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/nusensors/Android.mk -------------------------------------------------------------------------------- /tests/nusensors/nusensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/nusensors/nusensors.cpp -------------------------------------------------------------------------------- /tests/vehicle/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/vehicle/Android.mk -------------------------------------------------------------------------------- /tests/vehicle/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/vehicle/README -------------------------------------------------------------------------------- /tests/vehicle/vehicle-hal-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/vehicle/vehicle-hal-tool.c -------------------------------------------------------------------------------- /tests/vehicle/vehicle_test_fixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/vehicle/vehicle_test_fixtures.h -------------------------------------------------------------------------------- /tests/vehicle/vehicle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_hardware_libhardware/HEAD/tests/vehicle/vehicle_tests.cpp --------------------------------------------------------------------------------