├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.md ├── aclocal.m4 ├── ar-lib ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── include ├── android │ └── log.h ├── cutils ├── log │ ├── event_tag_map.h │ ├── log.h │ ├── log_read.h │ ├── logd.h │ ├── logger.h │ ├── logprint.h │ └── uio.h ├── mincrypt │ ├── dsa_sig.h │ ├── hash-internal.h │ ├── p256.h │ ├── p256_ecdsa.h │ ├── rsa.h │ ├── sha.h │ └── sha256.h ├── private │ ├── android_filesystem_capability.h │ ├── android_filesystem_config.h │ ├── android_logger.h │ └── canned_fs_config.h ├── utils │ ├── AndroidThreads.h │ ├── Atomic.h │ ├── BitSet.h │ ├── BlobCache.h │ ├── ByteOrder.h │ ├── CallStack.h │ ├── Compat.h │ ├── Condition.h │ ├── Debug.h │ ├── Endian.h │ ├── Errors.h │ ├── FileMap.h │ ├── Flattenable.h │ ├── Functor.h │ ├── JenkinsHash.h │ ├── KeyedVector.h │ ├── LinearTransform.h │ ├── List.h │ ├── Log.h │ ├── Looper.h │ ├── LruCache.h │ ├── Mutex.h │ ├── NativeHandle.h │ ├── Printer.h │ ├── ProcessCallStack.h │ ├── PropertyMap.h │ ├── RWLock.h │ ├── RefBase.h │ ├── Singleton.h │ ├── SortedVector.h │ ├── StopWatch.h │ ├── String16.h │ ├── String8.h │ ├── StrongPointer.h │ ├── SystemClock.h │ ├── Thread.h │ ├── ThreadDefs.h │ ├── Timers.h │ ├── Tokenizer.h │ ├── Trace.h │ ├── TypeHelpers.h │ ├── Unicode.h │ ├── Vector.h │ ├── VectorImpl.h │ ├── misc.h │ └── threads.h └── zipfile │ └── zipfile.h ├── install-sh ├── lib ├── Makefile.am ├── Makefile.in ├── base │ ├── .clang-format │ ├── Android.bp │ ├── CPPLINT.cfg │ ├── chrono_utils.cpp │ ├── chrono_utils_test.cpp │ ├── endian_test.cpp │ ├── errors_test.cpp │ ├── errors_unix.cpp │ ├── errors_windows.cpp │ ├── file.cpp │ ├── file_test.cpp │ ├── include │ │ └── android-base │ │ │ ├── chrono_utils.h │ │ │ ├── endian.h │ │ │ ├── errors.h │ │ │ ├── file.h │ │ │ ├── logging.h │ │ │ ├── macros.h │ │ │ ├── memory.h │ │ │ ├── parsedouble.h │ │ │ ├── parseint.h │ │ │ ├── parsenetaddress.h │ │ │ ├── properties.h │ │ │ ├── quick_exit.h │ │ │ ├── scopeguard.h │ │ │ ├── stringprintf.h │ │ │ ├── strings.h │ │ │ ├── test_utils.h │ │ │ ├── thread_annotations.h │ │ │ ├── unique_fd.h │ │ │ └── utf8.h │ ├── logging.cpp │ ├── logging_test.cpp │ ├── parsedouble_test.cpp │ ├── parseint_test.cpp │ ├── parsenetaddress.cpp │ ├── parsenetaddress_test.cpp │ ├── properties.cpp │ ├── properties_test.cpp │ ├── quick_exit.cpp │ ├── quick_exit_test.cpp │ ├── scopeguard_test.cpp │ ├── stringprintf.cpp │ ├── stringprintf_test.cpp │ ├── strings.cpp │ ├── strings_test.cpp │ ├── test_main.cpp │ ├── test_utils.cpp │ ├── utf8.cpp │ └── utf8_test.cpp ├── libcrypto_utils │ ├── Android.mk │ ├── android_pubkey.c │ ├── include │ │ └── crypto_utils │ │ │ └── android_pubkey.h │ └── tests │ │ ├── Android.mk │ │ └── android_pubkey_test.cpp ├── libcutils │ ├── Android.bp │ ├── MODULE_LICENSE_APACHE2 │ ├── NOTICE │ ├── android_get_control_env.h │ ├── android_get_control_file.cpp │ ├── android_reboot.c │ ├── arch-arm │ │ └── memset32.S │ ├── arch-arm64 │ │ └── android_memset.S │ ├── arch-mips │ │ └── android_memset.c │ ├── arch-x86 │ │ ├── android_memset16.S │ │ ├── android_memset32.S │ │ └── cache.h │ ├── arch-x86_64 │ │ ├── android_memset16.S │ │ ├── android_memset32.S │ │ └── cache.h │ ├── ashmem-dev.c │ ├── ashmem-host.c │ ├── canned_fs_config.c │ ├── config_utils.c │ ├── dlmalloc_stubs.c │ ├── fs.c │ ├── fs_config.cpp │ ├── hashmap.c │ ├── include │ │ ├── cutils │ │ │ ├── android_get_control_file.h │ │ │ ├── android_reboot.h │ │ │ ├── ashmem.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── compiler.h │ │ │ ├── config_utils.h │ │ │ ├── fs.h │ │ │ ├── hashmap.h │ │ │ ├── iosched_policy.h │ │ │ ├── jstring.h │ │ │ ├── klog.h │ │ │ ├── list.h │ │ │ ├── log.h │ │ │ ├── memory.h │ │ │ ├── misc.h │ │ │ ├── multiuser.h │ │ │ ├── native_handle.h │ │ │ ├── open_memstream.h │ │ │ ├── partition_utils.h │ │ │ ├── properties.h │ │ │ ├── qtaguid.h │ │ │ ├── record_stream.h │ │ │ ├── sched_policy.h │ │ │ ├── sockets.h │ │ │ ├── str_parms.h │ │ │ ├── threads.h │ │ │ ├── trace.h │ │ │ └── uevent.h │ │ └── private │ │ │ ├── android_filesystem_capability.h │ │ │ ├── android_filesystem_config.h │ │ │ ├── canned_fs_config.h │ │ │ └── fs_config.h │ ├── include_vndk │ │ ├── cutils │ │ │ ├── android_get_control_file.h │ │ │ ├── android_reboot.h │ │ │ ├── ashmem.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── compiler.h │ │ │ ├── config_utils.h │ │ │ ├── fs.h │ │ │ ├── hashmap.h │ │ │ ├── iosched_policy.h │ │ │ ├── jstring.h │ │ │ ├── klog.h │ │ │ ├── list.h │ │ │ ├── log.h │ │ │ ├── memory.h │ │ │ ├── misc.h │ │ │ ├── multiuser.h │ │ │ ├── native_handle.h │ │ │ ├── open_memstream.h │ │ │ ├── partition_utils.h │ │ │ ├── properties.h │ │ │ ├── qtaguid.h │ │ │ ├── record_stream.h │ │ │ ├── sched_policy.h │ │ │ ├── sockets.h │ │ │ ├── str_parms.h │ │ │ ├── threads.h │ │ │ ├── trace.h │ │ │ └── uevent.h │ │ └── private │ ├── iosched_policy.c │ ├── klog.cpp │ ├── load_file.c │ ├── multiuser.c │ ├── native_handle.c │ ├── open_memstream.c │ ├── partition_utils.c │ ├── properties.cpp │ ├── qtaguid.c │ ├── record_stream.c │ ├── sched_policy.cpp │ ├── socket_inaddr_any_server_unix.c │ ├── socket_inaddr_any_server_windows.c │ ├── socket_local_client_unix.c │ ├── socket_local_server_unix.c │ ├── socket_local_unix.h │ ├── socket_network_client_unix.c │ ├── socket_network_client_windows.c │ ├── sockets.cpp │ ├── sockets_unix.cpp │ ├── sockets_windows.cpp │ ├── str_parms.c │ ├── strdup16to8.c │ ├── strdup8to16.c │ ├── strlcpy.c │ ├── tests │ │ ├── Android.bp │ │ ├── AndroidTest.xml │ │ ├── AshmemTest.cpp │ │ ├── MemsetTest.cpp │ │ ├── PropertiesTest.cpp │ │ ├── android_get_control_file_test.cpp │ │ ├── android_get_control_socket_test.cpp │ │ ├── fs_config.cpp │ │ ├── multiuser_test.cpp │ │ ├── sched_policy_test.cpp │ │ ├── sockets_test.cpp │ │ ├── test_str_parms.cpp │ │ └── trace-dev_test.cpp │ ├── threads.c │ ├── trace-dev.c │ ├── trace-host.c │ └── uevent.c └── liblog │ ├── Android.bp │ ├── Android.mk │ ├── NOTICE │ ├── README │ ├── event.logtags │ ├── event_tag_map.c │ ├── fake_log_device.c │ ├── fake_log_device.h │ ├── log_cdefs.h │ ├── log_event_list.c │ ├── log_event_write.c │ ├── log_is_loggable.c │ ├── log_read.c │ ├── log_time.cpp │ ├── logd_write.c │ ├── logprint.c │ ├── tests │ ├── Android.mk │ ├── benchmark.h │ ├── benchmark_main.cpp │ ├── libc_test.cpp │ ├── liblog_benchmark.cpp │ └── liblog_test.cpp │ └── uio.c ├── ltmain.sh ├── m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── missing └── src ├── Android.bp ├── Android.mk ├── CPPLINT.cfg ├── MODULE_LICENSE_APACHE2 ├── Makefile.am ├── Makefile.in ├── NOTICE ├── OVERVIEW.TXT ├── SERVICES.TXT ├── SYNC.TXT ├── adb.cpp ├── adb.h ├── adb_auth.h ├── adb_auth_host.cpp ├── adb_client.cpp ├── adb_client.h ├── 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.h ├── adb_utils.cpp ├── adb_utils.h ├── adb_utils_test.cpp ├── adbd_auth.cpp ├── bugreport.cpp ├── bugreport.h ├── bugreport_test.cpp ├── client ├── main.cpp ├── usb_dispatch.cpp ├── usb_libusb.cpp ├── usb_linux.cpp ├── usb_osx.cpp └── usb_windows.cpp ├── commandline.cpp ├── commandline.h ├── console.cpp ├── daemon ├── main.cpp ├── mdns.cpp ├── mdns.h ├── usb.cpp └── usb.h ├── diagnose_usb.cpp ├── diagnose_usb.h ├── fdevent.cpp ├── fdevent.h ├── fdevent_test.cpp ├── fdevent_test.h ├── file_sync_client.cpp ├── file_sync_service.cpp ├── file_sync_service.h ├── framebuffer_service.cpp ├── jdwp_service.cpp ├── line_printer.cpp ├── line_printer.h ├── protocol.txt ├── remount_service.cpp ├── remount_service.h ├── security_log_tags.h ├── services.cpp ├── services.h ├── set_verity_enable_state_service.cpp ├── shell_service.cpp ├── shell_service.h ├── shell_service_protocol.cpp ├── shell_service_protocol_test.cpp ├── shell_service_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 └── 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_local.cpp ├── transport_mdns.cpp ├── transport_mdns_unsupported.cpp ├── transport_test.cpp ├── transport_usb.cpp └── usb.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | hduong 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/ar-lib -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/depcomp -------------------------------------------------------------------------------- /include/android/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/android/log.h -------------------------------------------------------------------------------- /include/cutils: -------------------------------------------------------------------------------- 1 | ../lib/libcutils/include/cutils/ -------------------------------------------------------------------------------- /include/log/event_tag_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/log/event_tag_map.h -------------------------------------------------------------------------------- /include/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/log/log.h -------------------------------------------------------------------------------- /include/log/log_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/log/log_read.h -------------------------------------------------------------------------------- /include/log/logd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/log/logd.h -------------------------------------------------------------------------------- /include/log/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/log/logger.h -------------------------------------------------------------------------------- /include/log/logprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/log/logprint.h -------------------------------------------------------------------------------- /include/log/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/log/uio.h -------------------------------------------------------------------------------- /include/mincrypt/dsa_sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/mincrypt/dsa_sig.h -------------------------------------------------------------------------------- /include/mincrypt/hash-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/mincrypt/hash-internal.h -------------------------------------------------------------------------------- /include/mincrypt/p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/mincrypt/p256.h -------------------------------------------------------------------------------- /include/mincrypt/p256_ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/mincrypt/p256_ecdsa.h -------------------------------------------------------------------------------- /include/mincrypt/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/mincrypt/rsa.h -------------------------------------------------------------------------------- /include/mincrypt/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/mincrypt/sha.h -------------------------------------------------------------------------------- /include/mincrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/mincrypt/sha256.h -------------------------------------------------------------------------------- /include/private/android_filesystem_capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/private/android_filesystem_capability.h -------------------------------------------------------------------------------- /include/private/android_filesystem_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/private/android_filesystem_config.h -------------------------------------------------------------------------------- /include/private/android_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/private/android_logger.h -------------------------------------------------------------------------------- /include/private/canned_fs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/private/canned_fs_config.h -------------------------------------------------------------------------------- /include/utils/AndroidThreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/AndroidThreads.h -------------------------------------------------------------------------------- /include/utils/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Atomic.h -------------------------------------------------------------------------------- /include/utils/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/BitSet.h -------------------------------------------------------------------------------- /include/utils/BlobCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/BlobCache.h -------------------------------------------------------------------------------- /include/utils/ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/ByteOrder.h -------------------------------------------------------------------------------- /include/utils/CallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/CallStack.h -------------------------------------------------------------------------------- /include/utils/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Compat.h -------------------------------------------------------------------------------- /include/utils/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Condition.h -------------------------------------------------------------------------------- /include/utils/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Debug.h -------------------------------------------------------------------------------- /include/utils/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Endian.h -------------------------------------------------------------------------------- /include/utils/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Errors.h -------------------------------------------------------------------------------- /include/utils/FileMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/FileMap.h -------------------------------------------------------------------------------- /include/utils/Flattenable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Flattenable.h -------------------------------------------------------------------------------- /include/utils/Functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Functor.h -------------------------------------------------------------------------------- /include/utils/JenkinsHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/JenkinsHash.h -------------------------------------------------------------------------------- /include/utils/KeyedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/KeyedVector.h -------------------------------------------------------------------------------- /include/utils/LinearTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/LinearTransform.h -------------------------------------------------------------------------------- /include/utils/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/List.h -------------------------------------------------------------------------------- /include/utils/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Log.h -------------------------------------------------------------------------------- /include/utils/Looper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Looper.h -------------------------------------------------------------------------------- /include/utils/LruCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/LruCache.h -------------------------------------------------------------------------------- /include/utils/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Mutex.h -------------------------------------------------------------------------------- /include/utils/NativeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/NativeHandle.h -------------------------------------------------------------------------------- /include/utils/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Printer.h -------------------------------------------------------------------------------- /include/utils/ProcessCallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/ProcessCallStack.h -------------------------------------------------------------------------------- /include/utils/PropertyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/PropertyMap.h -------------------------------------------------------------------------------- /include/utils/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/RWLock.h -------------------------------------------------------------------------------- /include/utils/RefBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/RefBase.h -------------------------------------------------------------------------------- /include/utils/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Singleton.h -------------------------------------------------------------------------------- /include/utils/SortedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/SortedVector.h -------------------------------------------------------------------------------- /include/utils/StopWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/StopWatch.h -------------------------------------------------------------------------------- /include/utils/String16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/String16.h -------------------------------------------------------------------------------- /include/utils/String8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/String8.h -------------------------------------------------------------------------------- /include/utils/StrongPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/StrongPointer.h -------------------------------------------------------------------------------- /include/utils/SystemClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/SystemClock.h -------------------------------------------------------------------------------- /include/utils/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Thread.h -------------------------------------------------------------------------------- /include/utils/ThreadDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/ThreadDefs.h -------------------------------------------------------------------------------- /include/utils/Timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Timers.h -------------------------------------------------------------------------------- /include/utils/Tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Tokenizer.h -------------------------------------------------------------------------------- /include/utils/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Trace.h -------------------------------------------------------------------------------- /include/utils/TypeHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/TypeHelpers.h -------------------------------------------------------------------------------- /include/utils/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Unicode.h -------------------------------------------------------------------------------- /include/utils/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/Vector.h -------------------------------------------------------------------------------- /include/utils/VectorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/VectorImpl.h -------------------------------------------------------------------------------- /include/utils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/misc.h -------------------------------------------------------------------------------- /include/utils/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/utils/threads.h -------------------------------------------------------------------------------- /include/zipfile/zipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/include/zipfile/zipfile.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/install-sh -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/Makefile.in -------------------------------------------------------------------------------- /lib/base/.clang-format: -------------------------------------------------------------------------------- 1 | ../.clang-format-2 -------------------------------------------------------------------------------- /lib/base/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/Android.bp -------------------------------------------------------------------------------- /lib/base/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/CPPLINT.cfg -------------------------------------------------------------------------------- /lib/base/chrono_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/chrono_utils.cpp -------------------------------------------------------------------------------- /lib/base/chrono_utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/chrono_utils_test.cpp -------------------------------------------------------------------------------- /lib/base/endian_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/endian_test.cpp -------------------------------------------------------------------------------- /lib/base/errors_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/errors_test.cpp -------------------------------------------------------------------------------- /lib/base/errors_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/errors_unix.cpp -------------------------------------------------------------------------------- /lib/base/errors_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/errors_windows.cpp -------------------------------------------------------------------------------- /lib/base/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/file.cpp -------------------------------------------------------------------------------- /lib/base/file_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/file_test.cpp -------------------------------------------------------------------------------- /lib/base/include/android-base/chrono_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/chrono_utils.h -------------------------------------------------------------------------------- /lib/base/include/android-base/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/endian.h -------------------------------------------------------------------------------- /lib/base/include/android-base/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/errors.h -------------------------------------------------------------------------------- /lib/base/include/android-base/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/file.h -------------------------------------------------------------------------------- /lib/base/include/android-base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/logging.h -------------------------------------------------------------------------------- /lib/base/include/android-base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/macros.h -------------------------------------------------------------------------------- /lib/base/include/android-base/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/memory.h -------------------------------------------------------------------------------- /lib/base/include/android-base/parsedouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/parsedouble.h -------------------------------------------------------------------------------- /lib/base/include/android-base/parseint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/parseint.h -------------------------------------------------------------------------------- /lib/base/include/android-base/parsenetaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/parsenetaddress.h -------------------------------------------------------------------------------- /lib/base/include/android-base/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/properties.h -------------------------------------------------------------------------------- /lib/base/include/android-base/quick_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/quick_exit.h -------------------------------------------------------------------------------- /lib/base/include/android-base/scopeguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/scopeguard.h -------------------------------------------------------------------------------- /lib/base/include/android-base/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/stringprintf.h -------------------------------------------------------------------------------- /lib/base/include/android-base/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/strings.h -------------------------------------------------------------------------------- /lib/base/include/android-base/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/test_utils.h -------------------------------------------------------------------------------- /lib/base/include/android-base/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/thread_annotations.h -------------------------------------------------------------------------------- /lib/base/include/android-base/unique_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/unique_fd.h -------------------------------------------------------------------------------- /lib/base/include/android-base/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/include/android-base/utf8.h -------------------------------------------------------------------------------- /lib/base/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/logging.cpp -------------------------------------------------------------------------------- /lib/base/logging_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/logging_test.cpp -------------------------------------------------------------------------------- /lib/base/parsedouble_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/parsedouble_test.cpp -------------------------------------------------------------------------------- /lib/base/parseint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/parseint_test.cpp -------------------------------------------------------------------------------- /lib/base/parsenetaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/parsenetaddress.cpp -------------------------------------------------------------------------------- /lib/base/parsenetaddress_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/parsenetaddress_test.cpp -------------------------------------------------------------------------------- /lib/base/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/properties.cpp -------------------------------------------------------------------------------- /lib/base/properties_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/properties_test.cpp -------------------------------------------------------------------------------- /lib/base/quick_exit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/quick_exit.cpp -------------------------------------------------------------------------------- /lib/base/quick_exit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/quick_exit_test.cpp -------------------------------------------------------------------------------- /lib/base/scopeguard_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/scopeguard_test.cpp -------------------------------------------------------------------------------- /lib/base/stringprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/stringprintf.cpp -------------------------------------------------------------------------------- /lib/base/stringprintf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/stringprintf_test.cpp -------------------------------------------------------------------------------- /lib/base/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/strings.cpp -------------------------------------------------------------------------------- /lib/base/strings_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/strings_test.cpp -------------------------------------------------------------------------------- /lib/base/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/test_main.cpp -------------------------------------------------------------------------------- /lib/base/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/test_utils.cpp -------------------------------------------------------------------------------- /lib/base/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/utf8.cpp -------------------------------------------------------------------------------- /lib/base/utf8_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/base/utf8_test.cpp -------------------------------------------------------------------------------- /lib/libcrypto_utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcrypto_utils/Android.mk -------------------------------------------------------------------------------- /lib/libcrypto_utils/android_pubkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcrypto_utils/android_pubkey.c -------------------------------------------------------------------------------- /lib/libcrypto_utils/include/crypto_utils/android_pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcrypto_utils/include/crypto_utils/android_pubkey.h -------------------------------------------------------------------------------- /lib/libcrypto_utils/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcrypto_utils/tests/Android.mk -------------------------------------------------------------------------------- /lib/libcrypto_utils/tests/android_pubkey_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcrypto_utils/tests/android_pubkey_test.cpp -------------------------------------------------------------------------------- /lib/libcutils/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/Android.bp -------------------------------------------------------------------------------- /lib/libcutils/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/libcutils/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/NOTICE -------------------------------------------------------------------------------- /lib/libcutils/android_get_control_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/android_get_control_env.h -------------------------------------------------------------------------------- /lib/libcutils/android_get_control_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/android_get_control_file.cpp -------------------------------------------------------------------------------- /lib/libcutils/android_reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/android_reboot.c -------------------------------------------------------------------------------- /lib/libcutils/arch-arm/memset32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/arch-arm/memset32.S -------------------------------------------------------------------------------- /lib/libcutils/arch-arm64/android_memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/arch-arm64/android_memset.S -------------------------------------------------------------------------------- /lib/libcutils/arch-mips/android_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/arch-mips/android_memset.c -------------------------------------------------------------------------------- /lib/libcutils/arch-x86/android_memset16.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/arch-x86/android_memset16.S -------------------------------------------------------------------------------- /lib/libcutils/arch-x86/android_memset32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/arch-x86/android_memset32.S -------------------------------------------------------------------------------- /lib/libcutils/arch-x86/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/arch-x86/cache.h -------------------------------------------------------------------------------- /lib/libcutils/arch-x86_64/android_memset16.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/arch-x86_64/android_memset16.S -------------------------------------------------------------------------------- /lib/libcutils/arch-x86_64/android_memset32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/arch-x86_64/android_memset32.S -------------------------------------------------------------------------------- /lib/libcutils/arch-x86_64/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/arch-x86_64/cache.h -------------------------------------------------------------------------------- /lib/libcutils/ashmem-dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/ashmem-dev.c -------------------------------------------------------------------------------- /lib/libcutils/ashmem-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/ashmem-host.c -------------------------------------------------------------------------------- /lib/libcutils/canned_fs_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/canned_fs_config.c -------------------------------------------------------------------------------- /lib/libcutils/config_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/config_utils.c -------------------------------------------------------------------------------- /lib/libcutils/dlmalloc_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/dlmalloc_stubs.c -------------------------------------------------------------------------------- /lib/libcutils/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/fs.c -------------------------------------------------------------------------------- /lib/libcutils/fs_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/fs_config.cpp -------------------------------------------------------------------------------- /lib/libcutils/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/hashmap.c -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/android_get_control_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/android_get_control_file.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/android_reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/android_reboot.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/ashmem.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/atomic.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/bitops.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/compiler.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/config_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/config_utils.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/fs.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/hashmap.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/iosched_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/iosched_policy.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/jstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/jstring.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/klog.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/list.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/log.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/memory.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/misc.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/multiuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/multiuser.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/native_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/native_handle.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/open_memstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/open_memstream.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/partition_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/partition_utils.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/properties.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/qtaguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/qtaguid.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/record_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/record_stream.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/sched_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/sched_policy.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/sockets.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/str_parms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/str_parms.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/threads.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/trace.h -------------------------------------------------------------------------------- /lib/libcutils/include/cutils/uevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/cutils/uevent.h -------------------------------------------------------------------------------- /lib/libcutils/include/private/android_filesystem_capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/private/android_filesystem_capability.h -------------------------------------------------------------------------------- /lib/libcutils/include/private/android_filesystem_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/private/android_filesystem_config.h -------------------------------------------------------------------------------- /lib/libcutils/include/private/canned_fs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/private/canned_fs_config.h -------------------------------------------------------------------------------- /lib/libcutils/include/private/fs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include/private/fs_config.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/android_get_control_file.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/android_get_control_file.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/android_reboot.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/android_reboot.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/ashmem.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/ashmem.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/atomic.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/atomic.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/bitops.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/bitops.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/compiler.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/compiler.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/config_utils.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/config_utils.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/fs.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/fs.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/hashmap.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/hashmap.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/iosched_policy.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/iosched_policy.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/jstring.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/jstring.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/klog.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/klog.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/list.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/list.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/include_vndk/cutils/log.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/memory.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/memory.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/misc.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/misc.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/multiuser.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/multiuser.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/native_handle.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/native_handle.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/open_memstream.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/open_memstream.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/partition_utils.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/partition_utils.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/properties.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/properties.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/qtaguid.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/qtaguid.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/record_stream.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/record_stream.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/sched_policy.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/sched_policy.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/sockets.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/sockets.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/str_parms.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/str_parms.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/threads.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/threads.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/trace.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/trace.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/cutils/uevent.h: -------------------------------------------------------------------------------- 1 | ../../include/cutils/uevent.h -------------------------------------------------------------------------------- /lib/libcutils/include_vndk/private: -------------------------------------------------------------------------------- 1 | ../include/private -------------------------------------------------------------------------------- /lib/libcutils/iosched_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/iosched_policy.c -------------------------------------------------------------------------------- /lib/libcutils/klog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/klog.cpp -------------------------------------------------------------------------------- /lib/libcutils/load_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/load_file.c -------------------------------------------------------------------------------- /lib/libcutils/multiuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/multiuser.c -------------------------------------------------------------------------------- /lib/libcutils/native_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/native_handle.c -------------------------------------------------------------------------------- /lib/libcutils/open_memstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/open_memstream.c -------------------------------------------------------------------------------- /lib/libcutils/partition_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/partition_utils.c -------------------------------------------------------------------------------- /lib/libcutils/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/properties.cpp -------------------------------------------------------------------------------- /lib/libcutils/qtaguid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/qtaguid.c -------------------------------------------------------------------------------- /lib/libcutils/record_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/record_stream.c -------------------------------------------------------------------------------- /lib/libcutils/sched_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/sched_policy.cpp -------------------------------------------------------------------------------- /lib/libcutils/socket_inaddr_any_server_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/socket_inaddr_any_server_unix.c -------------------------------------------------------------------------------- /lib/libcutils/socket_inaddr_any_server_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/socket_inaddr_any_server_windows.c -------------------------------------------------------------------------------- /lib/libcutils/socket_local_client_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/socket_local_client_unix.c -------------------------------------------------------------------------------- /lib/libcutils/socket_local_server_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/socket_local_server_unix.c -------------------------------------------------------------------------------- /lib/libcutils/socket_local_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/socket_local_unix.h -------------------------------------------------------------------------------- /lib/libcutils/socket_network_client_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/socket_network_client_unix.c -------------------------------------------------------------------------------- /lib/libcutils/socket_network_client_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/socket_network_client_windows.c -------------------------------------------------------------------------------- /lib/libcutils/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/sockets.cpp -------------------------------------------------------------------------------- /lib/libcutils/sockets_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/sockets_unix.cpp -------------------------------------------------------------------------------- /lib/libcutils/sockets_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/sockets_windows.cpp -------------------------------------------------------------------------------- /lib/libcutils/str_parms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/str_parms.c -------------------------------------------------------------------------------- /lib/libcutils/strdup16to8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/strdup16to8.c -------------------------------------------------------------------------------- /lib/libcutils/strdup8to16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/strdup8to16.c -------------------------------------------------------------------------------- /lib/libcutils/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/strlcpy.c -------------------------------------------------------------------------------- /lib/libcutils/tests/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/Android.bp -------------------------------------------------------------------------------- /lib/libcutils/tests/AndroidTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/AndroidTest.xml -------------------------------------------------------------------------------- /lib/libcutils/tests/AshmemTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/AshmemTest.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/MemsetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/MemsetTest.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/PropertiesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/PropertiesTest.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/android_get_control_file_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/android_get_control_file_test.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/android_get_control_socket_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/android_get_control_socket_test.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/fs_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/fs_config.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/multiuser_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/multiuser_test.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/sched_policy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/sched_policy_test.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/sockets_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/sockets_test.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/test_str_parms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/test_str_parms.cpp -------------------------------------------------------------------------------- /lib/libcutils/tests/trace-dev_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/tests/trace-dev_test.cpp -------------------------------------------------------------------------------- /lib/libcutils/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/threads.c -------------------------------------------------------------------------------- /lib/libcutils/trace-dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/trace-dev.c -------------------------------------------------------------------------------- /lib/libcutils/trace-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/trace-host.c -------------------------------------------------------------------------------- /lib/libcutils/uevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/libcutils/uevent.c -------------------------------------------------------------------------------- /lib/liblog/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/Android.bp -------------------------------------------------------------------------------- /lib/liblog/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/Android.mk -------------------------------------------------------------------------------- /lib/liblog/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/NOTICE -------------------------------------------------------------------------------- /lib/liblog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/README -------------------------------------------------------------------------------- /lib/liblog/event.logtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/event.logtags -------------------------------------------------------------------------------- /lib/liblog/event_tag_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/event_tag_map.c -------------------------------------------------------------------------------- /lib/liblog/fake_log_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/fake_log_device.c -------------------------------------------------------------------------------- /lib/liblog/fake_log_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/fake_log_device.h -------------------------------------------------------------------------------- /lib/liblog/log_cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/log_cdefs.h -------------------------------------------------------------------------------- /lib/liblog/log_event_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/log_event_list.c -------------------------------------------------------------------------------- /lib/liblog/log_event_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/log_event_write.c -------------------------------------------------------------------------------- /lib/liblog/log_is_loggable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/log_is_loggable.c -------------------------------------------------------------------------------- /lib/liblog/log_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/log_read.c -------------------------------------------------------------------------------- /lib/liblog/log_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/log_time.cpp -------------------------------------------------------------------------------- /lib/liblog/logd_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/logd_write.c -------------------------------------------------------------------------------- /lib/liblog/logprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/logprint.c -------------------------------------------------------------------------------- /lib/liblog/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/tests/Android.mk -------------------------------------------------------------------------------- /lib/liblog/tests/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/tests/benchmark.h -------------------------------------------------------------------------------- /lib/liblog/tests/benchmark_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/tests/benchmark_main.cpp -------------------------------------------------------------------------------- /lib/liblog/tests/libc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/tests/libc_test.cpp -------------------------------------------------------------------------------- /lib/liblog/tests/liblog_benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/tests/liblog_benchmark.cpp -------------------------------------------------------------------------------- /lib/liblog/tests/liblog_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/tests/liblog_test.cpp -------------------------------------------------------------------------------- /lib/liblog/uio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/lib/liblog/uio.c -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/ltmain.sh -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/missing -------------------------------------------------------------------------------- /src/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/Android.bp -------------------------------------------------------------------------------- /src/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/Android.mk -------------------------------------------------------------------------------- /src/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/CPPLINT.cfg -------------------------------------------------------------------------------- /src/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/NOTICE -------------------------------------------------------------------------------- /src/OVERVIEW.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/OVERVIEW.TXT -------------------------------------------------------------------------------- /src/SERVICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/SERVICES.TXT -------------------------------------------------------------------------------- /src/SYNC.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/SYNC.TXT -------------------------------------------------------------------------------- /src/adb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb.cpp -------------------------------------------------------------------------------- /src/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb.h -------------------------------------------------------------------------------- /src/adb_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_auth.h -------------------------------------------------------------------------------- /src/adb_auth_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_auth_host.cpp -------------------------------------------------------------------------------- /src/adb_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_client.cpp -------------------------------------------------------------------------------- /src/adb_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_client.h -------------------------------------------------------------------------------- /src/adb_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_io.cpp -------------------------------------------------------------------------------- /src/adb_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_io.h -------------------------------------------------------------------------------- /src/adb_io_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_io_test.cpp -------------------------------------------------------------------------------- /src/adb_listeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_listeners.cpp -------------------------------------------------------------------------------- /src/adb_listeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_listeners.h -------------------------------------------------------------------------------- /src/adb_listeners_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_listeners_test.cpp -------------------------------------------------------------------------------- /src/adb_mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_mdns.h -------------------------------------------------------------------------------- /src/adb_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_trace.cpp -------------------------------------------------------------------------------- /src/adb_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_trace.h -------------------------------------------------------------------------------- /src/adb_unique_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_unique_fd.h -------------------------------------------------------------------------------- /src/adb_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_utils.cpp -------------------------------------------------------------------------------- /src/adb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_utils.h -------------------------------------------------------------------------------- /src/adb_utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adb_utils_test.cpp -------------------------------------------------------------------------------- /src/adbd_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/adbd_auth.cpp -------------------------------------------------------------------------------- /src/bugreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/bugreport.cpp -------------------------------------------------------------------------------- /src/bugreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/bugreport.h -------------------------------------------------------------------------------- /src/bugreport_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/bugreport_test.cpp -------------------------------------------------------------------------------- /src/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/client/main.cpp -------------------------------------------------------------------------------- /src/client/usb_dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/client/usb_dispatch.cpp -------------------------------------------------------------------------------- /src/client/usb_libusb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/client/usb_libusb.cpp -------------------------------------------------------------------------------- /src/client/usb_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/client/usb_linux.cpp -------------------------------------------------------------------------------- /src/client/usb_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/client/usb_osx.cpp -------------------------------------------------------------------------------- /src/client/usb_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/client/usb_windows.cpp -------------------------------------------------------------------------------- /src/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/commandline.cpp -------------------------------------------------------------------------------- /src/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/commandline.h -------------------------------------------------------------------------------- /src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/console.cpp -------------------------------------------------------------------------------- /src/daemon/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/daemon/main.cpp -------------------------------------------------------------------------------- /src/daemon/mdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/daemon/mdns.cpp -------------------------------------------------------------------------------- /src/daemon/mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/daemon/mdns.h -------------------------------------------------------------------------------- /src/daemon/usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/daemon/usb.cpp -------------------------------------------------------------------------------- /src/daemon/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/daemon/usb.h -------------------------------------------------------------------------------- /src/diagnose_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/diagnose_usb.cpp -------------------------------------------------------------------------------- /src/diagnose_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/diagnose_usb.h -------------------------------------------------------------------------------- /src/fdevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/fdevent.cpp -------------------------------------------------------------------------------- /src/fdevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/fdevent.h -------------------------------------------------------------------------------- /src/fdevent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/fdevent_test.cpp -------------------------------------------------------------------------------- /src/fdevent_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/fdevent_test.h -------------------------------------------------------------------------------- /src/file_sync_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/file_sync_client.cpp -------------------------------------------------------------------------------- /src/file_sync_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/file_sync_service.cpp -------------------------------------------------------------------------------- /src/file_sync_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/file_sync_service.h -------------------------------------------------------------------------------- /src/framebuffer_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/framebuffer_service.cpp -------------------------------------------------------------------------------- /src/jdwp_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/jdwp_service.cpp -------------------------------------------------------------------------------- /src/line_printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/line_printer.cpp -------------------------------------------------------------------------------- /src/line_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/line_printer.h -------------------------------------------------------------------------------- /src/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/protocol.txt -------------------------------------------------------------------------------- /src/remount_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/remount_service.cpp -------------------------------------------------------------------------------- /src/remount_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/remount_service.h -------------------------------------------------------------------------------- /src/security_log_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/security_log_tags.h -------------------------------------------------------------------------------- /src/services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/services.cpp -------------------------------------------------------------------------------- /src/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/services.h -------------------------------------------------------------------------------- /src/set_verity_enable_state_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/set_verity_enable_state_service.cpp -------------------------------------------------------------------------------- /src/shell_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/shell_service.cpp -------------------------------------------------------------------------------- /src/shell_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/shell_service.h -------------------------------------------------------------------------------- /src/shell_service_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/shell_service_protocol.cpp -------------------------------------------------------------------------------- /src/shell_service_protocol_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/shell_service_protocol_test.cpp -------------------------------------------------------------------------------- /src/shell_service_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/shell_service_test.cpp -------------------------------------------------------------------------------- /src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/socket.h -------------------------------------------------------------------------------- /src/socket_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/socket_spec.cpp -------------------------------------------------------------------------------- /src/socket_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/socket_spec.h -------------------------------------------------------------------------------- /src/socket_spec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/socket_spec_test.cpp -------------------------------------------------------------------------------- /src/socket_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/socket_test.cpp -------------------------------------------------------------------------------- /src/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sockets.cpp -------------------------------------------------------------------------------- /src/sockets.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sockets.dia -------------------------------------------------------------------------------- /src/sysdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps.h -------------------------------------------------------------------------------- /src/sysdeps/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/chrono.h -------------------------------------------------------------------------------- /src/sysdeps/errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/errno.cpp -------------------------------------------------------------------------------- /src/sysdeps/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/errno.h -------------------------------------------------------------------------------- /src/sysdeps/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/network.h -------------------------------------------------------------------------------- /src/sysdeps/posix/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/posix/network.cpp -------------------------------------------------------------------------------- /src/sysdeps/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/stat.h -------------------------------------------------------------------------------- /src/sysdeps/stat_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/stat_test.cpp -------------------------------------------------------------------------------- /src/sysdeps/win32/errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/win32/errno.cpp -------------------------------------------------------------------------------- /src/sysdeps/win32/errno_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/win32/errno_test.cpp -------------------------------------------------------------------------------- /src/sysdeps/win32/stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps/win32/stat.cpp -------------------------------------------------------------------------------- /src/sysdeps_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps_test.cpp -------------------------------------------------------------------------------- /src/sysdeps_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps_unix.cpp -------------------------------------------------------------------------------- /src/sysdeps_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps_win32.cpp -------------------------------------------------------------------------------- /src/sysdeps_win32_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/sysdeps_win32_test.cpp -------------------------------------------------------------------------------- /src/test_adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/test_adb.py -------------------------------------------------------------------------------- /src/test_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/test_device.py -------------------------------------------------------------------------------- /src/trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/trace.sh -------------------------------------------------------------------------------- /src/transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/transport.cpp -------------------------------------------------------------------------------- /src/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/transport.h -------------------------------------------------------------------------------- /src/transport_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/transport_local.cpp -------------------------------------------------------------------------------- /src/transport_mdns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/transport_mdns.cpp -------------------------------------------------------------------------------- /src/transport_mdns_unsupported.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/transport_mdns_unsupported.cpp -------------------------------------------------------------------------------- /src/transport_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/transport_test.cpp -------------------------------------------------------------------------------- /src/transport_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/transport_usb.cpp -------------------------------------------------------------------------------- /src/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qhuyduong/arm_adb/HEAD/src/usb.h --------------------------------------------------------------------------------