├── MODULE_LICENSE_APACHE2 ├── .clang-format ├── .gitignore ├── init ├── MODULE_LICENSE_APACHE2 ├── .clang-format ├── test_kill_services │ ├── OWNERS │ └── Android.bp ├── test_upgrade_mte │ └── OWNERS ├── OWNERS ├── libprefetch │ └── prefetch │ │ └── OWNERS ├── test_service │ └── test_service.rc ├── TEST_MAPPING ├── grab-bootchart.sh ├── first_stage_main.cpp └── switch_root.h ├── debuggerd ├── MODULE_LICENSE_APACHE2 ├── .clang-format ├── OWNERS ├── proto │ └── jarjar-rules.txt ├── tombstoned │ ├── tombstoned.microdroid.rc │ └── tombstoned.rc ├── seccomp_policy │ ├── generate.sh │ ├── crash_dump.x86_64.policy │ ├── crash_dump.riscv64.policy │ ├── crash_dump.arm.policy │ ├── crash_dump.x86.policy │ └── crash_dump.arm64.policy ├── TEST_MAPPING ├── handler │ ├── debuggerd_fallback_nop.cpp │ └── fallback.h └── libdebuggerd │ └── test │ └── elf_fake.h ├── libcutils ├── MODULE_LICENSE_APACHE2 ├── include │ └── cutils │ │ ├── log.h │ │ └── android_filesystem_config.h ├── include_outside_system │ └── cutils │ │ ├── fs.h │ │ ├── klog.h │ │ ├── list.h │ │ ├── log.h │ │ ├── misc.h │ │ ├── ashmem.h │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── memory.h │ │ ├── trace.h │ │ ├── uevent.h │ │ ├── compiler.h │ │ ├── hashmap.h │ │ ├── multiuser.h │ │ ├── qtaguid.h │ │ ├── sockets.h │ │ ├── str_parms.h │ │ ├── properties.h │ │ ├── android_reboot.h │ │ ├── config_utils.h │ │ ├── iosched_policy.h │ │ ├── native_handle.h │ │ ├── record_stream.h │ │ ├── sched_policy.h │ │ ├── partition_utils.h │ │ ├── android_get_control_file.h │ │ └── android_filesystem_config.h ├── OWNERS ├── TEST_MAPPING ├── rust │ └── aid_bindings.h └── ashmem-internal.h ├── libutils ├── MODULE_LICENSE_APACHE2 ├── OWNERS ├── include │ └── utils │ │ ├── Errors.h │ │ ├── RefBase.h │ │ ├── String8.h │ │ ├── Unicode.h │ │ ├── Vector.h │ │ ├── String16.h │ │ ├── LightRefBase.h │ │ ├── TypeHelpers.h │ │ ├── VectorImpl.h │ │ ├── StrongPointer.h │ │ ├── Log.h │ │ ├── Debug.h │ │ └── Atomic.h ├── TEST_MAPPING └── binder │ └── StrongPointer.cpp ├── llkd ├── OWNERS └── llkd-debuggable.rc ├── toolbox ├── MODULE_LICENSE_APACHE2 ├── tools.h ├── OWNERS └── NOTICE ├── libgrallocusage ├── MODULE_LICENSE_APACHE2 └── OWNERS ├── libsparse ├── OWNERS ├── .clang-format ├── defs.h ├── sparse_fuzzer.cpp └── sparse_crc32.h ├── run-as └── .clang-format ├── sdcard ├── OWNERS └── Android.bp ├── storaged ├── OWNERS ├── storaged.rc ├── README.properties └── binder │ └── android │ └── os │ ├── storaged │ └── UidInfo.aidl │ └── IStoraged.aidl ├── bootstat ├── .clang-format ├── OWNERS └── bootstat-debug.rc ├── cli-test ├── .clang-format └── Android.bp ├── diagnose_usb ├── OWNERS └── Android.bp ├── fastboot ├── .clang-format ├── TEST_MAPPING ├── testdata │ ├── super.img │ ├── system.img │ ├── super_empty.img │ └── make_super_images.sh ├── OWNERS ├── fs.h └── device │ └── usb_iouring.h ├── fs_mgr ├── .clang-format ├── liblp │ ├── OWNERS │ └── TEST_MAPPING ├── libsnapshot │ ├── snapuserd │ │ ├── OWNERS │ │ ├── snapuserd.rc │ │ └── snapuserd_logging.h │ ├── tools │ │ ├── testdata │ │ │ ├── cow_v2 │ │ │ └── incompressible_block │ │ └── Android.bp │ └── OWNERS ├── OWNERS ├── clean_scratch_files.rc ├── libstorage_literals │ └── Android.bp ├── libfs_avb │ └── run_tests.sh ├── include │ └── fs_mgr_vendor_overlay.h └── blockdev.h ├── healthd ├── api │ ├── charger_sysprop-current.txt │ └── charger_sysprop-latest.txt ├── testdata │ ├── legacy │ │ └── res │ │ │ ├── images │ │ │ └── charger │ │ │ │ ├── battery_fail.png │ │ │ │ └── battery_scale.png │ │ │ └── values │ │ │ └── charger │ │ │ └── animation.txt │ ├── product │ │ └── product │ │ │ └── etc │ │ │ └── res │ │ │ ├── images │ │ │ └── charger │ │ │ │ ├── battery_fail.png │ │ │ │ └── battery_scale.png │ │ │ └── values │ │ │ └── charger │ │ │ └── animation.txt │ ├── empty │ │ └── ensure_directory_creation.txt │ ├── legacy_text_system_images │ │ └── res │ │ │ └── values │ │ │ └── charger │ │ │ └── animation.txt │ └── Android.bp ├── OWNERS ├── images │ ├── battery_fail.png │ └── battery_scale.png ├── TEST_MAPPING └── healthd_mode_charger_nops.h ├── include ├── cutils ├── system └── utils ├── libappfuse └── OWNERS ├── libkeyutils ├── .clang-format └── Android.bp ├── libcrypto_utils └── .clang-format ├── libsync ├── include │ └── sync │ │ └── sync.h └── OWNERS ├── property_service ├── .clang-format ├── OWNERS ├── TEST_MAPPING ├── property_info_checker │ └── Android.bp └── libpropertyinfoparser │ └── Android.bp ├── shell_and_utilities └── OWNERS ├── trusty ├── keymint │ ├── fuzz │ │ └── corpus │ │ │ ├── keymint-rsps-0042-0 │ │ │ ├── keymint-reqs-821180-0 │ │ │ ├── keymint-reqs-82128140-0 │ │ │ ├── keymint-reqs-82128143-0 │ │ │ ├── keymint-reqs-82128158-0 │ │ │ ├── keymint-reqs-82128158-1 │ │ │ ├── keymint-reqs-82138285-0 │ │ │ ├── keymint-reqs-82138285-1 │ │ │ ├── keymint-reqs-82138285-2 │ │ │ ├── keymint-reqs-82138285-3 │ │ │ ├── keymint-reqs-82138286-0 │ │ │ ├── keymint-reqs-82138286-1 │ │ │ ├── keymint-reqs-82138286-2 │ │ │ ├── keymint-reqs-82138286-3 │ │ │ ├── keymint-reqs-82138287-0 │ │ │ ├── keymint-reqs-82138287-1 │ │ │ ├── keymint-reqs-82138287-2 │ │ │ ├── keymint-reqs-82138287-3 │ │ │ ├── keymint-reqs-82138288-0 │ │ │ ├── keymint-reqs-82138288-1 │ │ │ ├── keymint-reqs-82138288-2 │ │ │ ├── keymint-reqs-82138288-3 │ │ │ ├── keymint-reqs-82138289-0 │ │ │ ├── keymint-reqs-82138289-1 │ │ │ ├── keymint-reqs-82138289-2 │ │ │ ├── keymint-reqs-82138289-3 │ │ │ ├── keymint-reqs-8213828a-0 │ │ │ ├── keymint-reqs-8213828a-1 │ │ │ ├── keymint-reqs-8213828a-2 │ │ │ ├── keymint-reqs-8213828a-3 │ │ │ ├── keymint-reqs-8213828b-0 │ │ │ ├── keymint-reqs-8213828b-1 │ │ │ ├── keymint-reqs-8213828b-2 │ │ │ ├── keymint-reqs-8213828b-3 │ │ │ ├── keymint-reqs-8213828c-0 │ │ │ ├── keymint-reqs-8213828c-1 │ │ │ ├── keymint-reqs-8213828c-2 │ │ │ ├── keymint-reqs-8213828c-3 │ │ │ ├── keymint-reqs-8213828d-0 │ │ │ ├── keymint-reqs-8213828d-1 │ │ │ ├── keymint-reqs-8213828d-2 │ │ │ ├── keymint-reqs-8213828d-3 │ │ │ ├── keymint-reqs-8213828e-0 │ │ │ ├── keymint-reqs-8213828e-1 │ │ │ ├── keymint-reqs-8213828e-2 │ │ │ ├── keymint-reqs-8213828e-3 │ │ │ ├── keymint-reqs-8213828f-0 │ │ │ ├── keymint-reqs-8213828f-1 │ │ │ ├── keymint-reqs-8213828f-2 │ │ │ ├── keymint-reqs-8213828f-3 │ │ │ ├── keymint-reqs-82138290-0 │ │ │ ├── keymint-reqs-82138290-1 │ │ │ ├── keymint-reqs-82138292-0 │ │ │ ├── keymint-reqs-82148485-0 │ │ │ ├── keymint-reqs-82148485-1 │ │ │ ├── keymint-reqs-82148485-2 │ │ │ ├── keymint-reqs-82148485-3 │ │ │ ├── keymint-reqs-82148486-0 │ │ │ ├── keymint-reqs-82148486-1 │ │ │ ├── keymint-reqs-82148486-2 │ │ │ ├── keymint-reqs-82148486-3 │ │ │ ├── keymint-reqs-82148487-0 │ │ │ ├── keymint-reqs-82148487-1 │ │ │ ├── keymint-reqs-82148487-2 │ │ │ ├── keymint-reqs-82148487-3 │ │ │ ├── keymint-reqs-82148488-0 │ │ │ ├── keymint-reqs-82148488-1 │ │ │ ├── keymint-reqs-82148488-2 │ │ │ ├── keymint-reqs-82148488-3 │ │ │ ├── keymint-reqs-82148489-0 │ │ │ ├── keymint-reqs-82148489-1 │ │ │ ├── keymint-reqs-82148489-2 │ │ │ ├── keymint-reqs-82148489-3 │ │ │ ├── keymint-reqs-8214848a-0 │ │ │ ├── keymint-reqs-8214848a-1 │ │ │ ├── keymint-reqs-8214848a-2 │ │ │ ├── keymint-reqs-8214848a-3 │ │ │ ├── keymint-reqs-8214848b-0 │ │ │ ├── keymint-reqs-82158659-0 │ │ │ ├── keymint-reqs-82158659-1 │ │ │ ├── keymint-reqs-82158659-2 │ │ │ ├── keymint-reqs-82158659-3 │ │ │ ├── keymint-reqs-82168258-0 │ │ │ ├── keymint-reqs-82168258-1 │ │ │ ├── keymint-reqs-82178158-0 │ │ │ ├── keymint-reqs-82178158-1 │ │ │ ├── keymint-reqs-82178158-2 │ │ │ ├── keymint-reqs-82178158-3 │ │ │ ├── keymint-reqs-82178159-0 │ │ │ ├── keymint-reqs-82178159-1 │ │ │ ├── keymint-reqs-82178159-2 │ │ │ ├── keymint-reqs-82178159-3 │ │ │ ├── keymint-reqs-82181a84-0 │ │ │ ├── keymint-reqs-82181a84-1 │ │ │ ├── keymint-reqs-82181a84-2 │ │ │ ├── keymint-reqs-82181a84-3 │ │ │ ├── keymint-reqs-82181e83-0 │ │ │ ├── keymint-reqs-82181e83-1 │ │ │ ├── keymint-reqs-82181e83-2 │ │ │ ├── keymint-reqs-82181e83-3 │ │ │ ├── keymint-reqs-82183184-0 │ │ │ ├── keymint-reqs-82183184-1 │ │ │ ├── keymint-reqs-82183184-2 │ │ │ ├── keymint-reqs-82183184-3 │ │ │ ├── keymint-reqs-82183284-0 │ │ │ ├── keymint-reqs-82183284-1 │ │ │ ├── keymint-reqs-82183284-2 │ │ │ ├── keymint-reqs-82183284-3 │ │ │ ├── keymint-reqs-82183386-0 │ │ │ ├── keymint-reqs-82183386-1 │ │ │ ├── keymint-reqs-82183386-2 │ │ │ ├── keymint-reqs-82183386-3 │ │ │ ├── keymint-reqs-82183481-0 │ │ │ ├── keymint-reqs-82183481-1 │ │ │ ├── keymint-reqs-82183481-2 │ │ │ ├── keymint-reqs-82183481-3 │ │ │ ├── keymint-reqs-82184180-0 │ │ │ ├── keymint-reqs-82184281-0 │ │ │ ├── keymint-rsps-00035504-0 │ │ │ ├── keymint-rsps-001e170d-0 │ │ │ ├── keymint-rsps-00303031-0 │ │ │ ├── keymint-rsps-00313563-0 │ │ │ ├── keymint-rsps-00333233-0 │ │ │ ├── keymint-rsps-00365a17-0 │ │ │ ├── keymint-rsps-003cc0cc-0 │ │ │ ├── keymint-rsps-003e7b1a-0 │ │ │ ├── keymint-rsps-00646630-0 │ │ │ ├── keymint-rsps-00820081-0 │ │ │ ├── keymint-rsps-00820081-1 │ │ │ ├── keymint-rsps-00820081-2 │ │ │ ├── keymint-rsps-00820081-3 │ │ │ ├── keymint-rsps-00822180-0 │ │ │ ├── keymint-rsps-00822280-0 │ │ │ ├── keymint-rsps-00822580-0 │ │ │ ├── keymint-rsps-00822680-0 │ │ │ ├── keymint-rsps-00822780-0 │ │ │ ├── keymint-rsps-00822880-0 │ │ │ ├── keymint-rsps-00822980-0 │ │ │ ├── keymint-rsps-00822a80-0 │ │ │ ├── keymint-rsps-00822b80-0 │ │ │ ├── keymint-rsps-00822c80-0 │ │ │ ├── keymint-rsps-00823080-0 │ │ │ ├── keymint-rsps-00823480-0 │ │ │ ├── keymint-rsps-00823819-0 │ │ │ ├── keymint-rsps-0082381d-0 │ │ │ ├── keymint-rsps-0082381e-0 │ │ │ ├── keymint-rsps-00823820-0 │ │ │ ├── keymint-rsps-00823825-0 │ │ │ ├── keymint-rsps-00823827-0 │ │ │ ├── keymint-rsps-0082382b-0 │ │ │ ├── keymint-rsps-00823833-0 │ │ │ ├── keymint-rsps-00823836-0 │ │ │ ├── keymint-rsps-00823837-0 │ │ │ ├── keymint-rsps-00823838-0 │ │ │ ├── keymint-rsps-00823839-0 │ │ │ ├── keymint-rsps-0082383a-0 │ │ │ ├── keymint-rsps-0082383e-0 │ │ │ ├── keymint-rsps-00823840-0 │ │ │ ├── keymint-rsps-00823841-0 │ │ │ ├── keymint-rsps-00823846-0 │ │ │ ├── keymint-rsps-0082384d-0 │ │ │ ├── keymint-rsps-0082384e-0 │ │ │ ├── keymint-rsps-0082384f-0 │ │ │ ├── keymint-rsps-00823850-0 │ │ │ ├── keymint-rsps-00823903-0 │ │ │ ├── keymint-rsps-009a81fa-0 │ │ │ ├── keymint-rsps-00b5ae79-0 │ │ │ ├── keymint-rsps-01820081-0 │ │ │ ├── keymint-rsps-01820081-1 │ │ │ ├── keymint-rsps-01820081-2 │ │ │ └── keymint-rsps-01820081-3 │ ├── android.hardware.security.keymint-service.rust.trusty.rc │ ├── android.hardware.security.keymint-service.trusty_tee.rc │ ├── android.hardware.security.keymint-service.rust.trusty.xml │ └── android.hardware.security.keymint-service.trusty_system_vm.rc ├── keymaster │ ├── fuzz │ │ └── corpus │ │ │ ├── keymaster-recv-7RVbJ8 │ │ │ ├── keymaster-recv-JP2pXq │ │ │ ├── keymaster-recv-T0YO5T │ │ │ ├── keymaster-recv-1x0hJ5 │ │ │ ├── keymaster-recv-5GV6mx │ │ │ ├── keymaster-recv-9ElJHi │ │ │ ├── keymaster-recv-9czLCR │ │ │ ├── keymaster-recv-BFx3FN │ │ │ ├── keymaster-recv-BXWpRA │ │ │ ├── keymaster-recv-DanwgH │ │ │ ├── keymaster-recv-TM26dO │ │ │ ├── keymaster-recv-XcPQ60 │ │ │ ├── keymaster-recv-ZU4x5D │ │ │ ├── keymaster-recv-Zbzv1t │ │ │ ├── keymaster-recv-ZvweQK │ │ │ ├── keymaster-recv-d3OcR1 │ │ │ ├── keymaster-recv-dc6Hmg │ │ │ ├── keymaster-recv-fn8Ksu │ │ │ ├── keymaster-recv-ldnX1U │ │ │ ├── keymaster-recv-pqvh4n │ │ │ ├── keymaster-recv-pvwjne │ │ │ ├── keymaster-recv-pzxe39 │ │ │ ├── keymaster-recv-tpykrY │ │ │ ├── keymaster-recv-tq6MsH │ │ │ ├── keymaster-recv-zt2UIA │ │ │ ├── keymaster-send-3aKtgr │ │ │ ├── keymaster-send-5Ays9I │ │ │ ├── keymaster-send-7X098Z │ │ │ ├── keymaster-send-B6LYU4 │ │ │ ├── keymaster-send-BZU7LF │ │ │ ├── keymaster-send-FxXsxg │ │ │ ├── keymaster-send-NlxYoC │ │ │ ├── keymaster-send-PzXetK │ │ │ ├── keymaster-send-RFmR3D │ │ │ ├── keymaster-send-Tp6AJW │ │ │ ├── keymaster-send-V0leT7 │ │ │ ├── keymaster-send-X4Plz3 │ │ │ ├── keymaster-send-Xd5KiX │ │ │ ├── keymaster-send-Ztr5Rk │ │ │ ├── keymaster-send-f6d6wM │ │ │ ├── keymaster-send-jbzgHv │ │ │ ├── keymaster-send-jiL5yp │ │ │ ├── keymaster-send-l5kqxc │ │ │ ├── keymaster-send-l6zX2y │ │ │ ├── keymaster-send-ltPKls │ │ │ ├── keymaster-send-n7sdVP │ │ │ ├── keymaster-send-pKSjkT │ │ │ ├── keymaster-send-rhVedc │ │ │ ├── keymaster-send-tZJ2Ex │ │ │ └── keymaster-send-tZlTSQ │ ├── 3.0 │ │ └── android.hardware.keymaster@3.0-service.trusty.rc │ ├── 4.0 │ │ ├── android.hardware.keymaster@4.0-service.trusty.rc │ │ └── android.hardware.keymaster@4.0-service.trusty.xml │ ├── keymint │ │ ├── TEST_MAPPING │ │ ├── android.hardware.security.keymint-service.trusty.rc │ │ ├── android.hardware.security.keymint-service.trusty_tee.cpp.rc │ │ └── android.hardware.security.keymint-service.trusty.xml │ └── TEST_MAPPING ├── confirmationui │ ├── fuzz │ │ └── msg_corpus │ │ │ ├── confirmationui-recv-0AD0Mc │ │ │ ├── confirmationui-recv-3hmWyl │ │ │ ├── confirmationui-recv-7T30a0 │ │ │ ├── confirmationui-recv-BSmqJ0 │ │ │ ├── confirmationui-recv-BdUGLb │ │ │ ├── confirmationui-recv-D2ENNi │ │ │ ├── confirmationui-recv-LUVKQn │ │ │ ├── confirmationui-recv-MdY9ZS │ │ │ ├── confirmationui-recv-QTsc3y │ │ │ ├── confirmationui-recv-VDguJL │ │ │ ├── confirmationui-recv-ZjDqjf │ │ │ ├── confirmationui-recv-bMNGfb │ │ │ ├── confirmationui-recv-ikJlIo │ │ │ ├── confirmationui-recv-kxugwp │ │ │ ├── confirmationui-recv-nuYOin │ │ │ ├── confirmationui-recv-vg2hAB │ │ │ ├── confirmationui-recv-ysk3Rj │ │ │ ├── confirmationui-send-2upXHa │ │ │ ├── confirmationui-send-3n7SWz │ │ │ ├── confirmationui-send-5SZG4U │ │ │ ├── confirmationui-send-8uL1hT │ │ │ ├── confirmationui-send-Anu8LZ │ │ │ ├── confirmationui-send-BjxIpX │ │ │ ├── confirmationui-send-GPOMKC │ │ │ ├── confirmationui-send-HkRYSS │ │ │ ├── confirmationui-send-PpfYNn │ │ │ ├── confirmationui-send-SVKqZi │ │ │ ├── confirmationui-send-Suxofv │ │ │ ├── confirmationui-send-Up2pbn │ │ │ ├── confirmationui-send-ZuQuBC │ │ │ ├── confirmationui-send-bWlzZp │ │ │ ├── confirmationui-send-e952U6 │ │ │ ├── confirmationui-send-hme7P0 │ │ │ ├── confirmationui-send-k7J5LL │ │ │ ├── confirmationui-send-vGoOUt │ │ │ ├── confirmationui-send-vqAG14 │ │ │ ├── confirmationui-send-ypshr5 │ │ │ ├── confirmationui-send-zZNPRC │ │ │ ├── confirmationui-recv-7FNOdd │ │ │ ├── confirmationui-recv-86EumR │ │ │ ├── confirmationui-recv-8UVUCK │ │ │ ├── confirmationui-recv-HjE2Ko │ │ │ ├── confirmationui-recv-J5OABY │ │ │ ├── confirmationui-recv-OP4Vff │ │ │ ├── confirmationui-recv-OizTST │ │ │ ├── confirmationui-recv-S055ei │ │ │ ├── confirmationui-recv-bm0GEm │ │ │ ├── confirmationui-recv-cT2nt8 │ │ │ ├── confirmationui-recv-e1NLbb │ │ │ ├── confirmationui-recv-eOCb7t │ │ │ ├── confirmationui-recv-h7Gpzu │ │ │ ├── confirmationui-recv-mY8uM5 │ │ │ ├── confirmationui-recv-obk0rP │ │ │ ├── confirmationui-recv-EwBsPi │ │ │ ├── confirmationui-send-rUtYXs │ │ │ ├── confirmationui-send-sq5ang │ │ │ ├── confirmationui-send-GWcpFn │ │ │ ├── confirmationui-send-MtGRnC │ │ │ ├── confirmationui-send-UQPTAG │ │ │ ├── confirmationui-recv-1b1UIl │ │ │ ├── confirmationui-recv-89b64b │ │ │ ├── confirmationui-recv-NZ8yUq │ │ │ ├── confirmationui-send-ZjgVzs │ │ │ ├── confirmationui-send-f7ly1r │ │ │ ├── confirmationui-send-uOtedb │ │ │ ├── confirmationui-send-xKDdTw │ │ │ ├── confirmationui-send-ypzCDH │ │ │ ├── confirmationui-send-LAyw30 │ │ │ ├── confirmationui-send-DBzfWz │ │ │ ├── confirmationui-send-dPozfE │ │ │ └── confirmationui-send-xT4sJC │ ├── android.hardware.confirmationui-service.trusty.rc │ ├── .clang-format │ └── android.hardware.confirmationui-service.trusty.xml ├── gatekeeper │ ├── TEST_MAPPING │ ├── fuzz │ │ └── corpus │ │ │ ├── gatekeeper-recv-2MMzSr │ │ │ ├── gatekeeper-recv-Et63W0 │ │ │ ├── gatekeeper-recv-G41Iz8 │ │ │ ├── gatekeeper-recv-ItEoqJ │ │ │ ├── gatekeeper-recv-MGXdfu │ │ │ ├── gatekeeper-recv-Yq4f10 │ │ │ ├── gatekeeper-recv-agxKZa │ │ │ ├── gatekeeper-recv-alhn2v │ │ │ ├── gatekeeper-recv-eVJFHV │ │ │ ├── gatekeeper-recv-et5K21 │ │ │ ├── gatekeeper-recv-gun5YX │ │ │ ├── gatekeeper-recv-kXw1R9 │ │ │ ├── gatekeeper-recv-moapss │ │ │ ├── gatekeeper-recv-u5QySb │ │ │ ├── gatekeeper-recv-uZtvkq │ │ │ ├── gatekeeper-recv-w5G2SF │ │ │ ├── gatekeeper-recv-y3H74x │ │ │ ├── gatekeeper-recv-yALfeS │ │ │ ├── gatekeeper-send-2S1GLi │ │ │ ├── gatekeeper-send-4j7hUc │ │ │ ├── gatekeeper-send-6hsSQG │ │ │ ├── gatekeeper-send-E8CE7b │ │ │ ├── gatekeeper-send-GEDmHj │ │ │ ├── gatekeeper-send-MpwDEN │ │ │ ├── gatekeeper-send-Qutf8O │ │ │ ├── gatekeeper-send-Sg1WMt │ │ │ ├── gatekeeper-send-U6Y1My │ │ │ ├── gatekeeper-send-WdSRky │ │ │ ├── gatekeeper-send-Ypw6WP │ │ │ ├── gatekeeper-send-Yyj4Af │ │ │ ├── gatekeeper-send-amyF62 │ │ │ ├── gatekeeper-send-gu8ziA │ │ │ ├── gatekeeper-send-iCATsM │ │ │ ├── gatekeeper-send-kawT3I │ │ │ ├── gatekeeper-send-sYFzM5 │ │ │ └── gatekeeper-send-yNFMdn │ ├── android.hardware.gatekeeper-service.trusty.rc │ └── android.hardware.gatekeeper-service.trusty.xml ├── OWNERS ├── secretkeeper │ ├── android.hardware.security.secretkeeper.trusty.rc │ └── android.hardware.security.secretkeeper.trusty.xml ├── sysprops │ ├── api │ │ ├── trusty-properties-current.txt │ │ └── trusty-properties-latest.txt │ ├── example.rs │ └── Android.bp ├── Android.bp ├── storage │ └── proxy │ │ └── log.h ├── trusty-test.mk ├── utils │ └── spiproxyd │ │ └── proxy.rc ├── secure_dpu │ └── Android.bp └── test │ └── binder │ └── aidl │ └── com │ └── android │ └── trusty │ └── binder │ └── test │ └── LongEnum.aidl ├── OWNERS ├── libpackagelistparser ├── .clang-format ├── TEST_MAPPING └── Android.bp ├── rustfmt.toml ├── .clang-format-2 ├── .clang-format-4 ├── libnetutils └── OWNERS ├── libvndksupport ├── OWNERS ├── TEST_MAPPING ├── libvndksupport.map.txt └── Android.bp ├── libmodprobe ├── OWNERS ├── TEST_MAPPING └── libmodprobe_test.h ├── libsysutils ├── include │ └── sysutils │ │ └── OWNERS ├── src │ └── OWNERS └── EventLogTags.logtags ├── libvendorsupport ├── OWNERS ├── TEST_MAPPING └── libvendorsupport.map.txt ├── rootdir ├── etc │ ├── hosts │ ├── OWNERS │ ├── ld.config.txt │ ├── ld.config.legacy.txt │ ├── ld.config.recovery.txt │ ├── ld.config.vndk_lite.txt │ ├── TEST_MAPPING │ ├── public.libraries.wear.txt │ ├── public.libraries.iot.txt │ └── public.libraries.android.txt ├── avb │ ├── q-developer-gsi.avbpubkey │ ├── r-developer-gsi.avbpubkey │ └── s-developer-gsi.avbpubkey ├── ramdisk_node_list ├── init.no_zygote.rc ├── OWNERS ├── asan_extract.rc ├── init.boringssl.zygote64.rc ├── asan.options ├── init.boringssl.zygote64_32.rc ├── adb_debug.prop ├── init.zygote64_32.rc ├── init.environ.rc.in └── init-debug.rc ├── libprocessgroup ├── OWNERS ├── util │ ├── OWNERS │ └── TEST_MAPPING ├── TEST_MAPPING ├── profiles │ └── cgroups.recovery.json ├── vts │ └── Android.bp ├── cgrouprc │ ├── libcgrouprc.map.txt │ └── cgrouprc_internal.h ├── setup │ └── include │ │ └── processgroup │ │ └── setup.h └── internal.h ├── libstats ├── pull_rust │ └── statslog.h ├── OWNERS ├── pull_lazy │ ├── TEST_MAPPING │ └── libstatspull_lazy.h ├── socket_lazy │ ├── TEST_MAPPING │ └── libstatssocket_lazy.h └── expresslog │ └── .clang-format ├── libsystem ├── OWNERS ├── include │ └── system │ │ ├── graphics-base.h │ │ └── graphics-sw.h └── Android.bp ├── mini_keyctl ├── OWNERS └── Android.bp ├── gatekeeperd ├── OWNERS └── gatekeeperd.rc ├── code_coverage ├── empty_policy │ ├── code_coverage.arm.policy │ ├── code_coverage.x86.policy │ ├── code_coverage.arm64.policy │ ├── code_coverage.x86_64.policy │ └── code_coverage.riscv64.policy └── seccomp_policy │ ├── code_coverage.x86_64.policy │ ├── code_coverage.arm64.policy │ ├── code_coverage.riscv64.policy │ ├── code_coverage.x86.policy │ ├── code_coverage.arm.policy │ └── generate.sh ├── usbd ├── usbd.rc └── Android.bp ├── Android.bp ├── PREUPLOAD.cfg ├── mkbootfs └── Android.bp ├── janitors └── OWNERS ├── reboot └── Android.bp ├── libsuspend └── Android.bp └── watchdogd └── Android.bp /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | .clang-format-4 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /init/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debuggerd/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libcutils/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libutils/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llkd/OWNERS: -------------------------------------------------------------------------------- 1 | surenb@google.com 2 | -------------------------------------------------------------------------------- /toolbox/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /init/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-4 -------------------------------------------------------------------------------- /libgrallocusage/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsparse/OWNERS: -------------------------------------------------------------------------------- 1 | ccross@google.com 2 | -------------------------------------------------------------------------------- /run-as/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /sdcard/OWNERS: -------------------------------------------------------------------------------- 1 | drosen@google.com 2 | -------------------------------------------------------------------------------- /storaged/OWNERS: -------------------------------------------------------------------------------- 1 | dvander@google.com 2 | -------------------------------------------------------------------------------- /bootstat/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /cli-test/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /debuggerd/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /debuggerd/OWNERS: -------------------------------------------------------------------------------- 1 | cferris@google.com 2 | -------------------------------------------------------------------------------- /diagnose_usb/OWNERS: -------------------------------------------------------------------------------- 1 | yabinc@google.com 2 | -------------------------------------------------------------------------------- /fastboot/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-4 -------------------------------------------------------------------------------- /fs_mgr/.clang-format: -------------------------------------------------------------------------------- 1 | ../init/.clang-format -------------------------------------------------------------------------------- /healthd/api/charger_sysprop-current.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/cutils: -------------------------------------------------------------------------------- 1 | ../libcutils/include/cutils/ -------------------------------------------------------------------------------- /include/system: -------------------------------------------------------------------------------- 1 | ../libsystem/include/system/ -------------------------------------------------------------------------------- /include/utils: -------------------------------------------------------------------------------- 1 | ../libutils/include/utils/ -------------------------------------------------------------------------------- /libappfuse/OWNERS: -------------------------------------------------------------------------------- 1 | hirono@google.com 2 | -------------------------------------------------------------------------------- /libgrallocusage/OWNERS: -------------------------------------------------------------------------------- 1 | jreck@google.com 2 | -------------------------------------------------------------------------------- /libkeyutils/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /libsparse/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /libcrypto_utils/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /libsync/include/sync/sync.h: -------------------------------------------------------------------------------- 1 | ../android/sync.h -------------------------------------------------------------------------------- /property_service/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /shell_and_utilities/OWNERS: -------------------------------------------------------------------------------- 1 | enh@google.com 2 | -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-0042-0: -------------------------------------------------------------------------------- 1 | B -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | # Bug component: 128577 2 | enh@google.com 3 | -------------------------------------------------------------------------------- /libpackagelistparser/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | ../../build/soong/scripts/rustfmt.toml -------------------------------------------------------------------------------- /init/test_kill_services/OWNERS: -------------------------------------------------------------------------------- 1 | smoreland@google.com 2 | -------------------------------------------------------------------------------- /libcutils/include/cutils/log.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /.clang-format-2: -------------------------------------------------------------------------------- 1 | ../../build/soong/scripts/system-clang-format-2 -------------------------------------------------------------------------------- /.clang-format-4: -------------------------------------------------------------------------------- 1 | ../../build/soong/scripts/system-clang-format -------------------------------------------------------------------------------- /healthd/testdata/legacy/res/images/charger/battery_fail.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /healthd/testdata/legacy/res/images/charger/battery_scale.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libutils/OWNERS: -------------------------------------------------------------------------------- 1 | shayba@google.com 2 | smoreland@google.com 3 | -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-7RVbJ8: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-JP2pXq: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-T0YO5T: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libnetutils/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/netd:/OWNERS 2 | 3 | -------------------------------------------------------------------------------- /libsync/OWNERS: -------------------------------------------------------------------------------- 1 | chrisforbes@google.com 2 | jessehall@google.com 3 | -------------------------------------------------------------------------------- /libutils/include/utils/Errors.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/Errors.h -------------------------------------------------------------------------------- /libutils/include/utils/RefBase.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/RefBase.h -------------------------------------------------------------------------------- /libutils/include/utils/String8.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/String8.h -------------------------------------------------------------------------------- /libutils/include/utils/Unicode.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/Unicode.h -------------------------------------------------------------------------------- /libutils/include/utils/Vector.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/Vector.h -------------------------------------------------------------------------------- /libvndksupport/OWNERS: -------------------------------------------------------------------------------- 1 | jiyong@google.com 2 | smoreland@google.com 3 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-0AD0Mc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-3hmWyl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-7T30a0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-BSmqJ0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-BdUGLb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-D2ENNi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-LUVKQn: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-MdY9ZS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-QTsc3y: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-VDguJL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-ZjDqjf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-bMNGfb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-ikJlIo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-kxugwp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-nuYOin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-vg2hAB: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-ysk3Rj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fs_mgr/liblp/OWNERS: -------------------------------------------------------------------------------- 1 | # Bug component: 391836 2 | dvander@google.com 3 | -------------------------------------------------------------------------------- /healthd/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/hardware/interfaces:/health/OWNERS 2 | -------------------------------------------------------------------------------- /healthd/testdata/product/product/etc/res/images/charger/battery_fail.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /healthd/testdata/product/product/etc/res/images/charger/battery_scale.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/fs.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/fs.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/klog.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/klog.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/list.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/list.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/log.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/log.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/misc.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/misc.h -------------------------------------------------------------------------------- /libmodprobe/OWNERS: -------------------------------------------------------------------------------- 1 | dvander@google.com 2 | willmcvicker@google.com 3 | -------------------------------------------------------------------------------- /libsysutils/include/sysutils/OWNERS: -------------------------------------------------------------------------------- 1 | include ../../src/OWNERS 2 | 3 | -------------------------------------------------------------------------------- /libutils/include/utils/String16.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/String16.h -------------------------------------------------------------------------------- /libvendorsupport/OWNERS: -------------------------------------------------------------------------------- 1 | jiyong@google.com 2 | justinyun@google.com 3 | -------------------------------------------------------------------------------- /property_service/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/core:/janitors/OWNERS 2 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-2upXHa: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-3n7SWz: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-5SZG4U: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-8uL1hT: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-Anu8LZ: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-BjxIpX: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-GPOMKC: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-HkRYSS: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-PpfYNn: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-SVKqZi: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-Suxofv: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-Up2pbn: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-ZuQuBC: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-bWlzZp: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-e952U6: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-hme7P0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-k7J5LL: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-vGoOUt: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-vqAG14: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-ypshr5: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-zZNPRC: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /init/test_upgrade_mte/OWNERS: -------------------------------------------------------------------------------- 1 | fmayer@google.com 2 | 3 | pcc@google.com 4 | -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/ashmem.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/ashmem.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/atomic.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/atomic.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/bitops.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/bitops.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/memory.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/memory.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/trace.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/trace.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/uevent.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/uevent.h -------------------------------------------------------------------------------- /libutils/include/utils/LightRefBase.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/LightRefBase.h -------------------------------------------------------------------------------- /libutils/include/utils/TypeHelpers.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/TypeHelpers.h -------------------------------------------------------------------------------- /libutils/include/utils/VectorImpl.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/VectorImpl.h -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-7FNOdd: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-86EumR: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-8UVUCK: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-HjE2Ko: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-J5OABY: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-OP4Vff: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-OizTST: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-S055ei: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-bm0GEm: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-cT2nt8: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-e1NLbb: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-eOCb7t: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-h7Gpzu: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-mY8uM5: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-obk0rP: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/compiler.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/compiler.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/hashmap.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/hashmap.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/multiuser.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/multiuser.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/qtaguid.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/qtaguid.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/sockets.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/sockets.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/str_parms.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/str_parms.h -------------------------------------------------------------------------------- /libutils/include/utils/StrongPointer.h: -------------------------------------------------------------------------------- 1 | ../../binder/include/utils/StrongPointer.h -------------------------------------------------------------------------------- /rootdir/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | ::1 ip6-localhost 3 | -------------------------------------------------------------------------------- /bootstat/OWNERS: -------------------------------------------------------------------------------- 1 | dvander@google.com 2 | achant@google.com 3 | markcheng@google.com 4 | -------------------------------------------------------------------------------- /init/OWNERS: -------------------------------------------------------------------------------- 1 | # Bug component: 1312227 2 | dvander@google.com 3 | jiyong@google.com 4 | -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/properties.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/properties.h -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-EwBsPi: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-rUtYXs: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-sq5ang: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libcutils/include/cutils/android_filesystem_config.h: -------------------------------------------------------------------------------- 1 | ../private/android_filesystem_config.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/android_reboot.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/android_reboot.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/config_utils.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/config_utils.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/iosched_policy.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/iosched_policy.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/native_handle.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/native_handle.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/record_stream.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/record_stream.h -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/sched_policy.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/sched_policy.h -------------------------------------------------------------------------------- /libprocessgroup/OWNERS: -------------------------------------------------------------------------------- 1 | # Bug component: 1293033 2 | surenb@google.com 3 | tjmercier@google.com -------------------------------------------------------------------------------- /libstats/pull_rust/statslog.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "stats_pull_atom_callback.h" 4 | -------------------------------------------------------------------------------- /debuggerd/proto/jarjar-rules.txt: -------------------------------------------------------------------------------- 1 | rule com.google.protobuf.** com.android.server.os.protobuf.@1 2 | -------------------------------------------------------------------------------- /libcutils/OWNERS: -------------------------------------------------------------------------------- 1 | # Bug component: 128577 2 | include platform/system/core:/janitors/OWNERS 3 | -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/partition_utils.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/partition_utils.h -------------------------------------------------------------------------------- /init/libprefetch/prefetch/OWNERS: -------------------------------------------------------------------------------- 1 | akailash@google.com 2 | auradkar@google.com 3 | takayas@google.com 4 | -------------------------------------------------------------------------------- /libprocessgroup/util/OWNERS: -------------------------------------------------------------------------------- 1 | # Bug component: 1293033 2 | surenb@google.com 3 | tjmercier@google.com 4 | -------------------------------------------------------------------------------- /fs_mgr/libsnapshot/snapuserd/OWNERS: -------------------------------------------------------------------------------- 1 | akailash@google.com 2 | dvander@google.com 3 | drosen@google.com 4 | -------------------------------------------------------------------------------- /libsystem/OWNERS: -------------------------------------------------------------------------------- 1 | # graphics/composer 2 | adyabr@google.com 3 | 4 | # camera 5 | etalvala@google.com 6 | -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/android_get_control_file.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/android_get_control_file.h -------------------------------------------------------------------------------- /mini_keyctl/OWNERS: -------------------------------------------------------------------------------- 1 | ebiggers@google.com 2 | jeffv@google.com 3 | jiyong@google.com 4 | victorhsieh@google.com 5 | -------------------------------------------------------------------------------- /rootdir/etc/OWNERS: -------------------------------------------------------------------------------- 1 | danalbert@google.com 2 | enh@google.com 3 | jiyong@google.com 4 | rprichard@google.com 5 | -------------------------------------------------------------------------------- /fastboot/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "fastboot_test" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /healthd/testdata/empty/ensure_directory_creation.txt: -------------------------------------------------------------------------------- 1 | File is placed to ensure directory is created on the device. 2 | -------------------------------------------------------------------------------- /libcutils/include_outside_system/cutils/android_filesystem_config.h: -------------------------------------------------------------------------------- 1 | ../../include/private/android_filesystem_config.h -------------------------------------------------------------------------------- /fastboot/testdata/super.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/fastboot/testdata/super.img -------------------------------------------------------------------------------- /gatekeeperd/OWNERS: -------------------------------------------------------------------------------- 1 | # Bug component: 1124862 2 | drysdale@google.com 3 | oarbildo@google.com 4 | swillden@google.com 5 | -------------------------------------------------------------------------------- /code_coverage/empty_policy/code_coverage.arm.policy: -------------------------------------------------------------------------------- 1 | # empty unless code_coverage is enabled. 2 | # code_coverage.arm.policy 3 | -------------------------------------------------------------------------------- /code_coverage/empty_policy/code_coverage.x86.policy: -------------------------------------------------------------------------------- 1 | # empty unless code_coverage is enabled. 2 | # code_coverage.x86.policy 3 | -------------------------------------------------------------------------------- /fastboot/testdata/system.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/fastboot/testdata/system.img -------------------------------------------------------------------------------- /libsysutils/src/OWNERS: -------------------------------------------------------------------------------- 1 | per-file OWNERS,Netlink* = file:platform/packages/modules/Connectivity:main:/OWNERS_core_networking 2 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-GWcpFn: -------------------------------------------------------------------------------- 1 | Me first, gimme gimme!en -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-MtGRnC: -------------------------------------------------------------------------------- 1 | Me first, gimme gimme!en -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-UQPTAG: -------------------------------------------------------------------------------- 1 | Me first, gimme gimme!en -------------------------------------------------------------------------------- /code_coverage/empty_policy/code_coverage.arm64.policy: -------------------------------------------------------------------------------- 1 | # empty unless code_coverage is enabled. 2 | # code_coverage.arm64.policy 3 | -------------------------------------------------------------------------------- /code_coverage/empty_policy/code_coverage.x86_64.policy: -------------------------------------------------------------------------------- 1 | # empty unless code_coverage is enabled. 2 | # code_coverage.x86_64.policy 3 | -------------------------------------------------------------------------------- /fs_mgr/OWNERS: -------------------------------------------------------------------------------- 1 | # Bug component: 325626 2 | bowgotsai@google.com 3 | dvander@google.com 4 | elsk@google.com 5 | yochiang@google.com 6 | -------------------------------------------------------------------------------- /healthd/images/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/healthd/images/battery_fail.png -------------------------------------------------------------------------------- /healthd/images/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/healthd/images/battery_scale.png -------------------------------------------------------------------------------- /libvndksupport/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "postsubmit": [ 3 | { 4 | "name": "libvndksupport-tests" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /code_coverage/empty_policy/code_coverage.riscv64.policy: -------------------------------------------------------------------------------- 1 | # empty unless code_coverage is enabled. 2 | # code_coverage.riscv64.policy 3 | -------------------------------------------------------------------------------- /fastboot/OWNERS: -------------------------------------------------------------------------------- 1 | dvander@google.com 2 | elsk@google.com 3 | enh@google.com 4 | sanglardf@google.com 5 | zhangkelvin@google.com 6 | 7 | -------------------------------------------------------------------------------- /fastboot/testdata/super_empty.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/fastboot/testdata/super_empty.img -------------------------------------------------------------------------------- /libprocessgroup/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit-large": [ 3 | { 4 | "name": "StagedRollbackTest" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /libprocessgroup/util/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "postsubmit": [ 3 | { 4 | "name": "libprocessgroup_util_test" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /libvendorsupport/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "postsubmit": [ 3 | { 4 | "name": "libvendorsupport-tests" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /toolbox/tools.h: -------------------------------------------------------------------------------- 1 | TOOL(getevent) 2 | TOOL(getprop) 3 | TOOL(modprobe) 4 | TOOL(setprop) 5 | TOOL(start) 6 | TOOL(stop) 7 | TOOL(toolbox) 8 | -------------------------------------------------------------------------------- /usbd/usbd.rc: -------------------------------------------------------------------------------- 1 | service usbd /system/bin/usbd 2 | class late_start 3 | oneshot 4 | user root 5 | group root usb system 6 | -------------------------------------------------------------------------------- /rootdir/avb/q-developer-gsi.avbpubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/rootdir/avb/q-developer-gsi.avbpubkey -------------------------------------------------------------------------------- /rootdir/avb/r-developer-gsi.avbpubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/rootdir/avb/r-developer-gsi.avbpubkey -------------------------------------------------------------------------------- /rootdir/avb/s-developer-gsi.avbpubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/rootdir/avb/s-developer-gsi.avbpubkey -------------------------------------------------------------------------------- /fs_mgr/libsnapshot/tools/testdata/cow_v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/fs_mgr/libsnapshot/tools/testdata/cow_v2 -------------------------------------------------------------------------------- /rootdir/ramdisk_node_list: -------------------------------------------------------------------------------- 1 | dir dev 0755 0 0 2 | nod dev/null 0600 0 0 c 1 3 3 | nod dev/console 0600 0 0 c 5 1 4 | nod dev/urandom 0600 0 0 c 1 9 5 | -------------------------------------------------------------------------------- /trusty/gatekeeper/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "VtsHalGatekeeperTargetTest" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /trusty/OWNERS: -------------------------------------------------------------------------------- 1 | # include OWNERS from the top level trusty repo 2 | include trusty:main:/OWNERS 3 | 4 | mikemcternan@google.com 5 | swillden@google.com -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- 1 | dirgroup { 2 | name: "trusty_dirgroup_system_core", 3 | dirs: ["."], 4 | visibility: ["//trusty/vendor/google/aosp/scripts"], 5 | } 6 | -------------------------------------------------------------------------------- /rootdir/init.no_zygote.rc: -------------------------------------------------------------------------------- 1 | # This is an empty file that does not specify any zygote services. 2 | # It exists to support targets that do not include a zygote. 3 | -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-1x0hJ5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-1x0hJ5 -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-5GV6mx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-5GV6mx -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-9ElJHi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-9ElJHi -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-9czLCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-9czLCR -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-BFx3FN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-BFx3FN -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-BXWpRA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-BXWpRA -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-DanwgH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-DanwgH -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-TM26dO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-TM26dO -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-XcPQ60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-XcPQ60 -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-ZU4x5D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-ZU4x5D -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-Zbzv1t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-Zbzv1t -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-ZvweQK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-ZvweQK -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-d3OcR1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-d3OcR1 -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-dc6Hmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-dc6Hmg -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-fn8Ksu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-fn8Ksu -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-ldnX1U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-ldnX1U -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-pqvh4n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-pqvh4n -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-pvwjne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-pvwjne -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-pzxe39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-pzxe39 -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-tpykrY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-tpykrY -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-tq6MsH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-tq6MsH -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-recv-zt2UIA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-recv-zt2UIA -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-3aKtgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-3aKtgr -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-5Ays9I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-5Ays9I -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-7X098Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-7X098Z -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-B6LYU4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-B6LYU4 -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-BZU7LF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-BZU7LF -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-FxXsxg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-FxXsxg -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-NlxYoC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-NlxYoC -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-PzXetK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-PzXetK -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-RFmR3D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-RFmR3D -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-Tp6AJW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-Tp6AJW -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-V0leT7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-V0leT7 -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-X4Plz3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-X4Plz3 -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-Xd5KiX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-Xd5KiX -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-Ztr5Rk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-Ztr5Rk -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-f6d6wM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-f6d6wM -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-jbzgHv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-jbzgHv -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-jiL5yp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-jiL5yp -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-l5kqxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-l5kqxc -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-l6zX2y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-l6zX2y -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-ltPKls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-ltPKls -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-n7sdVP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-n7sdVP -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-pKSjkT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-pKSjkT -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-rhVedc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-rhVedc -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-tZJ2Ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-tZJ2Ex -------------------------------------------------------------------------------- /trusty/keymaster/fuzz/corpus/keymaster-send-tZlTSQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymaster/fuzz/corpus/keymaster-send-tZlTSQ -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-821180-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-821180-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82128140-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82128140-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82128143-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82128143-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82128158-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82128158-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82128158-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82128158-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138285-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138285-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138285-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138285-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138285-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138285-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138285-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138285-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138286-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138286-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138286-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138286-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138286-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138286-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138286-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138286-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138287-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138287-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138287-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138287-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138287-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138287-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138287-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138287-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138288-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138288-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138288-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138288-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138288-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138288-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138288-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138288-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138289-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138289-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138289-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138289-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138289-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138289-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138289-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138289-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828a-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828a-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828a-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828a-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828a-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828a-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828a-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828a-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828b-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828b-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828b-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828b-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828b-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828b-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828b-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828b-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828c-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828c-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828c-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828c-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828c-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828c-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828c-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828c-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828d-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828d-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828d-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828d-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828d-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828d-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828d-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828d-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828e-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828e-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828e-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828e-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828e-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828e-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828e-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828e-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828f-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828f-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828f-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828f-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828f-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828f-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8213828f-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8213828f-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138290-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138290-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138290-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138290-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82138292-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82138292-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148485-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148485-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148485-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148485-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148485-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148485-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148485-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148485-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148486-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148486-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148486-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148486-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148486-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148486-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148486-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148486-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148487-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148487-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148487-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148487-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148487-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148487-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148487-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148487-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148488-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148488-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148488-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148488-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148488-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148488-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148488-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148488-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148489-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148489-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148489-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148489-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148489-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148489-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82148489-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82148489-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8214848a-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8214848a-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8214848a-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8214848a-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8214848a-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8214848a-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8214848a-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8214848a-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-8214848b-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-8214848b-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82158659-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82158659-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82158659-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82158659-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82158659-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82158659-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82158659-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82158659-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82168258-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82168258-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82168258-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82168258-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82178158-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82178158-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82178158-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82178158-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82178158-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82178158-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82178158-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82178158-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82178159-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82178159-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82178159-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82178159-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82178159-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82178159-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82178159-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82178159-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82181a84-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82181a84-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82181a84-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82181a84-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82181a84-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82181a84-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82181a84-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82181a84-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82181e83-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82181e83-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82181e83-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82181e83-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82181e83-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82181e83-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82181e83-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82181e83-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183184-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183184-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183184-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183184-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183184-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183184-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183184-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183184-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183284-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183284-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183284-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183284-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183284-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183284-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183284-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183284-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183386-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183386-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183386-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183386-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183386-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183386-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183386-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183386-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183481-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183481-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183481-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183481-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183481-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183481-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82183481-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82183481-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82184180-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82184180-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-reqs-82184281-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-reqs-82184281-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00035504-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00035504-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-001e170d-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-001e170d-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00303031-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00303031-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00313563-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00313563-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00333233-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00333233-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00365a17-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00365a17-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-003cc0cc-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-003cc0cc-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-003e7b1a-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-003e7b1a-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00646630-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00646630-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00820081-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00820081-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00820081-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00820081-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00820081-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00820081-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00820081-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00820081-3 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822180-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822180-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822280-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822280-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822580-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822580-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822680-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822680-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822780-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822780-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822880-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822880-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822980-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822980-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822a80-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822a80-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822b80-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822b80-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00822c80-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00822c80-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823080-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823080-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823480-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823480-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823819-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823819-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-0082381d-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-0082381d-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-0082381e-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-0082381e-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823820-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823820-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823825-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823825-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823827-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823827-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-0082382b-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-0082382b-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823833-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823833-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823836-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823836-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823837-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823837-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823838-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823838-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823839-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823839-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-0082383a-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-0082383a-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-0082383e-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-0082383e-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823840-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823840-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823841-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823841-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823846-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823846-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-0082384d-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-0082384d-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-0082384e-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-0082384e-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-0082384f-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-0082384f-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823850-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823850-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00823903-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00823903-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-009a81fa-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-009a81fa-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-00b5ae79-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-00b5ae79-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-01820081-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-01820081-0 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-01820081-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-01820081-1 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-01820081-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-01820081-2 -------------------------------------------------------------------------------- /trusty/keymint/fuzz/corpus/keymint-rsps-01820081-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/keymint/fuzz/corpus/keymint-rsps-01820081-3 -------------------------------------------------------------------------------- /fs_mgr/libsnapshot/OWNERS: -------------------------------------------------------------------------------- 1 | # Bug component: 1014951 2 | balsini@google.com 3 | dvander@google.com 4 | elsk@google.com 5 | akailash@google.com 6 | zhangkelvin@google.com 7 | -------------------------------------------------------------------------------- /rootdir/OWNERS: -------------------------------------------------------------------------------- 1 | bowgotsai@google.com 2 | ccross@google.com 3 | dvander@google.com 4 | elsk@google.com 5 | jeffv@google.com 6 | jiyong@google.com 7 | smoreland@google.com 8 | -------------------------------------------------------------------------------- /rootdir/etc/ld.config.txt: -------------------------------------------------------------------------------- 1 | # This file is no longer in use. 2 | # Please update linker configuration generator instead. 3 | # You can find the code from /system/linkerconfig -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-2MMzSr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-2MMzSr -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-Et63W0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-Et63W0 -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-G41Iz8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-G41Iz8 -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-ItEoqJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-ItEoqJ -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-MGXdfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-MGXdfu -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-Yq4f10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-Yq4f10 -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-agxKZa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-agxKZa -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-alhn2v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-alhn2v -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-eVJFHV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-eVJFHV -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-et5K21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-et5K21 -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-gun5YX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-gun5YX -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-kXw1R9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-kXw1R9 -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-moapss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-moapss -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-u5QySb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-u5QySb -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-uZtvkq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-uZtvkq -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-w5G2SF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-w5G2SF -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-y3H74x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-y3H74x -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-yALfeS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-recv-yALfeS -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-2S1GLi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-2S1GLi -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-4j7hUc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-4j7hUc -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-6hsSQG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-6hsSQG -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-E8CE7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-E8CE7b -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-GEDmHj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-GEDmHj -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-MpwDEN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-MpwDEN -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-Qutf8O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-Qutf8O -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-Sg1WMt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-Sg1WMt -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-U6Y1My: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-U6Y1My -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-WdSRky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-WdSRky -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-Ypw6WP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-Ypw6WP -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-Yyj4Af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-Yyj4Af -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-amyF62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-amyF62 -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-gu8ziA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-gu8ziA -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-iCATsM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-iCATsM -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-kawT3I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-kawT3I -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-sYFzM5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-sYFzM5 -------------------------------------------------------------------------------- /trusty/gatekeeper/fuzz/corpus/gatekeeper-send-yNFMdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/gatekeeper/fuzz/corpus/gatekeeper-send-yNFMdn -------------------------------------------------------------------------------- /fs_mgr/libsnapshot/tools/testdata/incompressible_block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/fs_mgr/libsnapshot/tools/testdata/incompressible_block -------------------------------------------------------------------------------- /rootdir/etc/ld.config.legacy.txt: -------------------------------------------------------------------------------- 1 | # This file is no longer in use. 2 | # Please update linker configuration generator instead. 3 | # You can find the code from /system/linkerconfig -------------------------------------------------------------------------------- /gatekeeperd/gatekeeperd.rc: -------------------------------------------------------------------------------- 1 | service gatekeeperd /system/bin/gatekeeperd /data/misc/gatekeeper 2 | class late_start 3 | user system 4 | task_profiles ServiceCapacityLow 5 | -------------------------------------------------------------------------------- /rootdir/etc/ld.config.recovery.txt: -------------------------------------------------------------------------------- 1 | # This file is no longer in use. 2 | # Please update linker configuration generator instead. 3 | # You can find the code from /system/linkerconfig -------------------------------------------------------------------------------- /rootdir/etc/ld.config.vndk_lite.txt: -------------------------------------------------------------------------------- 1 | # This file is no longer in use. 2 | # Please update linker configuration generator instead. 3 | # You can find the code from /system/linkerconfig -------------------------------------------------------------------------------- /rootdir/asan_extract.rc: -------------------------------------------------------------------------------- 1 | # When /data is available, look for /system/asan.tar.gz and potentially extract. 2 | on post-fs-data 3 | exec - system system -- /system/bin/asan_extract 4 | -------------------------------------------------------------------------------- /fs_mgr/clean_scratch_files.rc: -------------------------------------------------------------------------------- 1 | on post-fs-data && property:ro.debuggable=1 && property:ro.boot.dynamic_partitions=true 2 | exec_background - root root -- /system/bin/clean_scratch_files 3 | -------------------------------------------------------------------------------- /libprocessgroup/profiles/cgroups.recovery.json: -------------------------------------------------------------------------------- 1 | { 2 | "Cgroups2": { 3 | "Path": "/sys/fs/cgroup", 4 | "Mode": "0755", 5 | "UID": "root", 6 | "GID": "root" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /libutils/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "libutils_test" 5 | }, 6 | { 7 | "name": "libutils_binder_test" 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-1b1UIl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-1b1UIl -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-89b64b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-89b64b -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-NZ8yUq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/confirmationui/fuzz/msg_corpus/confirmationui-recv-NZ8yUq -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-ZjgVzs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-ZjgVzs -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-f7ly1r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-f7ly1r -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-uOtedb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-uOtedb -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-xKDdTw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-xKDdTw -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-ypzCDH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aosp-mirror/platform_system_core/HEAD/trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-ypzCDH -------------------------------------------------------------------------------- /toolbox/OWNERS: -------------------------------------------------------------------------------- 1 | include platform/system/core:/janitors/OWNERS 2 | per-file modprobe.c=willmcvicker@google.com,dvander@google.com 3 | per-file getevent.c=file:platform/frameworks/base:/INPUT_OWNERS 4 | -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-LAyw30: -------------------------------------------------------------------------------- 1 | dWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWen -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-DBzfWz: -------------------------------------------------------------------------------- 1 | dWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWen -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-dPozfE: -------------------------------------------------------------------------------- 1 | gWWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWWen -------------------------------------------------------------------------------- /trusty/confirmationui/fuzz/msg_corpus/confirmationui-send-xT4sJC: -------------------------------------------------------------------------------- 1 | gWWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWW WWWWWWWWWWWWen -------------------------------------------------------------------------------- /fs_mgr/liblp/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "liblp_test" 5 | } 6 | ], 7 | "hwasan-presubmit": [ 8 | { 9 | "name": "liblp_test" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /trusty/secretkeeper/android.hardware.security.secretkeeper.trusty.rc: -------------------------------------------------------------------------------- 1 | service vendor.secretkeeper.trusty /vendor/bin/hw/android.hardware.security.secretkeeper.trusty 2 | class hal 3 | user nobody 4 | group drmrpc -------------------------------------------------------------------------------- /libstats/OWNERS: -------------------------------------------------------------------------------- 1 | jeffreyhuang@google.com 2 | monicamwang@google.com 3 | muhammadq@google.com 4 | rayhdez@google.com 5 | sharaienko@google.com 6 | singhtejinder@google.com 7 | tsaichristine@google.com 8 | yaochen@google.com 9 | -------------------------------------------------------------------------------- /trusty/keymaster/3.0/android.hardware.keymaster@3.0-service.trusty.rc: -------------------------------------------------------------------------------- 1 | service vendor.keymaster-3-0 /vendor/bin/hw/android.hardware.keymaster@3.0-service.trusty 2 | class early_hal 3 | user nobody 4 | group drmrpc 5 | -------------------------------------------------------------------------------- /trusty/keymaster/4.0/android.hardware.keymaster@4.0-service.trusty.rc: -------------------------------------------------------------------------------- 1 | service vendor.keymaster-4-0 /vendor/bin/hw/android.hardware.keymaster@4.0-service.trusty 2 | class early_hal 3 | user nobody 4 | group drmrpc 5 | -------------------------------------------------------------------------------- /libmodprobe/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "libmodprobe_tests" 5 | } 6 | ], 7 | "hwasan-postsubmit": [ 8 | { 9 | "name": "libmodprobe_tests" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /libvendorsupport/libvendorsupport.map.txt: -------------------------------------------------------------------------------- 1 | LIBVENDORSUPPORT { 2 | global: 3 | AVendorSupport_getVendorApiLevelOf; # llndk systemapi 4 | AVendorSupport_getSdkApiLevelOf; # llndk systemapi 5 | local: 6 | *; 7 | }; 8 | -------------------------------------------------------------------------------- /rootdir/etc/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "CtsBionicTestCases" 5 | } 6 | ], 7 | "hwasan-postsubmit": [ 8 | { 9 | "name": "CtsBionicTestCases" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /healthd/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "libhealthd_charger_test" 5 | } 6 | ], 7 | "hwasan-postsubmit": [ 8 | { 9 | "name": "libhealthd_charger_test" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /init/test_service/test_service.rc: -------------------------------------------------------------------------------- 1 | service test_service /system/bin/test_service CapAmb 0000000000003000 2 | class main 3 | user system 4 | group system 5 | capabilities NET_ADMIN NET_RAW 6 | disabled 7 | oneshot 8 | -------------------------------------------------------------------------------- /libstats/pull_lazy/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit" : [ 3 | { 4 | "name" : "libstatspull_lazy_test" 5 | } 6 | ], 7 | "hwasan-presubmit" : [ 8 | { 9 | "name" : "libstatspull_lazy_test" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /rootdir/init.boringssl.zygote64.rc: -------------------------------------------------------------------------------- 1 | on init && property:ro.product.cpu.abilist64=* 2 | exec_start boringssl_self_test64 3 | on property:apexd.status=ready && property:ro.product.cpu.abilist64=* 4 | exec_start boringssl_self_test_apex64 5 | -------------------------------------------------------------------------------- /libstats/socket_lazy/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit" : [ 3 | { 4 | "name" : "libstatssocket_lazy_test" 5 | } 6 | ], 7 | "hwasan-presubmit" : [ 8 | { 9 | "name" : "libstatssocket_lazy_test" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /libpackagelistparser/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "libpackagelistparser_test" 5 | } 6 | ], 7 | "hwasan-presubmit": [ 8 | { 9 | "name": "libpackagelistparser_test" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /property_service/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "propertyinfoserializer_tests" 5 | } 6 | ], 7 | "hwasan-presubmit": [ 8 | { 9 | "name": "propertyinfoserializer_tests" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /libsysutils/EventLogTags.logtags: -------------------------------------------------------------------------------- 1 | # See system/logging/logcat/event.logtags for a description of the format of this file. 2 | 3 | # FrameworkListener dispatchCommand overflow 4 | 78001 exp_det_dispatchCommand_overflow 5 | 65537 exp_det_netlink_failure (uid|1) 6 | -------------------------------------------------------------------------------- /storaged/storaged.rc: -------------------------------------------------------------------------------- 1 | service storaged /system/bin/storaged 2 | class main 3 | capabilities DAC_READ_SEARCH 4 | priority 10 5 | file /d/mmc0/mmc0:0001/ext_csd r 6 | task_profiles ServiceCapacityLow 7 | user root 8 | group package_info 9 | -------------------------------------------------------------------------------- /code_coverage/seccomp_policy/code_coverage.x86_64.policy: -------------------------------------------------------------------------------- 1 | close: 1 2 | fchmod: 1 3 | mkdirat: 1 4 | msync: 1 5 | munmap: 1 6 | openat: 1 7 | write: 1 8 | fcntl: 1 9 | fstat: 1 10 | ftruncate: 1 11 | geteuid: 1 12 | lseek: 1 13 | mmap: 1 14 | rt_sigreturn: 1 15 | -------------------------------------------------------------------------------- /trusty/keymaster/keymint/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit" : [ 3 | { 4 | "name" : "vts_treble_vintf_framework_test" 5 | } 6 | ], 7 | "hwasan-presubmit" : [ 8 | { 9 | "name" : "vts_treble_vintf_framework_test" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /code_coverage/seccomp_policy/code_coverage.arm64.policy: -------------------------------------------------------------------------------- 1 | close: 1 2 | fchmod: 1 3 | mkdirat: 1 4 | msync: 1 5 | munmap: 1 6 | openat: 1 7 | write: 1 8 | fcntl: 1 9 | fstat: 1 10 | ftruncate: 1 11 | geteuid: 1 12 | lseek: 1 13 | mmap: 1 14 | rt_sigreturn: 1 15 | prctl: 1 16 | -------------------------------------------------------------------------------- /libvndksupport/libvndksupport.map.txt: -------------------------------------------------------------------------------- 1 | LIBVNDKSUPPORT { 2 | global: 3 | android_is_in_vendor_process; # llndk-deprecated=35 systemapi 4 | android_load_sphal_library; # llndk systemapi 5 | android_unload_sphal_library; # llndk systemapi 6 | local: 7 | *; 8 | }; 9 | -------------------------------------------------------------------------------- /code_coverage/seccomp_policy/code_coverage.riscv64.policy: -------------------------------------------------------------------------------- 1 | close: 1 2 | fchmod: 1 3 | mkdirat: 1 4 | msync: 1 5 | munmap: 1 6 | openat: 1 7 | write: 1 8 | fcntl: 1 9 | fstat: 1 10 | ftruncate: 1 11 | geteuid: 1 12 | lseek: 1 13 | mmap: 1 14 | rt_sigreturn: 1 15 | prctl: 1 16 | -------------------------------------------------------------------------------- /libsystem/include/system/graphics-base.h: -------------------------------------------------------------------------------- 1 | #ifndef SYSTEM_CORE_GRAPHICS_BASE_H_ 2 | #define SYSTEM_CORE_GRAPHICS_BASE_H_ 3 | 4 | #include "graphics-base-v1.0.h" 5 | #include "graphics-base-v1.1.h" 6 | #include "graphics-base-v1.2.h" 7 | 8 | #endif // SYSTEM_CORE_GRAPHICS_BASE_H_ 9 | -------------------------------------------------------------------------------- /code_coverage/seccomp_policy/code_coverage.x86.policy: -------------------------------------------------------------------------------- 1 | close: 1 2 | fchmod: 1 3 | mkdirat: 1 4 | msync: 1 5 | munmap: 1 6 | openat: 1 7 | write: 1 8 | fcntl64: 1 9 | fstat64: 1 10 | ftruncate64: 1 11 | geteuid32: 1 12 | _llseek: 1 13 | mmap2: 1 14 | sigreturn: 1 15 | madvise: 1 16 | -------------------------------------------------------------------------------- /rootdir/asan.options: -------------------------------------------------------------------------------- 1 | allow_user_segv_handler=1 2 | detect_odr_violation=0 3 | alloc_dealloc_mismatch=0 4 | allocator_may_return_null=1 5 | detect_container_overflow=0 6 | abort_on_error=1 7 | include_if_exists=/system/asan.options.%b 8 | include_if_exists=/data/asan/system/asan.options.%b 9 | -------------------------------------------------------------------------------- /cli-test/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_binary { 6 | name: "cli-test", 7 | host_supported: true, 8 | srcs: ["cli-test.cpp"], 9 | cflags: ["-Wall", "-Werror"], 10 | shared_libs: ["libbase"], 11 | } 12 | -------------------------------------------------------------------------------- /code_coverage/seccomp_policy/code_coverage.arm.policy: -------------------------------------------------------------------------------- 1 | close: 1 2 | fchmod: 1 3 | mkdirat: 1 4 | msync: 1 5 | munmap: 1 6 | openat: 1 7 | write: 1 8 | fcntl64: 1 9 | fstat64: 1 10 | ftruncate64: 1 11 | geteuid32: 1 12 | _llseek: 1 13 | mmap2: 1 14 | sigreturn: 1 15 | gettimeofday: 1 16 | prctl: 1 17 | -------------------------------------------------------------------------------- /healthd/testdata/legacy/res/values/charger/animation.txt: -------------------------------------------------------------------------------- 1 | # Sample Animation file for testing. 2 | 3 | # animation: num_cycles, first_frame_repeats, animation_file 4 | animation: 2 1 charger/battery_scale 5 | 6 | fail: charger/battery_fail 7 | 8 | # frame: disp_time min_level max_level 9 | frame: 15 0 100 10 | -------------------------------------------------------------------------------- /trusty/secretkeeper/android.hardware.security.secretkeeper.trusty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | android.hardware.security.secretkeeper 4 | 1 5 | ISecretkeeper/default 6 | 7 | 8 | -------------------------------------------------------------------------------- /libutils/include/utils/Log.h: -------------------------------------------------------------------------------- 1 | // DO NOT INCLUDE ANYTHING NEW IN THIS FILE. 2 | 3 | // has replaced this file and all changes should go there instead. 4 | // This path remains strictly to include that header as there are thousands of 5 | // references to in the tree. 6 | 7 | #include 8 | -------------------------------------------------------------------------------- /trusty/confirmationui/android.hardware.confirmationui-service.trusty.rc: -------------------------------------------------------------------------------- 1 | service vendor.confirmationui_default /vendor/bin/hw/android.hardware.confirmationui-service.trusty 2 | interface aidl android.hardware.confirmationui.IConfirmationUI/default 3 | class hal 4 | user system 5 | group drmrpc input system 6 | -------------------------------------------------------------------------------- /trusty/keymaster/4.0/android.hardware.keymaster@4.0-service.trusty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | android.hardware.keymaster 4 | hwbinder 5 | @4.0::IKeymasterDevice/default 6 | 7 | 8 | -------------------------------------------------------------------------------- /healthd/testdata/product/product/etc/res/values/charger/animation.txt: -------------------------------------------------------------------------------- 1 | # Sample Animation file for testing. 2 | 3 | # animation: num_cycles, first_frame_repeats, animation_file 4 | animation: 2 1 charger/battery_scale 5 | 6 | fail: charger/battery_fail 7 | 8 | # frame: disp_time min_level max_level 9 | frame: 15 0 100 10 | -------------------------------------------------------------------------------- /trusty/gatekeeper/android.hardware.gatekeeper-service.trusty.rc: -------------------------------------------------------------------------------- 1 | service vendor.gatekeeper_default /vendor/bin/hw/android.hardware.gatekeeper-service.trusty \ 2 | --dev ${ro.hardware.trusty_ipc_dev.gatekeeper:-/dev/trusty-ipc-dev0} 3 | class hal 4 | user system 5 | group system 6 | -------------------------------------------------------------------------------- /healthd/testdata/legacy_text_system_images/res/values/charger/animation.txt: -------------------------------------------------------------------------------- 1 | # Sample Animation file for testing. 2 | 3 | # animation: num_cycles, first_frame_repeats, animation_file 4 | animation: 2 1 charger/battery_scale 5 | 6 | fail: charger/battery_fail 7 | 8 | # frame: disp_time min_level max_level 9 | frame: 15 0 100 10 | -------------------------------------------------------------------------------- /trusty/confirmationui/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | UseTab: Never 4 | BreakBeforeBraces: Attach 5 | AllowShortFunctionsOnASingleLine: Inline 6 | AllowShortIfStatementsOnASingleLine: true 7 | IndentCaseLabels: false 8 | ColumnLimit: 100 9 | PointerBindsToType: true 10 | SpacesBeforeTrailingComments: 2 11 | -------------------------------------------------------------------------------- /trusty/sysprops/api/trusty-properties-current.txt: -------------------------------------------------------------------------------- 1 | props { 2 | module: "android.sysprop.trusty.security_vm" 3 | prop { 4 | api_name: "enabled" 5 | prop_name: "trusty.security_vm.enabled" 6 | } 7 | prop { 8 | api_name: "keymint_enabled" 9 | prop_name: "trusty.security_vm.keymint.enabled" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /trusty/sysprops/api/trusty-properties-latest.txt: -------------------------------------------------------------------------------- 1 | props { 2 | module: "android.sysprop.trusty.security_vm" 3 | prop { 4 | api_name: "enabled" 5 | prop_name: "trusty.security_vm.enabled" 6 | } 7 | prop { 8 | api_name: "keymint_enabled" 9 | prop_name: "trusty.security_vm.keymint.enabled" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /debuggerd/tombstoned/tombstoned.microdroid.rc: -------------------------------------------------------------------------------- 1 | service tombstoned /system/bin/tombstoned.microdroid 2 | user tombstoned 3 | group system 4 | 5 | socket tombstoned_crash seqpacket 0666 system system 6 | socket tombstoned_intercept seqpacket 0666 system system 7 | socket tombstoned_java_trace seqpacket 0666 system system 8 | -------------------------------------------------------------------------------- /trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.rc: -------------------------------------------------------------------------------- 1 | service vendor.keymint-trusty /vendor/bin/hw/android.hardware.security.keymint-service.trusty \ 2 | --dev ${ro.hardware.trusty_ipc_dev.keymint:-/dev/trusty-ipc-dev0} 3 | class early_hal 4 | user nobody 5 | group drmrpc 6 | -------------------------------------------------------------------------------- /debuggerd/tombstoned/tombstoned.rc: -------------------------------------------------------------------------------- 1 | service tombstoned /system/bin/tombstoned 2 | user tombstoned 3 | group system 4 | 5 | socket tombstoned_crash seqpacket 0666 system system 6 | socket tombstoned_intercept seqpacket 0666 system system 7 | socket tombstoned_java_trace seqpacket 0666 system system 8 | task_profiles ServiceCapacityLow 9 | -------------------------------------------------------------------------------- /bootstat/bootstat-debug.rc: -------------------------------------------------------------------------------- 1 | # This file is the userdebug LOCAL_INIT_RC file for the bootstat command. 2 | 3 | # FOR TESTING 4 | # For devices w/o bootloader boot reason reported, mirror test boot reason 5 | # to bootloader boot reason to allow test to inject reasons 6 | on property:persist.test.boot.reason=* 7 | setprop ro.boot.bootreason ${persist.test.boot.reason} 8 | -------------------------------------------------------------------------------- /PREUPLOAD.cfg: -------------------------------------------------------------------------------- 1 | [Builtin Hooks] 2 | clang_format = true 3 | rustfmt = true 4 | bpfmt = true 5 | 6 | [Builtin Hooks Options] 7 | clang_format = --commit ${PREUPLOAD_COMMIT} --style file --extensions c,h,cc,cpp 8 | rustfmt = --config-path=rustfmt.toml 9 | 10 | [Hook Scripts] 11 | aosp_hook = ${REPO_ROOT}/frameworks/base/tools/aosp/aosp_sha.sh ${PREUPLOAD_COMMIT} "." 12 | -------------------------------------------------------------------------------- /libcutils/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "libcutils_test" 5 | } 6 | ], 7 | "hwasan-presubmit": [ 8 | { 9 | "name": "libcutils_test" 10 | } 11 | ], 12 | "kernel-presubmit": [ 13 | { 14 | "name": "libcutils_test" 15 | }, 16 | { 17 | "name": "KernelLibcutilsTest" 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /trusty/gatekeeper/android.hardware.gatekeeper-service.trusty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | android.hardware.gatekeeper 4 | 1 5 | 6 | IGatekeeper 7 | default 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /libprocessgroup/vts/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_test { 6 | name: "vts_libprocessgroup", 7 | srcs: ["vts_libprocessgroup.cpp"], 8 | shared_libs: ["libbase"], 9 | static_libs: ["libgmock"], 10 | require_root: true, 11 | test_suites: [ 12 | "general-tests", 13 | "vts", 14 | ], 15 | } 16 | -------------------------------------------------------------------------------- /trusty/confirmationui/android.hardware.confirmationui-service.trusty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | android.hardware.confirmationui 4 | 1 5 | 6 | IConfirmationUI 7 | default 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /trusty/sysprops/example.rs: -------------------------------------------------------------------------------- 1 | //! Example showing how to access the `trusty.security_vm.vm_cid` system property with Rust. 2 | 3 | use trusty_properties::security_vm; 4 | 5 | fn main() { 6 | match security_vm::vm_cid() { 7 | Ok(Some(cid)) => println!("CID: {cid}"), 8 | Ok(None) => println!("CID property not set"), 9 | Err(e) => println!("Error: {e:?}"), 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /debuggerd/seccomp_policy/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | cd "$(dirname "$0")" 6 | CPP='cpp -undef -E -P crash_dump.policy.def' 7 | $CPP -D__arm__ -o crash_dump.arm.policy 8 | $CPP -D__aarch64__ -D__LP64__ -o crash_dump.arm64.policy 9 | $CPP -D__riscv -D__LP64__ -o crash_dump.riscv64.policy 10 | $CPP -D__i386__ -o crash_dump.x86.policy 11 | $CPP -D__x86_64__ -D__LP64__ -o crash_dump.x86_64.policy 12 | -------------------------------------------------------------------------------- /storaged/README.properties: -------------------------------------------------------------------------------- 1 | ro.storaged.event.interval # interval storaged scans for IO stats, in seconds 2 | ro.storaged.event.perf_check # check for time spent in event loop, in microseconds 3 | ro.storaged.disk_stats_pub # interval storaged publish disk stats, in seconds 4 | ro.storaged.uid_io.interval # interval storaged checks Per UID IO usage, in seconds 5 | ro.storaged.uid_io.threshold # Per UID IO usage limit, in bytes 6 | -------------------------------------------------------------------------------- /code_coverage/seccomp_policy/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # generate the arch-specific files from the generic one 4 | 5 | set -ex 6 | 7 | cd "$(dirname "$0")" 8 | CPP='cpp -undef -E -P code_coverage.policy.def' 9 | $CPP -D__arm__ -o code_coverage.arm.policy 10 | $CPP -D__aarch64__ -D__LP64__ -o code_coverage.arm64.policy 11 | $CPP -D__i386__ -o code_coverage.x86.policy 12 | $CPP -D__x86_64__ -D__LP64__ -o code_coverage.x86_64.policy 13 | -------------------------------------------------------------------------------- /rootdir/init.boringssl.zygote64_32.rc: -------------------------------------------------------------------------------- 1 | on init && property:ro.product.cpu.abilist32=* 2 | exec_start boringssl_self_test32 3 | on init && property:ro.product.cpu.abilist64=* 4 | exec_start boringssl_self_test64 5 | on property:apexd.status=ready && property:ro.product.cpu.abilist32=* 6 | exec_start boringssl_self_test_apex32 7 | on property:apexd.status=ready && property:ro.product.cpu.abilist64=* 8 | exec_start boringssl_self_test_apex64 9 | -------------------------------------------------------------------------------- /mkbootfs/Android.bp: -------------------------------------------------------------------------------- 1 | // Copyright 2005 The Android Open Source Project 2 | 3 | package { 4 | default_applicable_licenses: ["Android-Apache-2.0"], 5 | } 6 | 7 | cc_binary_host { 8 | name: "mkbootfs", 9 | srcs: ["mkbootfs.cpp"], 10 | cflags: ["-Werror"], 11 | static_libs: [ 12 | "libbase", 13 | "libcutils", 14 | "liblog", 15 | ], 16 | dist: { 17 | targets: ["dist_files"], 18 | }, 19 | } 20 | -------------------------------------------------------------------------------- /trusty/sysprops/Android.bp: -------------------------------------------------------------------------------- 1 | sysprop_library { 2 | name: "trusty-properties", 3 | srcs: ["android/sysprop/trusty/security_vm.sysprop"], 4 | property_owner: "Platform", 5 | api_packages: ["android.sysprop.trusty"], 6 | apex_available: [ 7 | "//apex_available:platform", 8 | ], 9 | } 10 | 11 | rust_binary { 12 | name: "trusty-properties-example", 13 | srcs: ["example.rs"], 14 | rustlibs: ["libtrusty_properties_rust"], 15 | } 16 | -------------------------------------------------------------------------------- /janitors/OWNERS: -------------------------------------------------------------------------------- 1 | # go/android-3p requires that all external projects have the "janitors" in 2 | # their OWNERS files. 3 | 4 | # These are also the "owners" for projects that don't really have owners 5 | # so much as volunteer janitors. 6 | 7 | # General maintenance. 8 | sadafebrahimi@google.com 9 | 10 | # C/C++. 11 | ccross@google.com 12 | cferris@google.com 13 | enh@google.com 14 | 15 | # Java. 16 | maco@google.com 17 | 18 | # Python. 19 | dwillemsen@google.com 20 | -------------------------------------------------------------------------------- /trusty/keymint/android.hardware.security.keymint-service.rust.trusty.rc: -------------------------------------------------------------------------------- 1 | service vendor.keymint.rust-trusty /vendor/bin/hw/android.hardware.security.keymint-service.rust.trusty \ 2 | --dev ${ro.hardware.trusty_ipc_dev.keymint:-/dev/trusty-ipc-dev0} 3 | class early_hal 4 | user nobody 5 | group drmrpc 6 | # The keymint service is not allowed to restart. 7 | # If it crashes, a device restart is required. 8 | oneshot 9 | -------------------------------------------------------------------------------- /sdcard/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_binary { 6 | srcs: ["sdcard.cpp"], 7 | name: "sdcard", 8 | cflags: [ 9 | "-Wall", 10 | "-Wno-unused-parameter", 11 | "-Werror", 12 | ], 13 | shared_libs: [ 14 | "libbase", 15 | "libcutils", 16 | "libminijail", 17 | ], 18 | sanitize: { 19 | misc_undefined: ["integer"], 20 | }, 21 | } 22 | -------------------------------------------------------------------------------- /fs_mgr/libstorage_literals/Android.bp: -------------------------------------------------------------------------------- 1 | 2 | package { 3 | default_applicable_licenses: ["Android-Apache-2.0"], 4 | } 5 | 6 | cc_library_headers { 7 | name: "libstorage_literals_headers", 8 | host_supported: true, 9 | ramdisk_available: true, 10 | vendor_ramdisk_available: true, 11 | recovery_available: true, 12 | export_include_dirs: ["."], 13 | target: { 14 | windows: { 15 | enabled: true, 16 | }, 17 | }, 18 | } 19 | -------------------------------------------------------------------------------- /init/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "CtsInitTestCases" 5 | }, 6 | { 7 | "name": "init_kill_services_test" 8 | }, 9 | { 10 | "name": "MicrodroidHostTestCases" 11 | } 12 | ], 13 | "hwasan-presubmit": [ 14 | { 15 | "name": "CtsInitTestCases" 16 | }, 17 | { 18 | "name": "init_kill_services_test" 19 | }, 20 | { 21 | "name": "MicrodroidHostTestCases" 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /property_service/property_info_checker/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_binary { 6 | name: "property_info_checker", 7 | host_supported: true, 8 | static_executable: true, 9 | static_libs: [ 10 | "libpropertyinfoserializer", 11 | "libpropertyinfoparser", 12 | "libbase", 13 | "liblog", 14 | "libsepol", 15 | ], 16 | srcs: ["property_info_checker.cpp"], 17 | } 18 | -------------------------------------------------------------------------------- /rootdir/adb_debug.prop: -------------------------------------------------------------------------------- 1 | # Note: This file will be loaded with highest priority to override 2 | # other system properties, if a special ramdisk with "/force_debuggable" 3 | # is used and the device is unlocked. 4 | 5 | # Disable adb authentication to allow test automation on user build GSI 6 | ro.adb.secure=0 7 | 8 | # Allow 'adb root' on user build GSI 9 | ro.debuggable=1 10 | 11 | # Introduce this property to indicate that init has loaded adb_debug.prop 12 | ro.force.debuggable=1 13 | -------------------------------------------------------------------------------- /usbd/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_binary { 6 | name: "usbd", 7 | init_rc: ["usbd.rc"], 8 | srcs: ["usbd.cpp"], 9 | shared_libs: [ 10 | "libbase", 11 | "libbinder_ndk", 12 | "libhidlbase", 13 | "liblog", 14 | "libutils", 15 | "libhardware", 16 | "android.hardware.usb.gadget@1.0", 17 | "android.hardware.usb.gadget-V1-ndk", 18 | ], 19 | } 20 | -------------------------------------------------------------------------------- /rootdir/init.zygote64_32.rc: -------------------------------------------------------------------------------- 1 | import /system/etc/init/hw/init.zygote64.rc 2 | 3 | service zygote_secondary /system/bin/app_process32 -Xzygote /system/bin --zygote --socket-name=zygote_secondary --enable-lazy-preload 4 | class main 5 | priority -20 6 | user root 7 | group root readproc reserved_disk 8 | socket zygote_secondary stream 660 root system 9 | socket usap_pool_secondary stream 660 root system 10 | onrestart restart zygote 11 | task_profiles ProcessCapacityHigh MaxPerformance 12 | -------------------------------------------------------------------------------- /libstats/expresslog/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | AllowShortIfStatementsOnASingleLine: true 3 | AllowShortFunctionsOnASingleLine: false 4 | AllowShortLoopsOnASingleLine: true 5 | BinPackArguments: true 6 | BinPackParameters: true 7 | ColumnLimit: 100 8 | CommentPragmas: NOLINT:.* 9 | ContinuationIndentWidth: 8 10 | DerivePointerAlignment: false 11 | IndentWidth: 4 12 | PointerAlignment: Left 13 | TabWidth: 4 14 | AccessModifierOffset: -4 15 | IncludeCategories: 16 | - Regex: '^"Log\.h"' 17 | Priority: -1 18 | -------------------------------------------------------------------------------- /fastboot/testdata/make_super_images.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | set -x 5 | 6 | lpmake \ 7 | --device-size=auto \ 8 | --metadata-size=4096 \ 9 | --metadata-slots=3 \ 10 | --partition=system_a:readonly:0 \ 11 | --alignment=16384 \ 12 | --output=super_empty.img 13 | 14 | lpmake \ 15 | --device-size=auto \ 16 | --metadata-size=4096 \ 17 | --metadata-slots=3 \ 18 | --partition=system_a:readonly:0 \ 19 | --alignment=16384 \ 20 | --output=super.img \ 21 | --image=system_a=system.img 22 | -------------------------------------------------------------------------------- /fastboot/fs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | 6 | struct fs_generator; 7 | 8 | enum FS_OPTION { 9 | FS_OPT_CASEFOLD, 10 | FS_OPT_PROJID, 11 | FS_OPT_COMPRESS, 12 | }; 13 | 14 | const struct fs_generator* fs_get_generator(const std::string& fs_type); 15 | int fs_generator_generate(const struct fs_generator* gen, const char* fileName, long long partSize, 16 | unsigned eraseBlkSize = 0, unsigned logicalBlkSize = 0, 17 | unsigned fsOptions = 0); 18 | -------------------------------------------------------------------------------- /fs_mgr/libfs_avb/run_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Run host tests 4 | atest --host libfs_avb_test # Tests public libfs_avb APIs. 5 | 6 | # Tests libfs_avb private APIs. 7 | # The tests need more time to finish, so increase the timeout to 5 mins. 8 | # The default timeout is only 60 seconds. 9 | atest --host libfs_avb_internal_test -- --test-arg \ 10 | com.android.tradefed.testtype.HostGTest:native-test-timeout:5m 11 | 12 | # Run device tests 13 | atest libfs_avb_device_test # Test public libfs_avb APIs on a device. 14 | -------------------------------------------------------------------------------- /debuggerd/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "debuggerd_test" 5 | }, 6 | { 7 | "name": "debuggerd_test", 8 | "keywords": ["primary-device"] 9 | }, 10 | { 11 | "name": "libtombstoned_client_rust_test" 12 | }, 13 | { 14 | "name": "MicrodroidHostTestCases" 15 | } 16 | ], 17 | "hwasan-presubmit": [ 18 | { 19 | "name": "debuggerd_test" 20 | } 21 | ], 22 | "postsubmit": [ 23 | { 24 | "name": "CtsCrashDetailHostTestCases" 25 | } 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /trusty/keymint/android.hardware.security.keymint-service.trusty_tee.rc: -------------------------------------------------------------------------------- 1 | # service started when selecting `com.android.hardware.keymint.trusty_tee` vendor apex 2 | service vendor.keymint-service.trusty_tee \ 3 | /vendor/bin/hw/android.hardware.security.keymint-service.trusty_tee \ 4 | --dev ${ro.hardware.trusty_ipc_dev.keymint:-/dev/trusty-ipc-dev0} 5 | disabled 6 | class early_hal 7 | user nobody 8 | group drmrpc 9 | # The keymint service is not allowed to restart. 10 | # If it crashes, a device restart is required. 11 | oneshot 12 | -------------------------------------------------------------------------------- /libprocessgroup/cgrouprc/libcgrouprc.map.txt: -------------------------------------------------------------------------------- 1 | LIBCGROUPRC { # introduced=29 2 | global: 3 | ACgroupFile_getVersion; # llndk systemapi 4 | ACgroupFile_getControllerCount; # llndk systemapi 5 | ACgroupFile_getController; # llndk systemapi 6 | ACgroupController_getVersion; # llndk systemapi 7 | ACgroupController_getName; # llndk systemapi 8 | ACgroupController_getPath; # llndk systemapi 9 | local: 10 | *; 11 | }; 12 | 13 | LIBCGROUPRC_30 { # introduced=30 14 | global: 15 | ACgroupController_getFlags; # llndk systemapi 16 | local: 17 | *; 18 | }; 19 | -------------------------------------------------------------------------------- /trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty_tee.cpp.rc: -------------------------------------------------------------------------------- 1 | # service started when selecting `com.android.hardware.keymint.trusty_tee.cpp` vendor apex 2 | service vendor.keymint-service.trusty_tee.cpp \ 3 | /vendor/bin/hw/android.hardware.security.keymint-service.trusty_tee.cpp \ 4 | --dev ${ro.hardware.trusty_ipc_dev.keymint:-/dev/trusty-ipc-dev0} 5 | disabled 6 | class early_hal 7 | user nobody 8 | group drmrpc 9 | # The keymint service is not allowed to restart. 10 | # If it crashes, a device restart is required. 11 | oneshot 12 | -------------------------------------------------------------------------------- /trusty/keymaster/TEST_MAPPING: -------------------------------------------------------------------------------- 1 | { 2 | "presubmit": [ 3 | { 4 | "name": "VtsAidlKeyMintTargetTest" 5 | }, 6 | { 7 | "name": "VtsHalRemotelyProvisionedComponentTargetTest" 8 | }, 9 | { 10 | "name": "RkpdAppUnitTests" 11 | }, 12 | { 13 | "name": "RkpdAppGoogleUnitTests", 14 | "keywords": ["internal"] 15 | }, 16 | { 17 | "name": "RkpdAppIntegrationTests" 18 | }, 19 | { 20 | "name": "RkpdAppGoogleIntegrationTests", 21 | "keywords": ["internal"] 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /reboot/Android.bp: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Android Open Source Project 2 | 3 | package { 4 | default_applicable_licenses: ["Android-Apache-2.0"], 5 | } 6 | 7 | cc_defaults { 8 | name: "reboot_defaults", 9 | srcs: ["reboot.c"], 10 | shared_libs: ["libcutils"], 11 | cflags: ["-Werror"], 12 | } 13 | 14 | cc_binary { 15 | name: "reboot", 16 | defaults: [ 17 | "reboot_defaults", 18 | ], 19 | } 20 | 21 | cc_binary { 22 | name: "reboot.recovery", 23 | defaults: [ 24 | "reboot_defaults", 25 | ], 26 | recovery: true, 27 | stem: "reboot", 28 | } 29 | -------------------------------------------------------------------------------- /rootdir/etc/public.libraries.wear.txt: -------------------------------------------------------------------------------- 1 | # See https://android.googlesource.com/platform/ndk/+/main/docs/PlatformApis.md 2 | libandroid.so 3 | libaaudio.so 4 | libamidi.so 5 | libbinder_ndk.so 6 | libc.so 7 | libcamera2ndk.so 8 | libdl.so 9 | libEGL.so 10 | libGLESv1_CM.so 11 | libGLESv2.so 12 | libGLESv3.so 13 | libicu.so 14 | libicui18n.so 15 | libicuuc.so 16 | libjnigraphics.so 17 | liblog.so 18 | libmediandk.so 19 | libm.so 20 | libnativehelper.so 21 | libnativewindow.so 22 | libneuralnetworks.so 23 | libOpenMAXAL.so 24 | libOpenSLES.so 25 | libRS.so 26 | libstdc++.so 27 | libsync.so 28 | libvulkan.so 29 | libz.so 30 | -------------------------------------------------------------------------------- /libsuspend/Android.bp: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Android Open Source Project 2 | 3 | package { 4 | default_applicable_licenses: ["Android-Apache-2.0"], 5 | } 6 | 7 | cc_library { 8 | name: "libsuspend", 9 | vendor_available: true, 10 | srcs: [ 11 | "autosuspend.c", 12 | "autosuspend_wakeup_count.cpp", 13 | ], 14 | export_include_dirs: ["include"], 15 | local_include_dirs: ["include"], 16 | shared_libs: [ 17 | "libbase", 18 | "liblog", 19 | "libcutils", 20 | ], 21 | cflags: [ 22 | "-Werror", 23 | // "-DLOG_NDEBUG=0", 24 | ], 25 | } 26 | -------------------------------------------------------------------------------- /llkd/llkd-debuggable.rc: -------------------------------------------------------------------------------- 1 | on property:ro.debuggable=1 2 | setprop llk.enable ${ro.llk.enable:-0} 3 | setprop khungtask.enable ${ro.khungtask.enable:-1} 4 | 5 | on property:ro.llk.enable=eng 6 | setprop llk.enable ${ro.debuggable:-0} 7 | 8 | on property:ro.khungtask.enable=eng 9 | setprop khungtask.enable ${ro.debuggable:-0} 10 | 11 | service llkd-1 /system/bin/llkd 12 | class late_start 13 | disabled 14 | user llkd 15 | group llkd readproc 16 | capabilities KILL IPC_LOCK SYS_PTRACE DAC_OVERRIDE SYS_ADMIN 17 | file /dev/kmsg w 18 | file /proc/sysrq-trigger w 19 | task_profiles ServiceCapacityLow 20 | -------------------------------------------------------------------------------- /fs_mgr/libsnapshot/snapuserd/snapuserd.rc: -------------------------------------------------------------------------------- 1 | service snapuserd /system/bin/snapuserd 2 | socket snapuserd stream 0660 system system 3 | oneshot 4 | disabled 5 | user root 6 | group root system 7 | task_profiles OtaProfiles 8 | seclabel u:r:snapuserd:s0 9 | 10 | service snapuserd_proxy /system/bin/snapuserd -socket-handoff 11 | socket snapuserd stream 0660 system system 12 | socket snapuserd_proxy seqpacket 0660 system root 13 | oneshot 14 | disabled 15 | user root 16 | group root system 17 | seclabel u:r:snapuserd:s0 18 | 19 | on property:init.svc.snapuserd=stopped 20 | setprop snapuserd.ready false 21 | -------------------------------------------------------------------------------- /rootdir/etc/public.libraries.iot.txt: -------------------------------------------------------------------------------- 1 | # See https://android.googlesource.com/platform/ndk/+/main/docs/PlatformApis.md 2 | libandroid.so 3 | libandroidthings.so 4 | libaaudio.so 5 | libamidi.so 6 | libbinder_ndk.so 7 | libc.so 8 | libcamera2ndk.so 9 | libdl.so 10 | libEGL.so 11 | libGLESv1_CM.so 12 | libGLESv2.so 13 | libGLESv3.so 14 | libicui18n.so 15 | libicuuc.so 16 | libjnigraphics.so 17 | liblog.so 18 | libmediandk.so 19 | libm.so 20 | libnativehelper.so 21 | libnativewindow.so 22 | libneuralnetworks.so 23 | libOpenMAXAL.so 24 | libOpenSLES.so 25 | libRS.so 26 | libstdc++.so 27 | libsync.so 28 | libvulkan.so 29 | libwebviewchromium_plat_support.so 30 | libz.so 31 | -------------------------------------------------------------------------------- /libsystem/include/system/graphics-sw.h: -------------------------------------------------------------------------------- 1 | #ifndef SYSTEM_CORE_GRAPHICS_SW_H_ 2 | #define SYSTEM_CORE_GRAPHICS_SW_H_ 3 | 4 | /* Software formats not in the HAL definitions. */ 5 | typedef enum { 6 | HAL_PIXEL_FORMAT_YCBCR_422_888 = 39, // 0x27 7 | HAL_PIXEL_FORMAT_YCBCR_444_888 = 40, // 0x28 8 | HAL_PIXEL_FORMAT_FLEX_RGB_888 = 41, // 0x29 9 | HAL_PIXEL_FORMAT_FLEX_RGBA_8888 = 42, // 0x2A 10 | } android_pixel_format_sw_t; 11 | 12 | /* for compatibility */ 13 | #define HAL_PIXEL_FORMAT_YCbCr_422_888 HAL_PIXEL_FORMAT_YCBCR_422_888 14 | #define HAL_PIXEL_FORMAT_YCbCr_444_888 HAL_PIXEL_FORMAT_YCBCR_444_888 15 | 16 | #endif // SYSTEM_CORE_GRAPHICS_SW_H_ 17 | -------------------------------------------------------------------------------- /rootdir/init.environ.rc.in: -------------------------------------------------------------------------------- 1 | # set up the global environment 2 | on early-init 3 | export ANDROID_BOOTLOGO 1 4 | export ANDROID_ROOT /system 5 | export ANDROID_ASSETS /system/app 6 | export ANDROID_DATA /data 7 | export ANDROID_STORAGE /storage 8 | export ANDROID_ART_ROOT /apex/com.android.art 9 | export ANDROID_I18N_ROOT /apex/com.android.i18n 10 | export ANDROID_TZDATA_ROOT /apex/com.android.tzdata 11 | export EXTERNAL_STORAGE /sdcard 12 | export ASEC_MOUNTPOINT /mnt/asec 13 | # Additional environment variables will be appended here during build (see Android.bp). 14 | # DO NOT ADD additional sections like 'on ' here. 15 | -------------------------------------------------------------------------------- /diagnose_usb/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_library_static { 6 | name: "libdiagnose_usb", 7 | cflags: ["-Wall", "-Wextra", "-Werror"], 8 | host_supported: true, 9 | recovery_available: true, 10 | min_sdk_version: "apex_inherit", 11 | apex_available: [ 12 | "com.android.adbd", 13 | // TODO(b/151398197) remove the below 14 | "//apex_available:platform", 15 | ], 16 | target: { 17 | windows: { 18 | enabled: true, 19 | }, 20 | }, 21 | srcs: ["diagnose_usb.cpp"], 22 | export_include_dirs: ["include"], 23 | static_libs: ["libbase"], 24 | } 25 | -------------------------------------------------------------------------------- /toolbox/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2017 The Android Open Source Project 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | 15 | ------------------------------------------------------------------- 16 | 17 | -------------------------------------------------------------------------------- /rootdir/etc/public.libraries.android.txt: -------------------------------------------------------------------------------- 1 | # See https://android.googlesource.com/platform/ndk/+/main/docs/PlatformApis.md 2 | libandroid.so 3 | libaaudio.so 4 | libamidi.so 5 | libbinder_ndk.so 6 | libc.so 7 | libcamera2ndk.so 8 | libclang_rt.hwasan-aarch64-android.so 64 nopreload 9 | libdl.so 10 | libEGL.so 11 | libGLESv1_CM.so 12 | libGLESv2.so 13 | libGLESv3.so 14 | libicu.so 15 | libicui18n.so 16 | libicuuc.so 17 | libjnigraphics.so 18 | liblog.so 19 | libmediandk.so 20 | libm.so 21 | libnativehelper.so 22 | libnativewindow.so 23 | libneuralnetworks.so nopreload 24 | libOpenMAXAL.so 25 | libOpenSLES.so 26 | libRS.so 27 | libstdc++.so 28 | libsync.so 29 | libvulkan.so 30 | libwebviewchromium_plat_support.so 31 | libz.so 32 | -------------------------------------------------------------------------------- /watchdogd/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_defaults { 6 | name: "watchdogd_defaults", 7 | srcs: ["watchdogd.cpp"], 8 | cflags: [ 9 | "-Wall", 10 | "-Wextra", 11 | "-Werror", 12 | ], 13 | shared_libs: ["libbase"], 14 | sanitize: { 15 | misc_undefined: ["signed-integer-overflow"], 16 | }, 17 | } 18 | 19 | cc_binary { 20 | name: "watchdogd", 21 | defaults: [ 22 | "watchdogd_defaults", 23 | ], 24 | } 25 | 26 | cc_binary { 27 | name: "watchdogd.recovery", 28 | defaults: [ 29 | "watchdogd_defaults", 30 | ], 31 | recovery: true, 32 | stem: "watchdogd", 33 | } 34 | -------------------------------------------------------------------------------- /libvndksupport/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_library { 6 | name: "libvndksupport", 7 | native_bridge_supported: true, 8 | llndk: { 9 | symbol_file: "libvndksupport.map.txt", 10 | }, 11 | srcs: ["linker.cpp"], 12 | cflags: [ 13 | "-Wall", 14 | "-Werror", 15 | ], 16 | local_include_dirs: ["include/vndksupport"], 17 | export_include_dirs: ["include"], 18 | shared_libs: [ 19 | "libdl_android", 20 | "liblog", 21 | ], 22 | version_script: "libvndksupport.map.txt", 23 | stubs: { 24 | symbol_file: "libvndksupport.map.txt", 25 | versions: ["29"], 26 | }, 27 | } 28 | -------------------------------------------------------------------------------- /init/grab-bootchart.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # This script is used to retrieve a bootchart log generated by init. 4 | # All options are passed to adb, for better or for worse. 5 | # See the readme in this directory for more on bootcharting. 6 | 7 | TMPDIR=/tmp/android-bootchart 8 | rm -rf $TMPDIR 9 | mkdir -p $TMPDIR 10 | 11 | LOGROOT=/data/bootchart 12 | TARBALL=bootchart.tgz 13 | 14 | FILES="header proc_stat.log proc_ps.log proc_diskstats.log" 15 | 16 | for f in $FILES; do 17 | adb "${@}" pull $LOGROOT/$f $TMPDIR/$f 2>&1 > /dev/null 18 | done 19 | (cd $TMPDIR && tar -czf $TARBALL $FILES) 20 | pybootchartgui ${TMPDIR}/${TARBALL} 21 | xdg-open ${TARBALL%.tgz}.png 22 | echo "Clean up ${TMPDIR}/ and ./${TARBALL%.tgz}.png when done" 23 | -------------------------------------------------------------------------------- /rootdir/init-debug.rc: -------------------------------------------------------------------------------- 1 | on property:persist.mmc.max_read_speed=* 2 | write /sys/block/mmcblk0/max_read_speed ${persist.mmc.max_read_speed} 3 | 4 | on property:persist.mmc.max_write_speed=* 5 | write /sys/block/mmcblk0/max_write_speed ${persist.mmc.max_write_speed} 6 | 7 | on property:persist.mmc.cache_size=* 8 | write /sys/block/mmcblk0/cache_size ${persist.mmc.cache_size} 9 | 10 | on early-init && property:ro.product.debugfs_restrictions.enabled=true 11 | mount debugfs debugfs /sys/kernel/debug 12 | chmod 0755 /sys/kernel/debug 13 | 14 | on property:sys.boot_completed=1 && property:ro.product.debugfs_restrictions.enabled=true && \ 15 | property:persist.dbg.keep_debugfs_mounted="" 16 | umount /sys/kernel/debug 17 | -------------------------------------------------------------------------------- /debuggerd/seccomp_policy/crash_dump.x86_64.policy: -------------------------------------------------------------------------------- 1 | read: 1 2 | write: 1 3 | exit: 1 4 | rt_sigreturn: 1 5 | exit_group: 1 6 | clock_gettime: 1 7 | gettimeofday: 1 8 | futex: 1 9 | getrandom: 1 10 | getpid: 1 11 | gettid: 1 12 | ppoll: 1 13 | pipe2: 1 14 | openat: 1 15 | dup: 1 16 | close: 1 17 | lseek: 1 18 | getdents64: 1 19 | faccessat: 1 20 | recvmsg: 1 21 | recvfrom: 1 22 | setsockopt: 1 23 | sysinfo: 1 24 | process_vm_readv: 1 25 | tgkill: 1 26 | rt_sigprocmask: 1 27 | rt_sigaction: 1 28 | rt_tgsigqueueinfo: 1 29 | prctl: arg0 == PR_GET_NO_NEW_PRIVS || arg0 == 0x53564d41 30 | madvise: 1 31 | mprotect: arg2 in 0x1|0x2 32 | munmap: 1 33 | getuid: 1 34 | fstat: 1 35 | mmap: arg2 in 0x1|0x2 36 | geteuid: 1 37 | getgid: 1 38 | getegid: 1 39 | getgroups: 1 40 | -------------------------------------------------------------------------------- /libcutils/rust/aid_bindings.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2024 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | #include 17 | -------------------------------------------------------------------------------- /debuggerd/seccomp_policy/crash_dump.riscv64.policy: -------------------------------------------------------------------------------- 1 | read: 1 2 | write: 1 3 | exit: 1 4 | rt_sigreturn: 1 5 | exit_group: 1 6 | clock_gettime: 1 7 | gettimeofday: 1 8 | futex: 1 9 | getrandom: 1 10 | getpid: 1 11 | gettid: 1 12 | ppoll: 1 13 | pipe2: 1 14 | openat: 1 15 | dup: 1 16 | close: 1 17 | lseek: 1 18 | getdents64: 1 19 | faccessat: 1 20 | recvmsg: 1 21 | recvfrom: 1 22 | setsockopt: 1 23 | sysinfo: 1 24 | process_vm_readv: 1 25 | tgkill: 1 26 | rt_sigprocmask: 1 27 | rt_sigaction: 1 28 | rt_tgsigqueueinfo: 1 29 | prctl: arg0 == PR_GET_NO_NEW_PRIVS || arg0 == 0x53564d41 30 | madvise: 1 31 | mprotect: arg2 in 0x1|0x2 32 | munmap: 1 33 | getuid: 1 34 | fstat: 1 35 | mmap: arg2 in 0x1|0x2 36 | geteuid: 1 37 | getgid: 1 38 | getegid: 1 39 | getgroups: 1 40 | -------------------------------------------------------------------------------- /libcutils/ashmem-internal.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2025 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | bool has_memfd_support(); 20 | -------------------------------------------------------------------------------- /libsystem/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_library_headers { 6 | name: "libsystem_headers", 7 | vendor_available: true, 8 | product_available: true, 9 | recovery_available: true, 10 | vendor_ramdisk_available: true, 11 | host_supported: true, 12 | native_bridge_supported: true, 13 | apex_available: [ 14 | "//apex_available:platform", 15 | "//apex_available:anyapex", 16 | ], 17 | min_sdk_version: "apex_inherit", 18 | export_include_dirs: ["include"], 19 | 20 | target: { 21 | linux_bionic: { 22 | enabled: true, 23 | }, 24 | windows: { 25 | enabled: true, 26 | }, 27 | }, 28 | } 29 | -------------------------------------------------------------------------------- /healthd/api/charger_sysprop-latest.txt: -------------------------------------------------------------------------------- 1 | props { 2 | module: "android.sysprop.ChargerProperties" 3 | prop { 4 | api_name: "disable_init_blank" 5 | scope: Internal 6 | prop_name: "ro.charger.disable_init_blank" 7 | } 8 | prop { 9 | api_name: "draw_split_offset" 10 | type: Long 11 | scope: Internal 12 | prop_name: "ro.charger.draw_split_offset" 13 | } 14 | prop { 15 | api_name: "draw_split_screen" 16 | scope: Internal 17 | prop_name: "ro.charger.draw_split_screen" 18 | } 19 | prop { 20 | api_name: "enable_suspend" 21 | scope: Internal 22 | prop_name: "ro.charger.enable_suspend" 23 | } 24 | prop { 25 | api_name: "no_ui" 26 | scope: Internal 27 | prop_name: "ro.charger.no_ui" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /mini_keyctl/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_library_static { 6 | name: "libmini_keyctl_static", 7 | srcs: [ 8 | "mini_keyctl_utils.cpp" 9 | ], 10 | shared_libs: [ 11 | "libbase", 12 | "libkeyutils", 13 | ], 14 | cflags: ["-Werror", "-Wall", "-Wextra"], 15 | export_include_dirs: ["."], 16 | recovery_available: true, 17 | } 18 | 19 | cc_binary { 20 | name: "mini-keyctl", 21 | srcs: [ 22 | "mini_keyctl.cpp", 23 | ], 24 | static_libs: [ 25 | "libmini_keyctl_static", 26 | ], 27 | shared_libs: [ 28 | "libbase", 29 | "libkeyutils", 30 | ], 31 | cflags: ["-Werror", "-Wall", "-Wextra"], 32 | } 33 | -------------------------------------------------------------------------------- /trusty/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (C) 2021 The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | 16 | package { 17 | default_applicable_licenses: ["Android-Apache-2.0"], 18 | } 19 | -------------------------------------------------------------------------------- /libprocessgroup/setup/include/processgroup/setup.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2019 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | bool CgroupSetup(); 20 | -------------------------------------------------------------------------------- /trusty/storage/proxy/log.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #define LOG_TAG "storageproxyd" 18 | 19 | #include 20 | 21 | -------------------------------------------------------------------------------- /debuggerd/seccomp_policy/crash_dump.arm.policy: -------------------------------------------------------------------------------- 1 | read: 1 2 | write: 1 3 | exit: 1 4 | rt_sigreturn: 1 5 | sigreturn: 1 6 | exit_group: 1 7 | clock_gettime: 1 8 | gettimeofday: 1 9 | futex: 1 10 | getrandom: 1 11 | getpid: 1 12 | gettid: 1 13 | ppoll: 1 14 | pipe2: 1 15 | openat: 1 16 | dup: 1 17 | close: 1 18 | lseek: 1 19 | getdents64: 1 20 | faccessat: 1 21 | recvmsg: 1 22 | recvfrom: 1 23 | setsockopt: 1 24 | sysinfo: 1 25 | process_vm_readv: 1 26 | tgkill: 1 27 | rt_sigprocmask: 1 28 | rt_sigaction: 1 29 | rt_tgsigqueueinfo: 1 30 | prctl: arg0 == PR_GET_NO_NEW_PRIVS || arg0 == 0x53564d41 31 | madvise: 1 32 | mprotect: arg2 in 0x1|0x2 33 | munmap: 1 34 | getuid32: 1 35 | fstat64: 1 36 | mmap2: arg2 in 0x1|0x2 37 | geteuid32: 1 38 | getgid32: 1 39 | getegid32: 1 40 | getgroups32: 1 41 | -------------------------------------------------------------------------------- /debuggerd/seccomp_policy/crash_dump.x86.policy: -------------------------------------------------------------------------------- 1 | read: 1 2 | write: 1 3 | exit: 1 4 | rt_sigreturn: 1 5 | sigreturn: 1 6 | exit_group: 1 7 | clock_gettime: 1 8 | gettimeofday: 1 9 | futex: 1 10 | getrandom: 1 11 | getpid: 1 12 | gettid: 1 13 | ppoll: 1 14 | pipe2: 1 15 | openat: 1 16 | dup: 1 17 | close: 1 18 | lseek: 1 19 | getdents64: 1 20 | faccessat: 1 21 | recvmsg: 1 22 | recvfrom: 1 23 | setsockopt: 1 24 | sysinfo: 1 25 | process_vm_readv: 1 26 | tgkill: 1 27 | rt_sigprocmask: 1 28 | rt_sigaction: 1 29 | rt_tgsigqueueinfo: 1 30 | prctl: arg0 == PR_GET_NO_NEW_PRIVS || arg0 == 0x53564d41 31 | madvise: 1 32 | mprotect: arg2 in 0x1|0x2 33 | munmap: 1 34 | getuid32: 1 35 | fstat64: 1 36 | mmap2: arg2 in 0x1|0x2 37 | geteuid32: 1 38 | getgid32: 1 39 | getegid32: 1 40 | getgroups32: 1 41 | -------------------------------------------------------------------------------- /healthd/healthd_mode_charger_nops.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2019 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | int healthd_charger_nops(int argc, char** argv); 20 | -------------------------------------------------------------------------------- /libpackagelistparser/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_library { 6 | name: "libpackagelistparser", 7 | ramdisk_available: true, 8 | vendor_ramdisk_available: true, 9 | recovery_available: true, 10 | srcs: ["packagelistparser.cpp"], 11 | shared_libs: ["liblog"], 12 | local_include_dirs: ["include"], 13 | export_include_dirs: ["include"], 14 | 15 | sanitize: { 16 | misc_undefined: ["integer"], 17 | }, 18 | } 19 | 20 | cc_test { 21 | name: "libpackagelistparser_test", 22 | srcs: ["packagelistparser_test.cpp"], 23 | shared_libs: [ 24 | "libbase", 25 | "libpackagelistparser", 26 | ], 27 | test_suites: ["device-tests"], 28 | require_root: true, 29 | } 30 | -------------------------------------------------------------------------------- /libstats/pull_lazy/libstatspull_lazy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2021 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | extern "C" void PreventLibstatspullLazyLoadingForTests(); -------------------------------------------------------------------------------- /init/test_kill_services/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | // See: http://go/android-license-faq 3 | // A large-scale-change added 'default_applicable_licenses' to import 4 | // all of the 'license_kinds' from "system_core_init_license" 5 | // to get the below license kinds: 6 | // SPDX-license-identifier-Apache-2.0 7 | default_applicable_licenses: ["system_core_init_license"], 8 | } 9 | 10 | cc_test { 11 | name: "init_kill_services_test", 12 | srcs: ["init_kill_services_test.cpp"], 13 | shared_libs: [ 14 | "libbase", 15 | "libhidlbase", 16 | ], 17 | test_suites: ["general-tests"], 18 | 19 | // TODO(b/153565474): switch back to auto-generation 20 | // and add back: 21 | // require_root: true, 22 | auto_gen_config: false, 23 | } 24 | -------------------------------------------------------------------------------- /libstats/socket_lazy/libstatssocket_lazy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2021 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | extern "C" void PreventLibstatssocketLazyLoadingForTests(); -------------------------------------------------------------------------------- /debuggerd/handler/debuggerd_fallback_nop.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2017 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | extern "C" void debuggerd_fallback_handler(struct siginfo_t*, struct ucontext_t*, void*) { 18 | } 19 | -------------------------------------------------------------------------------- /debuggerd/seccomp_policy/crash_dump.arm64.policy: -------------------------------------------------------------------------------- 1 | read: 1 2 | write: 1 3 | exit: 1 4 | rt_sigreturn: 1 5 | exit_group: 1 6 | clock_gettime: 1 7 | gettimeofday: 1 8 | futex: 1 9 | getrandom: 1 10 | getpid: 1 11 | gettid: 1 12 | ppoll: 1 13 | pipe2: 1 14 | openat: 1 15 | dup: 1 16 | close: 1 17 | lseek: 1 18 | getdents64: 1 19 | faccessat: 1 20 | recvmsg: 1 21 | recvfrom: 1 22 | setsockopt: 1 23 | sysinfo: 1 24 | process_vm_readv: 1 25 | tgkill: 1 26 | rt_sigprocmask: 1 27 | rt_sigaction: 1 28 | rt_tgsigqueueinfo: 1 29 | prctl: arg0 == PR_GET_NO_NEW_PRIVS || arg0 == 0x53564d41 || arg0 == PR_PAC_RESET_KEYS || arg0 == 56 || arg0 == 61 30 | madvise: 1 31 | mprotect: arg2 in 0x1|0x2|0x20 32 | munmap: 1 33 | getuid: 1 34 | fstat: 1 35 | mmap: arg2 in 0x1|0x2|0x20 36 | geteuid: 1 37 | getgid: 1 38 | getegid: 1 39 | getgroups: 1 40 | -------------------------------------------------------------------------------- /fs_mgr/include/fs_mgr_vendor_overlay.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2018 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | #include 20 | 21 | bool fs_mgr_vendor_overlay_mount_all(); 22 | -------------------------------------------------------------------------------- /libprocessgroup/internal.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2024 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | #include 20 | 21 | static const std::string CGROUP_V2_ROOT_DEFAULT = "/sys/fs/cgroup"; -------------------------------------------------------------------------------- /storaged/binder/android/os/storaged/UidInfo.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2017 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package android.os.storaged; 18 | 19 | parcelable UidInfo cpp_header "include/uid_info.h"; 20 | -------------------------------------------------------------------------------- /trusty/keymint/android.hardware.security.keymint-service.rust.trusty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | android.hardware.security.keymint 4 | 4 5 | IKeyMintDevice/default 6 | 7 | 8 | android.hardware.security.secureclock 9 | ISecureClock/default 10 | 11 | 12 | android.hardware.security.sharedsecret 13 | ISharedSecret/default 14 | 15 | 16 | android.hardware.security.keymint 17 | 3 18 | IRemotelyProvisionedComponent/default 19 | 20 | 21 | -------------------------------------------------------------------------------- /trusty/trusty-test.mk: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2020 The Android Open-Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | PRODUCT_PACKAGES += \ 16 | keymaster_soft_attestation_keys.xml \ 17 | spiproxyd \ 18 | trusty_driver_test \ 19 | trusty_keymaster_set_attestation_key \ 20 | -------------------------------------------------------------------------------- /trusty/keymaster/keymint/android.hardware.security.keymint-service.trusty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | android.hardware.security.keymint 4 | 4 5 | IKeyMintDevice/default 6 | 7 | 8 | android.hardware.security.secureclock 9 | ISecureClock/default 10 | 11 | 12 | android.hardware.security.sharedsecret 13 | ISharedSecret/default 14 | 15 | 16 | android.hardware.security.keymint 17 | 3 18 | IRemotelyProvisionedComponent/default 19 | 20 | 21 | -------------------------------------------------------------------------------- /fastboot/device/usb_iouring.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2022 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #include "usb.h" 18 | 19 | bool init_io_uring_ffs(usb_handle* h, size_t queue_depth); 20 | 21 | void exit_io_uring_ffs(usb_handle* h); 22 | -------------------------------------------------------------------------------- /init/first_stage_main.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2018 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #include "first_stage_init.h" 18 | 19 | int main(int argc, char** argv) { 20 | return android::init::FirstStageMain(argc, argv); 21 | } 22 | -------------------------------------------------------------------------------- /libprocessgroup/cgrouprc/cgrouprc_internal.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2019 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | #include 20 | 21 | struct ACgroupController : CgroupController {}; 22 | -------------------------------------------------------------------------------- /libsparse/defs.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #ifndef _LIBSPARSE_DEFS_H_ 18 | 19 | #ifndef __unused 20 | #define __unused __attribute__((__unused__)) 21 | #endif 22 | 23 | #endif /* _LIBSPARSE_DEFS_H_ */ 24 | -------------------------------------------------------------------------------- /libsparse/sparse_fuzzer.cpp: -------------------------------------------------------------------------------- 1 | #include "include/sparse/sparse.h" 2 | 3 | static volatile int count; 4 | 5 | int WriteCallback(void* priv __attribute__((__unused__)), const void* data, size_t len) { 6 | if (!data) { 7 | return 0; 8 | } 9 | if (len == 0) { 10 | return 0; 11 | } 12 | 13 | const char* p = (const char*)data; 14 | // Just to make sure the data is accessible 15 | // We only check the head and tail to save time 16 | count += *p; 17 | count += *(p+len-1); 18 | return 0; 19 | } 20 | 21 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { 22 | struct sparse_file* file = sparse_file_import_buf((char*)data, size, true, false); 23 | if (!file) { 24 | return 0; 25 | } 26 | int32_t result = sparse_file_callback(file, false, false, WriteCallback, nullptr); 27 | sparse_file_destroy(file); 28 | return result; 29 | } 30 | -------------------------------------------------------------------------------- /healthd/testdata/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (C) 2020 The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | package { 18 | default_applicable_licenses: ["Android-Apache-2.0"], 19 | } 20 | 21 | filegroup { 22 | name: "libhealthd_charger_test_data", 23 | srcs: ["**/*.*"], 24 | } 25 | -------------------------------------------------------------------------------- /trusty/utils/spiproxyd/proxy.rc: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2020 The Android Open-Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | service spiproxyd /vendor/bin/spiproxyd -t /dev/trusty-ipc-dev0 \ 16 | -s /dev/vport3p2 -p com.android.trusty.spi.proxy 17 | class main 18 | user system 19 | group system 20 | oneshot 21 | -------------------------------------------------------------------------------- /property_service/libpropertyinfoparser/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["Android-Apache-2.0"], 3 | } 4 | 5 | cc_library_static { 6 | name: "libpropertyinfoparser", 7 | host_supported: true, 8 | vendor_available: true, 9 | ramdisk_available: true, 10 | vendor_ramdisk_available: true, 11 | recovery_available: true, 12 | native_bridge_supported: true, 13 | srcs: ["property_info_parser.cpp"], 14 | 15 | cppflags: [ 16 | "-Wall", 17 | "-Wextra", 18 | "-Werror", 19 | ], 20 | stl: "none", 21 | target: { 22 | bionic: { 23 | system_shared_libs: [], 24 | header_libs: ["libc_headers"], 25 | }, 26 | }, 27 | export_include_dirs: ["include"], 28 | apex_available: [ 29 | "//apex_available:platform", 30 | "com.android.runtime", 31 | ], 32 | } 33 | -------------------------------------------------------------------------------- /fs_mgr/libsnapshot/snapuserd/snapuserd_logging.h: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2023 The Android Open Source Project 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | #pragma once 16 | 17 | #include 18 | 19 | #define SNAP_LOG(level) LOG(level) << misc_name_ << ": " 20 | #define SNAP_PLOG(level) PLOG(level) << misc_name_ << ": " 21 | -------------------------------------------------------------------------------- /libutils/binder/StrongPointer.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2017 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #define LOG_TAG "sp" 18 | 19 | #include 20 | 21 | namespace android { 22 | 23 | void sp_report_race() { LOG_ALWAYS_FATAL("sp<> assignment detected data race"); } 24 | } 25 | -------------------------------------------------------------------------------- /libsparse/sparse_crc32.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2010 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #ifndef _LIBSPARSE_SPARSE_CRC32_H_ 18 | #define _LIBSPARSE_SPARSE_CRC32_H_ 19 | 20 | #include 21 | 22 | uint32_t sparse_crc32(uint32_t crc, const void* buf, size_t size); 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /libutils/include/utils/Debug.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2005 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | // Note: new code should use static_assert directly. 20 | 21 | #define COMPILE_TIME_ASSERT static_assert 22 | #define COMPILE_TIME_ASSERT_FUNCTION_SCOPE static_assert 23 | -------------------------------------------------------------------------------- /init/switch_root.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2018 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | #include 20 | 21 | namespace android { 22 | namespace init { 23 | 24 | void SwitchRoot(const std::string& new_root); 25 | 26 | } // namespace init 27 | } // namespace android 28 | -------------------------------------------------------------------------------- /libkeyutils/Android.bp: -------------------------------------------------------------------------------- 1 | package { 2 | default_applicable_licenses: ["system_core_libkeyutils_license"], 3 | } 4 | 5 | license { 6 | name: "system_core_libkeyutils_license", 7 | visibility: [":__subpackages__"], 8 | license_kinds: ["SPDX-license-identifier-BSD"], 9 | license_text: ["NOTICE"], 10 | } 11 | 12 | cc_library { 13 | name: "libkeyutils", 14 | cflags: ["-Werror"], 15 | defaults: ["linux_bionic_supported"], 16 | ramdisk_available: true, 17 | vendor_ramdisk_available: true, 18 | recovery_available: true, 19 | export_include_dirs: ["include/"], 20 | local_include_dirs: ["include/"], 21 | srcs: ["keyutils.cpp"], 22 | stl: "none", 23 | } 24 | 25 | cc_test { 26 | name: "libkeyutils-tests", 27 | cflags: ["-Werror"], 28 | shared_libs: ["libkeyutils"], 29 | srcs: ["keyutils_test.cpp"], 30 | test_suites: ["device-tests"], 31 | } 32 | -------------------------------------------------------------------------------- /storaged/binder/android/os/IStoraged.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2017 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package android.os; 18 | 19 | /** {@hide} */ 20 | interface IStoraged { 21 | void onUserStarted(int userId); 22 | void onUserStopped(int userId); 23 | int getRecentPerf(); 24 | } -------------------------------------------------------------------------------- /fs_mgr/libsnapshot/tools/Android.bp: -------------------------------------------------------------------------------- 1 | 2 | cc_binary { 3 | name: "cow_benchmark", 4 | host_supported: true, 5 | defaults: [ 6 | "fs_mgr_defaults", 7 | "libsnapshot_cow_defaults", 8 | ], 9 | 10 | srcs: ["cow_benchmark.cpp"], 11 | 12 | static_libs: [ 13 | "libsnapshot_cow", 14 | ], 15 | 16 | shared_libs: [ 17 | "libbase", 18 | "liblog", 19 | ], 20 | 21 | cflags: ["-Werror"], 22 | } 23 | 24 | 25 | cc_binary { 26 | name: "write_cow", 27 | host_supported: true, 28 | defaults: [ 29 | "fs_mgr_defaults", 30 | "libsnapshot_cow_defaults", 31 | ], 32 | 33 | srcs: ["write_cow.cpp"], 34 | 35 | static_libs: [ 36 | "libsnapshot_cow", 37 | "libgflags", 38 | ], 39 | 40 | shared_libs: [ 41 | "libbase", 42 | "liblog", 43 | ], 44 | 45 | cflags: ["-Werror"], 46 | } 47 | -------------------------------------------------------------------------------- /libutils/include/utils/Atomic.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2005 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #ifndef ANDROID_UTILS_ATOMIC_H 18 | #define ANDROID_UTILS_ATOMIC_H 19 | 20 | // DO NOT USE: Please instead use std::atomic 21 | 22 | #include 23 | 24 | #endif // ANDROID_UTILS_ATOMIC_H 25 | -------------------------------------------------------------------------------- /trusty/secure_dpu/Android.bp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2021 The Android Open Source Project 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | package { 16 | default_applicable_licenses: ["Android-Apache-2.0"], 17 | } 18 | 19 | cc_library_headers { 20 | name: "secure_dpu_headers", 21 | vendor: true, 22 | 23 | export_include_dirs: ["include"], 24 | } 25 | -------------------------------------------------------------------------------- /trusty/test/binder/aidl/com/android/trusty/binder/test/LongEnum.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2022 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.android.trusty.binder.test; 18 | 19 | @Backing(type="long") 20 | enum LongEnum { 21 | FOO = 100000000000, 22 | BAR = 200000000000, 23 | BAZ, 24 | } 25 | -------------------------------------------------------------------------------- /debuggerd/handler/fallback.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2018 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | #include 20 | 21 | static void* const kDebuggerdFallbackSivalPtrRequestDump = reinterpret_cast(~0UL); 22 | static const uintptr_t kDebuggerdFallbackSivalUintptrRequestDump = ~0UL; 23 | -------------------------------------------------------------------------------- /libmodprobe/libmodprobe_test.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2019 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | #include 20 | #include 21 | 22 | extern std::string kernel_cmdline; 23 | extern std::vector test_modules; 24 | extern std::vector modules_loaded; 25 | -------------------------------------------------------------------------------- /debuggerd/libdebuggerd/test/elf_fake.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2015 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #ifndef _DEBUGGERD_TEST_ELF_FAKE_H 18 | #define _DEBUGGERD_TEST_ELF_FAKE_H 19 | 20 | #include 21 | 22 | void elf_set_fake_build_id(const std::string&); 23 | 24 | #endif // _DEBUGGERD_TEST_ELF_FAKE_H 25 | -------------------------------------------------------------------------------- /trusty/keymint/android.hardware.security.keymint-service.trusty_system_vm.rc: -------------------------------------------------------------------------------- 1 | # service started when selecting `com.android.hardware.keymint.trusty_system_vm` vendor apex 2 | service system.keymint-service.trusty_system_vm \ 3 | /system_ext/bin/hw/android.hardware.security.keymint-service.trusty_system_vm \ 4 | --dev ${system.keymint.trusty_ipc_dev} 5 | disabled 6 | user nobody 7 | group drmrpc 8 | # The keymint service is not allowed to restart. 9 | # If it crashes, a device restart is required. 10 | oneshot 11 | 12 | # TODO(b/357821690): Start the KeyMint HALs when the KeyMint VM is ready once the Trusty VM 13 | # has a mechanism to notify the host. 14 | on post-fs && property:trusty.security_vm.keymint.enabled=1 && \ 15 | property:trusty.security_vm.vm_cid=* 16 | setprop system.keymint.trusty_ipc_dev VSOCK:${trusty.security_vm.vm_cid}:1 17 | start system.keymint-service.trusty_system_vm 18 | -------------------------------------------------------------------------------- /fs_mgr/blockdev.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2021 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #include 18 | #include 19 | 20 | android::base::Result ConfigureQueueDepth(const std::string& loop_device_path, 21 | const std::string& file_path); 22 | --------------------------------------------------------------------------------