├── README.md ├── adb_allow_root ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── common │ ├── file_contexts_image │ ├── post-fs-data.sh │ ├── service.sh │ └── system.prop ├── config.sh ├── module.prop ├── sepolicy.rule └── system │ └── bin │ └── adbd └── android_source └── system └── core └── adb ├── .clang-format ├── Android.bp ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── OVERVIEW.TXT ├── OWNERS ├── SERVICES.TXT ├── SYNC.TXT ├── adb.bash ├── adb.cpp ├── adb.h ├── adb_auth.h ├── adb_integration_test_adb.xml ├── adb_integration_test_device.xml ├── adb_io.cpp ├── adb_io.h ├── adb_io_test.cpp ├── adb_listeners.cpp ├── adb_listeners.h ├── adb_listeners_test.cpp ├── adb_mdns.h ├── adb_trace.cpp ├── adb_trace.h ├── adb_unique_fd.cpp ├── adb_unique_fd.h ├── adb_utils.cpp ├── adb_utils.h ├── adb_utils_test.cpp ├── benchmark_device.py ├── bugreport_test.cpp ├── client ├── adb_client.cpp ├── adb_client.h ├── adb_install.cpp ├── adb_install.h ├── auth.cpp ├── bugreport.cpp ├── bugreport.h ├── commandline.cpp ├── commandline.h ├── console.cpp ├── fastdeploy.cpp ├── fastdeploy.h ├── fastdeploycallbacks.cpp ├── fastdeploycallbacks.h ├── file_sync_client.cpp ├── file_sync_client.h ├── line_printer.cpp ├── line_printer.h ├── main.cpp ├── transport_mdns.cpp ├── usb_dispatch.cpp ├── usb_libusb.cpp ├── usb_linux.cpp ├── usb_osx.cpp └── usb_windows.cpp ├── daemon ├── abb.cpp ├── abb_service.cpp ├── auth.cpp ├── file_sync_service.cpp ├── file_sync_service.h ├── framebuffer_service.cpp ├── framebuffer_service.h ├── include │ └── adbd │ │ └── usb.h ├── jdwp_service.cpp ├── main.cpp ├── mdns.cpp ├── mdns.h ├── reboot_service.cpp ├── reboot_service.h ├── remount_service.cpp ├── remount_service.h ├── restart_service.cpp ├── restart_service.h ├── services.cpp ├── set_verity_enable_state_service.cpp ├── set_verity_enable_state_service.h ├── shell_service.cpp ├── shell_service.h ├── shell_service_test.cpp ├── transport_qemu.cpp ├── usb.cpp ├── usb_dummy.cpp ├── usb_ffs.cpp └── usb_legacy.cpp ├── fastdeploy ├── Android.bp ├── OWNERS ├── deployagent │ ├── deployagent.sh │ └── src │ │ └── com │ │ └── android │ │ └── fastdeploy │ │ └── DeployAgent.java ├── deploylib │ └── src │ │ └── com │ │ └── android │ │ └── fastdeploy │ │ ├── PatchFormatException.java │ │ └── PatchUtils.java ├── deploypatchgenerator │ ├── manifest.txt │ └── src │ │ └── com │ │ └── android │ │ └── fastdeploy │ │ └── DeployPatchGenerator.java └── proto │ └── ApkEntry.proto ├── fdevent.cpp ├── fdevent.h ├── fdevent_test.cpp ├── fdevent_test.h ├── file_sync_protocol.h ├── protocol.txt ├── security_log_tags.h ├── services.cpp ├── services.h ├── shell_protocol.h ├── shell_service_protocol.cpp ├── shell_service_protocol_test.cpp ├── socket.h ├── socket_spec.cpp ├── socket_spec.h ├── socket_spec_test.cpp ├── socket_test.cpp ├── sockets.cpp ├── sockets.dia ├── sysdeps.h ├── sysdeps ├── chrono.h ├── errno.cpp ├── errno.h ├── network.h ├── posix │ └── network.cpp ├── stat.h ├── stat_test.cpp ├── uio.h ├── vm_sockets.h └── win32 │ ├── errno.cpp │ ├── errno_test.cpp │ └── stat.cpp ├── sysdeps_test.cpp ├── sysdeps_unix.cpp ├── sysdeps_win32.cpp ├── sysdeps_win32_test.cpp ├── test_adb.py ├── test_device.py ├── trace.sh ├── transport.cpp ├── transport.h ├── transport_benchmark.cpp ├── transport_fd.cpp ├── transport_local.cpp ├── transport_test.cpp ├── transport_usb.cpp ├── types.h ├── types_test.cpp └── usb.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/README.md -------------------------------------------------------------------------------- /adb_allow_root/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/adb_allow_root/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /adb_allow_root/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /adb_allow_root/common/file_contexts_image: -------------------------------------------------------------------------------- 1 | /magisk(/.*)? u:object_r:system_file:s0 2 | -------------------------------------------------------------------------------- /adb_allow_root/common/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/adb_allow_root/common/post-fs-data.sh -------------------------------------------------------------------------------- /adb_allow_root/common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/adb_allow_root/common/service.sh -------------------------------------------------------------------------------- /adb_allow_root/common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/adb_allow_root/common/system.prop -------------------------------------------------------------------------------- /adb_allow_root/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/adb_allow_root/config.sh -------------------------------------------------------------------------------- /adb_allow_root/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/adb_allow_root/module.prop -------------------------------------------------------------------------------- /adb_allow_root/sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/adb_allow_root/sepolicy.rule -------------------------------------------------------------------------------- /adb_allow_root/system/bin/adbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/adb_allow_root/system/bin/adbd -------------------------------------------------------------------------------- /android_source/system/core/adb/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/.clang-format -------------------------------------------------------------------------------- /android_source/system/core/adb/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/Android.bp -------------------------------------------------------------------------------- /android_source/system/core/adb/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android_source/system/core/adb/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/NOTICE -------------------------------------------------------------------------------- /android_source/system/core/adb/OVERVIEW.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/OVERVIEW.TXT -------------------------------------------------------------------------------- /android_source/system/core/adb/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/OWNERS -------------------------------------------------------------------------------- /android_source/system/core/adb/SERVICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/SERVICES.TXT -------------------------------------------------------------------------------- /android_source/system/core/adb/SYNC.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/SYNC.TXT -------------------------------------------------------------------------------- /android_source/system/core/adb/adb.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb.bash -------------------------------------------------------------------------------- /android_source/system/core/adb/adb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb.h -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_auth.h -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_integration_test_adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_integration_test_adb.xml -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_integration_test_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_integration_test_device.xml -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_io.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_io.h -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_io_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_io_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_listeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_listeners.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_listeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_listeners.h -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_listeners_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_listeners_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_mdns.h -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_trace.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_trace.h -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_unique_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_unique_fd.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_unique_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_unique_fd.h -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_utils.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_utils.h -------------------------------------------------------------------------------- /android_source/system/core/adb/adb_utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/adb_utils_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/benchmark_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/benchmark_device.py -------------------------------------------------------------------------------- /android_source/system/core/adb/bugreport_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/bugreport_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/adb_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/adb_client.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/adb_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/adb_client.h -------------------------------------------------------------------------------- /android_source/system/core/adb/client/adb_install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/adb_install.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/adb_install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/adb_install.h -------------------------------------------------------------------------------- /android_source/system/core/adb/client/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/auth.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/bugreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/bugreport.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/bugreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/bugreport.h -------------------------------------------------------------------------------- /android_source/system/core/adb/client/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/commandline.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/commandline.h -------------------------------------------------------------------------------- /android_source/system/core/adb/client/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/console.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/fastdeploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/fastdeploy.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/fastdeploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/fastdeploy.h -------------------------------------------------------------------------------- /android_source/system/core/adb/client/fastdeploycallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/fastdeploycallbacks.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/fastdeploycallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/fastdeploycallbacks.h -------------------------------------------------------------------------------- /android_source/system/core/adb/client/file_sync_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/file_sync_client.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/file_sync_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/file_sync_client.h -------------------------------------------------------------------------------- /android_source/system/core/adb/client/line_printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/line_printer.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/line_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/line_printer.h -------------------------------------------------------------------------------- /android_source/system/core/adb/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/main.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/transport_mdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/transport_mdns.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/usb_dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/usb_dispatch.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/usb_libusb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/usb_libusb.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/usb_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/usb_linux.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/usb_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/usb_osx.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/client/usb_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/client/usb_windows.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/abb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/abb.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/abb_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/abb_service.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/auth.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/file_sync_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/file_sync_service.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/file_sync_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/file_sync_service.h -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/framebuffer_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/framebuffer_service.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/framebuffer_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/framebuffer_service.h -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/include/adbd/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/include/adbd/usb.h -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/jdwp_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/jdwp_service.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/main.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/mdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/mdns.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/mdns.h -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/reboot_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/reboot_service.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/reboot_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/reboot_service.h -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/remount_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/remount_service.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/remount_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/remount_service.h -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/restart_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/restart_service.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/restart_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/restart_service.h -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/services.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/set_verity_enable_state_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/set_verity_enable_state_service.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/set_verity_enable_state_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/set_verity_enable_state_service.h -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/shell_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/shell_service.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/shell_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/shell_service.h -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/shell_service_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/shell_service_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/transport_qemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/transport_qemu.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/usb.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/usb_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/usb_dummy.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/usb_ffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/usb_ffs.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/daemon/usb_legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/daemon/usb_legacy.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/fastdeploy/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fastdeploy/Android.bp -------------------------------------------------------------------------------- /android_source/system/core/adb/fastdeploy/OWNERS: -------------------------------------------------------------------------------- 1 | idries@google.com 2 | -------------------------------------------------------------------------------- /android_source/system/core/adb/fastdeploy/deployagent/deployagent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fastdeploy/deployagent/deployagent.sh -------------------------------------------------------------------------------- /android_source/system/core/adb/fastdeploy/deployagent/src/com/android/fastdeploy/DeployAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fastdeploy/deployagent/src/com/android/fastdeploy/DeployAgent.java -------------------------------------------------------------------------------- /android_source/system/core/adb/fastdeploy/deploylib/src/com/android/fastdeploy/PatchFormatException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fastdeploy/deploylib/src/com/android/fastdeploy/PatchFormatException.java -------------------------------------------------------------------------------- /android_source/system/core/adb/fastdeploy/deploylib/src/com/android/fastdeploy/PatchUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fastdeploy/deploylib/src/com/android/fastdeploy/PatchUtils.java -------------------------------------------------------------------------------- /android_source/system/core/adb/fastdeploy/deploypatchgenerator/manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fastdeploy/deploypatchgenerator/manifest.txt -------------------------------------------------------------------------------- /android_source/system/core/adb/fastdeploy/deploypatchgenerator/src/com/android/fastdeploy/DeployPatchGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fastdeploy/deploypatchgenerator/src/com/android/fastdeploy/DeployPatchGenerator.java -------------------------------------------------------------------------------- /android_source/system/core/adb/fastdeploy/proto/ApkEntry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fastdeploy/proto/ApkEntry.proto -------------------------------------------------------------------------------- /android_source/system/core/adb/fdevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fdevent.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/fdevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fdevent.h -------------------------------------------------------------------------------- /android_source/system/core/adb/fdevent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fdevent_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/fdevent_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/fdevent_test.h -------------------------------------------------------------------------------- /android_source/system/core/adb/file_sync_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/file_sync_protocol.h -------------------------------------------------------------------------------- /android_source/system/core/adb/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/protocol.txt -------------------------------------------------------------------------------- /android_source/system/core/adb/security_log_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/security_log_tags.h -------------------------------------------------------------------------------- /android_source/system/core/adb/services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/services.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/services.h -------------------------------------------------------------------------------- /android_source/system/core/adb/shell_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/shell_protocol.h -------------------------------------------------------------------------------- /android_source/system/core/adb/shell_service_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/shell_service_protocol.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/shell_service_protocol_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/shell_service_protocol_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/socket.h -------------------------------------------------------------------------------- /android_source/system/core/adb/socket_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/socket_spec.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/socket_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/socket_spec.h -------------------------------------------------------------------------------- /android_source/system/core/adb/socket_spec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/socket_spec_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/socket_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/socket_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sockets.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sockets.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sockets.dia -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps.h -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/chrono.h -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/errno.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/errno.h -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/network.h -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/posix/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/posix/network.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/stat.h -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/stat_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/stat_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/uio.h -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/vm_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/vm_sockets.h -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/win32/errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/win32/errno.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/win32/errno_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/win32/errno_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps/win32/stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps/win32/stat.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps_unix.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps_win32.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/sysdeps_win32_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/sysdeps_win32_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/test_adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/test_adb.py -------------------------------------------------------------------------------- /android_source/system/core/adb/test_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/test_device.py -------------------------------------------------------------------------------- /android_source/system/core/adb/trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/trace.sh -------------------------------------------------------------------------------- /android_source/system/core/adb/transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/transport.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/transport.h -------------------------------------------------------------------------------- /android_source/system/core/adb/transport_benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/transport_benchmark.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/transport_fd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/transport_fd.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/transport_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/transport_local.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/transport_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/transport_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/transport_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/transport_usb.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/types.h -------------------------------------------------------------------------------- /android_source/system/core/adb/types_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/types_test.cpp -------------------------------------------------------------------------------- /android_source/system/core/adb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sboys3/adb_allow_root/HEAD/android_source/system/core/adb/usb.h --------------------------------------------------------------------------------