├── .gitignore ├── Android.mk ├── CleanSpec.mk ├── MODULE_LICENSE_APACHE2 ├── Makefile ├── NOTICE ├── Readme.md ├── adb.sh ├── adb ├── .clang-format ├── Android.mk ├── CPPLINT.cfg ├── MODULE_LICENSE_APACHE2 ├── Makefile ├── NOTICE ├── OVERVIEW.TXT ├── SERVICES.TXT ├── SYNC.TXT ├── adb.cpp ├── adb.h ├── adb_auth.cpp ├── adb_auth.h ├── adb_auth_client.cpp ├── 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_trace.cpp ├── adb_trace.h ├── adb_utils.cpp ├── adb_utils.h ├── adb_utils_test.cpp ├── client │ └── main.cpp ├── commandline.cpp ├── console.cpp ├── daemon │ └── main.cpp ├── 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 ├── get_my_path_darwin.cpp ├── get_my_path_linux.cpp ├── jdwp_service.cpp ├── line_printer.cpp ├── line_printer.h ├── log-non-android.cpp ├── mutex_list.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_test.cpp ├── sockets.cpp ├── sockets.dia ├── sysdeps.h ├── sysdeps │ ├── condition_variable.h │ └── mutex.h ├── sysdeps_test.cpp ├── sysdeps_unix.cpp ├── sysdeps_win32.cpp ├── sysdeps_win32_test.cpp ├── test_adb.py ├── test_device.py ├── transport.cpp ├── transport.h ├── transport_local.cpp ├── transport_test.cpp ├── transport_usb.cpp ├── usb_linux.cpp ├── usb_linux_client.cpp ├── usb_osx.cpp ├── usb_windows.cpp └── xdg-adbd.c ├── adbd.service ├── adf ├── Android.mk ├── libadf │ ├── Android.mk │ ├── adf.c │ ├── include │ │ └── adf │ │ │ └── adf.h │ └── tests │ │ ├── Android.mk │ │ └── adf_test.cpp └── libadfhwc │ ├── Android.mk │ ├── adfhwc.cpp │ └── include │ └── adfhwc │ └── adfhwc.h ├── base ├── .clang-format ├── Android.mk ├── CPPLINT.cfg ├── Makefile ├── errors_test.cpp ├── errors_unix.cpp ├── errors_windows.cpp ├── file.cpp ├── file_test.cpp ├── include │ └── android-base │ │ ├── errors.h │ │ ├── file.h │ │ ├── logging.h │ │ ├── macros.h │ │ ├── memory.h │ │ ├── parseint.h │ │ ├── parsenetaddress.h │ │ ├── stringprintf.h │ │ ├── strings.h │ │ ├── test_utils.h │ │ ├── thread_annotations.h │ │ ├── unique_fd.h │ │ └── utf8.h ├── logging.cpp ├── logging_test.cpp ├── parseint_test.cpp ├── parsenetaddress.cpp ├── parsenetaddress_test.cpp ├── stringprintf.cpp ├── stringprintf_test.cpp ├── strings.cpp ├── strings_test.cpp ├── test_main.cpp ├── test_utils.cpp ├── utf8.cpp └── utf8_test.cpp ├── bootstat ├── Android.mk ├── README.md ├── boot_event_record_store.cpp ├── boot_event_record_store.h ├── boot_event_record_store_test.cpp ├── bootstat.cpp ├── bootstat.rc ├── event_log_list_builder.cpp ├── event_log_list_builder.h ├── event_log_list_builder_test.cpp ├── histogram_logger.cpp ├── histogram_logger.h ├── testrunner.cpp ├── uptime_parser.cpp └── uptime_parser.h ├── configure ├── cpio ├── Android.mk └── mkbootfs.c ├── crash_reporter ├── .project_alias ├── 99-crash-reporter.rules ├── Android.mk ├── OWNERS ├── README.md ├── TEST_WARNING ├── crash_collector.cc ├── crash_collector.h ├── crash_collector_test.cc ├── crash_collector_test.h ├── crash_reporter.cc ├── crash_reporter.rc ├── crash_reporter_logs.conf ├── crash_reporter_logs_test.cc ├── crash_sender ├── dbus_bindings │ └── org.chromium.LibCrosService.xml ├── init │ ├── crash-reporter.conf │ ├── crash-sender.conf │ └── warn-collector.conf ├── kernel_collector.cc ├── kernel_collector.h ├── kernel_collector_test.cc ├── kernel_collector_test.h ├── kernel_log_collector.sh ├── kernel_warning_collector.cc ├── kernel_warning_collector.h ├── list_proxies.cc ├── periodic_scheduler ├── testrunner.cc ├── udev_collector.cc ├── udev_collector.h ├── udev_collector_test.cc ├── unclean_shutdown_collector.cc ├── unclean_shutdown_collector.h ├── unclean_shutdown_collector_test.cc ├── user_collector.cc ├── user_collector.h ├── user_collector_test.cc ├── warn_collector.l ├── warn_collector_test.c ├── warn_collector_test.sh └── warn_collector_test_reporter.sh ├── debuggerd ├── .clang-format ├── Android.bp ├── Android.soong.mk ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── arm │ ├── crashglue.S │ └── machine.cpp ├── arm64 │ ├── crashglue.S │ └── machine.cpp ├── backtrace.cpp ├── backtrace.h ├── client │ └── debuggerd_client.cpp ├── crasher.cpp ├── debuggerd.cpp ├── debuggerd.rc ├── debuggerd64.rc ├── elf_utils.cpp ├── elf_utils.h ├── getevent.cpp ├── getevent.h ├── include │ └── debuggerd │ │ └── client.h ├── machine.h ├── mips │ ├── crashglue.S │ └── machine.cpp ├── mips64 │ ├── crashglue.S │ └── machine.cpp ├── signal_sender.cpp ├── signal_sender.h ├── test │ ├── BacktraceMock.h │ ├── dump_memory_test.cpp │ ├── elf_fake.cpp │ ├── elf_fake.h │ ├── host_signal_fixup.h │ ├── log_fake.cpp │ ├── log_fake.h │ ├── property_fake.cpp │ ├── ptrace_fake.cpp │ ├── ptrace_fake.h │ ├── selinux │ │ └── android.h │ ├── selinux_fake.cpp │ ├── sys │ │ └── system_properties.h │ └── tombstone_test.cpp ├── tombstone.cpp ├── tombstone.h ├── utility.cpp ├── utility.h ├── x86 │ ├── crashglue.S │ └── machine.cpp └── x86_64 │ ├── crashglue.S │ └── machine.cpp ├── fastboot ├── .clang-format ├── Android.mk ├── bootimg_utils.cpp ├── bootimg_utils.h ├── engine.cpp ├── fastboot.cpp ├── fastboot.h ├── fastboot_protocol.txt ├── fs.cpp ├── fs.h ├── protocol.cpp ├── socket.cpp ├── socket.h ├── socket_mock.cpp ├── socket_mock.h ├── socket_test.cpp ├── tcp.cpp ├── tcp.h ├── tcp_test.cpp ├── transport.h ├── udp.cpp ├── udp.h ├── udp_test.cpp ├── usb.h ├── usb_linux.cpp ├── usb_osx.cpp ├── usb_windows.cpp ├── usbtest.cpp ├── util.cpp ├── util_linux.cpp ├── util_osx.cpp └── util_windows.cpp ├── fingerprintd ├── Android.mk ├── FingerprintDaemonProxy.cpp ├── FingerprintDaemonProxy.h ├── IFingerprintDaemon.cpp ├── IFingerprintDaemon.h ├── IFingerprintDaemonCallback.cpp ├── IFingerprintDaemonCallback.h └── fingerprintd.cpp ├── fs_mgr ├── Android.mk ├── fs_mgr.c ├── fs_mgr_format.c ├── fs_mgr_fstab.c ├── fs_mgr_main.c ├── fs_mgr_priv.h ├── fs_mgr_priv_verity.h ├── fs_mgr_slotselect.c ├── fs_mgr_verity.cpp └── include │ └── fs_mgr.h ├── gatekeeperd ├── Android.mk ├── IGateKeeperService.cpp ├── IGateKeeperService.h ├── IUserManager.cpp ├── IUserManager.h ├── SoftGateKeeper.h ├── SoftGateKeeperDevice.cpp ├── SoftGateKeeperDevice.h ├── gatekeeperd.cpp ├── gatekeeperd.rc └── tests │ ├── Android.mk │ └── gatekeeper_test.cpp ├── healthd ├── Android.mk ├── BatteryMonitor.cpp ├── BatteryPropertiesRegistrar.cpp ├── BatteryPropertiesRegistrar.h ├── healthd.cpp ├── healthd_board_default.cpp ├── healthd_mode_android.cpp ├── healthd_mode_charger.cpp ├── images │ ├── battery_fail.png │ └── battery_scale.png └── include │ └── healthd │ ├── BatteryMonitor.h │ └── healthd.h ├── include.mk ├── include ├── android │ └── log.h ├── backtrace │ ├── Backtrace.h │ ├── BacktraceMap.h │ └── backtrace_constants.h ├── binderwrapper │ ├── binder_test_base.h │ ├── binder_wrapper.h │ └── stub_binder_wrapper.h ├── cutils │ ├── android_reboot.h │ ├── ashmem.h │ ├── atomic.h │ ├── bitops.h │ ├── compiler.h │ ├── config_utils.h │ ├── debugger.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 │ ├── process_name.h │ ├── properties.h │ ├── qtaguid.h │ ├── record_stream.h │ ├── sched_policy.h │ ├── sockets.h │ ├── str_parms.h │ ├── threads.h │ ├── trace.h │ └── uevent.h ├── log │ ├── event_tag_map.h │ ├── log.h │ ├── log_read.h │ ├── logd.h │ ├── logger.h │ ├── logprint.h │ └── uio.h ├── nativebridge │ └── native_bridge.h ├── private │ ├── android_filesystem_capability.h │ ├── android_filesystem_config.h │ ├── android_logger.h │ └── canned_fs_config.h ├── system │ ├── camera.h │ ├── graphics.h │ ├── qemu_pipe.h │ ├── radio.h │ ├── thread_defs.h │ └── window.h ├── sysutils │ ├── FrameworkClient.h │ ├── FrameworkCommand.h │ ├── FrameworkListener.h │ ├── List.h │ ├── NetlinkEvent.h │ ├── NetlinkListener.h │ ├── ServiceManager.h │ ├── SocketClient.h │ ├── SocketClientCommand.h │ └── SocketListener.h ├── usbhost │ └── usbhost.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 └── ziparchive │ ├── zip_archive.h │ ├── zip_archive_stream_entry.h │ └── zip_writer.h ├── init ├── Android.mk ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── action.cpp ├── action.h ├── bootchart.cpp ├── bootchart.h ├── builtins.cpp ├── builtins.h ├── compare-bootcharts.py ├── devices.cpp ├── devices.h ├── grab-bootchart.sh ├── import_parser.cpp ├── import_parser.h ├── init.cpp ├── init.h ├── init_parser.cpp ├── init_parser.h ├── init_parser_test.cpp ├── keychords.cpp ├── keychords.h ├── keyword_map.h ├── log.cpp ├── log.h ├── parser.cpp ├── parser.h ├── parser │ ├── tokenizer.cpp │ ├── tokenizer.h │ └── tokenizer_test.cpp ├── perfboot.py ├── property_service.cpp ├── property_service.h ├── readme.txt ├── service.cpp ├── service.h ├── signal_handler.cpp ├── signal_handler.h ├── ueventd.cpp ├── ueventd.h ├── ueventd_keywords.h ├── ueventd_parser.cpp ├── ueventd_parser.h ├── util.cpp ├── util.h ├── util_test.cpp ├── watchdogd.cpp └── watchdogd.h ├── libbacktrace ├── Android.build.mk ├── Android.mk ├── Backtrace.cpp ├── BacktraceCurrent.cpp ├── BacktraceCurrent.h ├── BacktraceLog.h ├── BacktraceMap.cpp ├── BacktraceOffline.cpp ├── BacktraceOffline.h ├── BacktracePtrace.cpp ├── BacktracePtrace.h ├── GetPss.cpp ├── GetPss.h ├── ThreadEntry.cpp ├── ThreadEntry.h ├── UnwindCurrent.cpp ├── UnwindCurrent.h ├── UnwindMap.cpp ├── UnwindMap.h ├── UnwindPtrace.cpp ├── UnwindPtrace.h ├── backtrace_offline_test.cpp ├── backtrace_test.cpp ├── backtrace_testlib.c ├── thread_utils.c └── thread_utils.h ├── libbinderwrapper ├── Android.mk ├── binder_test_base.cc ├── binder_wrapper.cc ├── real_binder_wrapper.cc ├── real_binder_wrapper.h └── stub_binder_wrapper.cc ├── libcrypto_utils ├── Android.mk ├── Makefile ├── android_pubkey.c ├── include │ └── crypto_utils │ │ └── android_pubkey.h └── tests │ ├── Android.mk │ └── android_pubkey_test.cpp ├── libcutils ├── Android.mk ├── MODULE_LICENSE_APACHE2 ├── Makefile ├── NOTICE ├── 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 ├── debugger.c ├── dlmalloc_stubs.c ├── fs.c ├── fs_config.c ├── hashmap.c ├── iosched_policy.c ├── klog.c ├── load_file.c ├── multiuser.c ├── native_handle.c ├── open_memstream.c ├── partition_utils.c ├── process_name.c ├── properties.c ├── properties_nonandroid.c ├── qtaguid.c ├── record_stream.c ├── sched_policy.c ├── 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_loopback_client_unix.c ├── socket_loopback_server_unix.c ├── 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.mk │ ├── MemsetTest.cpp │ ├── PropertiesTest.cpp │ ├── sockets_test.cpp │ ├── test_str_parms.cpp │ └── trace-dev_test.cpp ├── threads.c ├── trace-dev.c ├── trace-host.c └── uevent.c ├── libdiskconfig ├── Android.mk ├── config_mbr.c ├── diskconfig.c ├── diskutils.c ├── dump_diskconfig.c ├── include │ └── diskconfig │ │ └── diskconfig.h └── write_lst.c ├── libion ├── Android.mk ├── include │ └── ion │ │ └── ion.h ├── ion.c ├── ion_test.c ├── kernel-headers │ └── linux │ │ ├── ion.h │ │ └── ion_test.h ├── original-kernel-headers │ └── linux │ │ ├── ion.h │ │ └── ion_test.h └── tests │ ├── Android.mk │ ├── allocate_test.cpp │ ├── device_test.cpp │ ├── exit_test.cpp │ ├── formerly_valid_handle_test.cpp │ ├── invalid_values_test.cpp │ ├── ion_test_fixture.cpp │ ├── ion_test_fixture.h │ └── map_test.cpp ├── liblog ├── Android.bp ├── Android.soong.mk ├── NOTICE ├── README ├── config_read.c ├── config_read.h ├── config_write.c ├── config_write.h ├── event.logtags ├── event_tag_map.c ├── fake_log_device.c ├── fake_log_device.h ├── fake_writer.c ├── log_event_list.c ├── log_event_write.c ├── log_is_loggable.c ├── log_portability.h ├── log_time.cpp ├── logd_reader.c ├── logd_writer.c ├── logger.h ├── logger_lock.c ├── logger_name.c ├── logger_read.c ├── logger_write.c ├── logprint.c ├── pmsg_reader.c ├── pmsg_writer.c ├── tests │ ├── Android.mk │ ├── benchmark.h │ ├── benchmark_main.cpp │ ├── libc_test.cpp │ ├── liblog_benchmark.cpp │ └── liblog_test.cpp └── uio.c ├── libmemtrack ├── Android.mk ├── include │ └── memtrack │ │ └── memtrack.h ├── memtrack.c └── memtrack_test.c ├── libmemunreachable ├── Allocator.cpp ├── Allocator.h ├── Android.mk ├── HeapWalker.cpp ├── HeapWalker.h ├── Leak.h ├── LeakFolding.cpp ├── LeakFolding.h ├── LeakPipe.cpp ├── LeakPipe.h ├── LineBuffer.cpp ├── LineBuffer.h ├── LinkedList.h ├── MemUnreachable.cpp ├── ProcessMappings.cpp ├── ProcessMappings.h ├── PtracerThread.cpp ├── PtracerThread.h ├── README.md ├── ScopedAlarm.h ├── ScopedDisableMalloc.h ├── ScopedPipe.h ├── ScopedSignalHandler.h ├── Semaphore.h ├── Tarjan.h ├── ThreadCapture.cpp ├── ThreadCapture.h ├── anon_vma_naming.h ├── bionic.h ├── include │ └── memunreachable │ │ └── memunreachable.h ├── log.h └── tests │ ├── Allocator_test.cpp │ ├── DisableMalloc_test.cpp │ ├── HeapWalker_test.cpp │ ├── HostMallocStub.cpp │ ├── LeakFolding_test.cpp │ ├── MemUnreachable_test.cpp │ └── ThreadCapture_test.cpp ├── libnativebridge ├── Android.mk ├── native_bridge.cc └── tests │ ├── Android.mk │ ├── Android.nativebridge-dummy.mk │ ├── CodeCacheCreate_test.cpp │ ├── CodeCacheExists_test.cpp │ ├── CodeCacheStatFail_test.cpp │ ├── CompleteFlow_test.cpp │ ├── DummyNativeBridge.cpp │ ├── DummyNativeBridge2.cpp │ ├── InvalidCharsNativeBridge_test.cpp │ ├── NativeBridge2Signal_test.cpp │ ├── NativeBridgeTest.h │ ├── NativeBridgeVersion_test.cpp │ ├── NeedsNativeBridge_test.cpp │ ├── PreInitializeNativeBridgeFail1_test.cpp │ ├── PreInitializeNativeBridgeFail2_test.cpp │ ├── PreInitializeNativeBridge_test.cpp │ ├── ReSetupNativeBridge_test.cpp │ ├── UnavailableNativeBridge_test.cpp │ └── ValidNameNativeBridge_test.cpp ├── libnativeloader ├── Android.mk ├── dlext_namespaces.h ├── include │ └── nativeloader │ │ └── native_loader.h └── native_loader.cpp ├── libnetutils ├── Android.mk ├── NOTICE ├── dhcp_utils.c ├── dhcpclient.c ├── dhcpmsg.c ├── dhcpmsg.h ├── dhcptool.c ├── ifc_utils.c ├── include │ └── netutils │ │ ├── dhcp.h │ │ └── ifc.h ├── packet.c └── packet.h ├── libpackagelistparser ├── Android.mk ├── include │ └── packagelistparser │ │ └── packagelistparser.h └── packagelistparser.c ├── libpixelflinger ├── Android.mk ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── arch-arm64 │ ├── col32cb16blend.S │ └── t32cb16blend.S ├── arch-mips │ ├── col32cb16blend.S │ └── t32cb16blend.S ├── arch-mips64 │ ├── col32cb16blend.S │ └── t32cb16blend.S ├── buffer.cpp ├── buffer.h ├── clear.cpp ├── clear.h ├── codeflinger │ ├── ARMAssembler.cpp │ ├── ARMAssembler.h │ ├── ARMAssemblerInterface.cpp │ ├── ARMAssemblerInterface.h │ ├── ARMAssemblerProxy.cpp │ ├── ARMAssemblerProxy.h │ ├── Arm64Assembler.cpp │ ├── Arm64Assembler.h │ ├── Arm64Disassembler.cpp │ ├── Arm64Disassembler.h │ ├── CodeCache.cpp │ ├── CodeCache.h │ ├── GGLAssembler.cpp │ ├── GGLAssembler.h │ ├── MIPS64Assembler.cpp │ ├── MIPS64Assembler.h │ ├── MIPSAssembler.cpp │ ├── MIPSAssembler.h │ ├── armreg.h │ ├── blending.cpp │ ├── disassem.c │ ├── disassem.h │ ├── load_store.cpp │ ├── mips64_disassem.c │ ├── mips64_disassem.h │ ├── mips_disassem.c │ ├── mips_disassem.h │ ├── mips_opcode.h │ ├── texturing.cpp │ └── tinyutils │ │ └── smartpointer.h ├── col32cb16blend.S ├── col32cb16blend_neon.S ├── fixed.cpp ├── format.cpp ├── include │ ├── pixelflinger │ │ ├── format.h │ │ └── pixelflinger.h │ └── private │ │ └── pixelflinger │ │ ├── ggl_context.h │ │ └── ggl_fixed.h ├── picker.cpp ├── picker.h ├── pixelflinger.cpp ├── raster.cpp ├── raster.h ├── rotate90CW_4x4_16v6.S ├── scanline.cpp ├── scanline.h ├── t32cb16blend.S ├── tests │ ├── Android.mk │ ├── arch-arm64 │ │ ├── Android.mk │ │ ├── assembler │ │ │ ├── Android.mk │ │ │ ├── arm64_assembler_test.cpp │ │ │ └── asm_test_jacket.S │ │ ├── col32cb16blend │ │ │ ├── Android.mk │ │ │ └── col32cb16blend_test.c │ │ ├── disassembler │ │ │ ├── Android.mk │ │ │ └── arm64_diassembler_test.cpp │ │ └── t32cb16blend │ │ │ ├── Android.mk │ │ │ └── t32cb16blend_test.c │ ├── arch-mips │ │ ├── Android.mk │ │ ├── col32cb16blend │ │ │ ├── Android.mk │ │ │ └── col32cb16blend_test.c │ │ └── t32cb16blend │ │ │ ├── Android.mk │ │ │ └── t32cb16blend_test.c │ ├── arch-mips64 │ │ ├── Android.mk │ │ ├── assembler │ │ │ ├── Android.mk │ │ │ ├── asm_mips_test_jacket.S │ │ │ └── mips64_assembler_test.cpp │ │ ├── col32cb16blend │ │ │ ├── Android.mk │ │ │ └── col32cb16blend_test.c │ │ └── disassembler │ │ │ ├── Android.mk │ │ │ └── mips64_disassembler_test.cpp │ ├── codegen │ │ ├── Android.mk │ │ └── codegen.cpp │ └── gglmul │ │ ├── Android.mk │ │ └── gglmul_test.cpp ├── trap.cpp └── trap.h ├── libprocessgroup ├── Android.mk ├── cleanup.cpp ├── include │ └── processgroup │ │ └── processgroup.h ├── processgroup.cpp └── processgroup_priv.h ├── libsparse ├── Android.mk ├── append2simg.c ├── backed_block.c ├── backed_block.h ├── defs.h ├── img2simg.c ├── include │ └── sparse │ │ └── sparse.h ├── output_file.c ├── output_file.h ├── simg2img.c ├── simg2simg.c ├── simg_dump.py ├── sparse.c ├── sparse_crc32.c ├── sparse_crc32.h ├── sparse_defs.h ├── sparse_err.c ├── sparse_file.h ├── sparse_format.h └── sparse_read.c ├── libsuspend ├── Android.mk ├── autosuspend.c ├── autosuspend_autosleep.c ├── autosuspend_earlysuspend.c ├── autosuspend_ops.h ├── autosuspend_wakeup_count.c └── include │ └── suspend │ └── autosuspend.h ├── libsync ├── Android.mk ├── include │ └── sync │ │ └── sync.h ├── sw_sync.h ├── sync.c ├── sync_test.c └── tests │ ├── Android.mk │ └── sync_test.cpp ├── libsysutils ├── Android.mk ├── EventLogTags.logtags └── src │ ├── FrameworkClient.cpp │ ├── FrameworkCommand.cpp │ ├── FrameworkListener.cpp │ ├── NetlinkEvent.cpp │ ├── NetlinkListener.cpp │ ├── ServiceManager.cpp │ ├── SocketClient.cpp │ └── SocketListener.cpp ├── libusbhost ├── Android.mk └── usbhost.c ├── libutils ├── Android.mk ├── BlobCache.cpp ├── CallStack.cpp ├── CleanSpec.mk ├── FileMap.cpp ├── JenkinsHash.cpp ├── LinearTransform.cpp ├── Log.cpp ├── Looper.cpp ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── NativeHandle.cpp ├── Printer.cpp ├── ProcessCallStack.cpp ├── PropertyMap.cpp ├── README ├── RefBase.cpp ├── SharedBuffer.cpp ├── SharedBuffer.h ├── SharedBufferTest.cpp ├── Static.cpp ├── StopWatch.cpp ├── String16.cpp ├── String8.cpp ├── SystemClock.cpp ├── Threads.cpp ├── Timers.cpp ├── Tokenizer.cpp ├── Trace.cpp ├── Unicode.cpp ├── VectorImpl.cpp ├── misc.cpp ├── primes.py └── tests │ ├── Android.mk │ ├── BitSet_test.cpp │ ├── BlobCache_test.cpp │ ├── Looper_test.cpp │ ├── LruCache_test.cpp │ ├── String8_test.cpp │ ├── StrongPointer_test.cpp │ ├── SystemClock_test.cpp │ ├── TestHelpers.h │ ├── Unicode_test.cpp │ └── Vector_test.cpp ├── libziparchive ├── Android.mk ├── entry_name_utils-inl.h ├── entry_name_utils_test.cc ├── testdata │ ├── bad_crc.zip │ ├── declaredlength.zip │ ├── large.zip │ └── valid.zip ├── zip_archive.cc ├── zip_archive_common.h ├── zip_archive_private.h ├── zip_archive_stream_entry.cc ├── zip_archive_test.cc ├── zip_writer.cc └── zip_writer_test.cc ├── lmkd ├── Android.mk ├── lmkd.c └── lmkd.rc ├── logcat ├── Android.mk ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── event.logtags ├── logcat.cpp ├── logcatd.rc ├── logpersist └── tests │ ├── Android.mk │ ├── logcat_benchmark.cpp │ └── logcat_test.cpp ├── logd ├── Android.mk ├── CommandListener.cpp ├── CommandListener.h ├── FlushCommand.cpp ├── FlushCommand.h ├── LogAudit.cpp ├── LogAudit.h ├── LogBuffer.cpp ├── LogBuffer.h ├── LogBufferElement.cpp ├── LogBufferElement.h ├── LogCommand.cpp ├── LogCommand.h ├── LogKlog.cpp ├── LogKlog.h ├── LogListener.cpp ├── LogListener.h ├── LogReader.cpp ├── LogReader.h ├── LogStatistics.cpp ├── LogStatistics.h ├── LogTimes.cpp ├── LogTimes.h ├── LogUtils.h ├── LogWhiteBlackList.cpp ├── LogWhiteBlackList.h ├── README.auditd ├── README.property ├── event.logtags ├── libaudit.c ├── libaudit.h ├── logd.rc ├── main.cpp └── tests │ ├── Android.mk │ └── logd_test.cpp ├── logwrapper ├── Android.mk ├── NOTICE ├── include │ └── logwrap │ │ └── logwrap.h ├── logwrap.c └── logwrapper.c ├── metricsd ├── .clang-format ├── Android.mk ├── OWNERS ├── README.md ├── WATCHLISTS ├── aidl │ └── android │ │ └── brillo │ │ └── metrics │ │ ├── IMetricsCollectorService.aidl │ │ └── IMetricsd.aidl ├── c_metrics_library.cc ├── collectors │ ├── averaged_statistics_collector.cc │ ├── averaged_statistics_collector.h │ ├── averaged_statistics_collector_test.cc │ ├── cpu_usage_collector.cc │ ├── cpu_usage_collector.h │ ├── cpu_usage_collector_test.cc │ ├── disk_usage_collector.cc │ └── disk_usage_collector.h ├── constants.h ├── etc │ └── weaved │ │ └── traits │ │ └── metrics.json ├── include │ └── metrics │ │ ├── c_metrics_library.h │ │ ├── metrics_collector_service_client.h │ │ ├── metrics_library.h │ │ ├── metrics_library_mock.h │ │ ├── timer.h │ │ └── timer_mock.h ├── libmetrics-369476.gyp ├── libmetrics.gypi ├── libmetrics.pc.in ├── metrics.gyp ├── metrics_client.cc ├── metrics_collector.cc ├── metrics_collector.h ├── metrics_collector.rc ├── metrics_collector_main.cc ├── metrics_collector_service_client.cc ├── metrics_collector_service_impl.cc ├── metrics_collector_service_impl.h ├── metrics_collector_test.cc ├── metrics_library.cc ├── metrics_library_test.cc ├── metricsd.rc ├── metricsd_main.cc ├── persistent_integer.cc ├── persistent_integer.h ├── persistent_integer_mock.h ├── persistent_integer_test.cc ├── timer.cc ├── timer_test.cc └── uploader │ ├── bn_metricsd_impl.cc │ ├── bn_metricsd_impl.h │ ├── crash_counters.cc │ ├── crash_counters.h │ ├── metrics_hashes.cc │ ├── metrics_hashes.h │ ├── metrics_hashes_unittest.cc │ ├── metrics_log.cc │ ├── metrics_log.h │ ├── metrics_log_base.cc │ ├── metrics_log_base.h │ ├── metrics_log_base_unittest.cc │ ├── metricsd_service_runner.cc │ ├── metricsd_service_runner.h │ ├── mock │ ├── mock_system_profile_setter.h │ ├── sender_mock.cc │ └── sender_mock.h │ ├── proto │ ├── README │ ├── chrome_user_metrics_extension.proto │ ├── histogram_event.proto │ ├── system_profile.proto │ └── user_action_event.proto │ ├── sender.h │ ├── sender_http.cc │ ├── sender_http.h │ ├── system_profile_cache.cc │ ├── system_profile_cache.h │ ├── system_profile_setter.h │ ├── upload_service.cc │ ├── upload_service.h │ └── upload_service_test.cc ├── mkbootimg ├── Android.mk ├── bootimg.h └── mkbootimg ├── reboot ├── Android.mk └── reboot.c ├── rootdir ├── Android.mk ├── asan.options ├── etc │ ├── hosts │ ├── public.libraries.android.txt │ └── public.libraries.wear.txt ├── init-debug.rc ├── init.environ.rc.in ├── init.rc ├── init.usb.configfs.rc ├── init.usb.rc ├── init.zygote32.rc ├── init.zygote32_64.rc ├── init.zygote64.rc ├── init.zygote64_32.rc └── ueventd.rc ├── run-as ├── Android.mk ├── NOTICE ├── package.c ├── package.h └── run-as.c ├── sdcard ├── Android.mk └── sdcard.c ├── toolbox ├── Android.mk ├── MODULE_LICENSE_BSD ├── NOTICE ├── bsd-compatibility.h ├── generate-input.h-labels.py ├── getevent.c ├── newfs_msdos.c ├── r.c ├── sendevent.c ├── toolbox.c └── upstream-netbsd │ ├── bin │ └── dd │ │ ├── args.c │ │ ├── conv.c │ │ ├── dd.c │ │ ├── dd.h │ │ ├── dd_hostops.c │ │ ├── extern.h │ │ ├── misc.c │ │ └── position.c │ ├── include │ ├── namespace.h │ ├── sys │ │ ├── extattr.h │ │ └── mtio.h │ └── util.h │ ├── lib │ ├── libc │ │ ├── gen │ │ │ ├── getbsize.c │ │ │ └── humanize_number.c │ │ ├── stdlib │ │ │ └── strsuftoll.c │ │ └── string │ │ │ └── swab.c │ └── libutil │ │ └── raise_default_signal.c │ └── usr.bin │ └── grep │ ├── fastgrep.c │ ├── file.c │ ├── grep.c │ ├── grep.h │ ├── queue.c │ └── util.c ├── trusty ├── gatekeeper │ ├── Android.mk │ ├── gatekeeper_ipc.h │ ├── module.cpp │ ├── trusty_gatekeeper.cpp │ ├── trusty_gatekeeper.h │ ├── trusty_gatekeeper_ipc.c │ └── trusty_gatekeeper_ipc.h ├── keymaster │ ├── Android.mk │ ├── Makefile │ ├── keymaster_ipc.h │ ├── module.cpp │ ├── trusty_keymaster_device.cpp │ ├── trusty_keymaster_device.h │ ├── trusty_keymaster_device_test.cpp │ ├── trusty_keymaster_ipc.c │ ├── trusty_keymaster_ipc.h │ └── trusty_keymaster_main.cpp ├── libtrusty │ ├── Android.mk │ ├── include │ │ └── trusty │ │ │ └── tipc.h │ ├── tipc-test │ │ ├── Android.mk │ │ └── tipc_test.c │ ├── tipc_ioctl.h │ └── trusty.c ├── nvram │ ├── Android.mk │ ├── module.c │ └── trusty_nvram_implementation.cpp ├── storage │ ├── interface │ │ ├── Android.mk │ │ └── include │ │ │ └── trusty │ │ │ └── interface │ │ │ └── storage.h │ ├── lib │ │ ├── Android.mk │ │ ├── include │ │ │ └── trusty │ │ │ │ └── lib │ │ │ │ └── storage.h │ │ └── storage.c │ ├── proxy │ │ ├── Android.mk │ │ ├── ipc.c │ │ ├── ipc.h │ │ ├── log.h │ │ ├── proxy.c │ │ ├── rpmb.c │ │ ├── rpmb.h │ │ ├── storage.c │ │ └── storage.h │ └── tests │ │ ├── Android.mk │ │ └── main.cpp ├── trusty-base.mk └── trusty-storage.mk └── tzdatacheck ├── Android.mk └── tzdatacheck.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/Android.mk -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/NOTICE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/Readme.md -------------------------------------------------------------------------------- /adb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb.sh -------------------------------------------------------------------------------- /adb/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/.clang-format -------------------------------------------------------------------------------- /adb/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/Android.mk -------------------------------------------------------------------------------- /adb/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/CPPLINT.cfg -------------------------------------------------------------------------------- /adb/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/Makefile -------------------------------------------------------------------------------- /adb/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/NOTICE -------------------------------------------------------------------------------- /adb/OVERVIEW.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/OVERVIEW.TXT -------------------------------------------------------------------------------- /adb/SERVICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/SERVICES.TXT -------------------------------------------------------------------------------- /adb/SYNC.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/SYNC.TXT -------------------------------------------------------------------------------- /adb/adb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb.cpp -------------------------------------------------------------------------------- /adb/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb.h -------------------------------------------------------------------------------- /adb/adb_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_auth.cpp -------------------------------------------------------------------------------- /adb/adb_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_auth.h -------------------------------------------------------------------------------- /adb/adb_auth_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_auth_client.cpp -------------------------------------------------------------------------------- /adb/adb_auth_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_auth_host.cpp -------------------------------------------------------------------------------- /adb/adb_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_client.cpp -------------------------------------------------------------------------------- /adb/adb_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_client.h -------------------------------------------------------------------------------- /adb/adb_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_io.cpp -------------------------------------------------------------------------------- /adb/adb_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_io.h -------------------------------------------------------------------------------- /adb/adb_io_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_io_test.cpp -------------------------------------------------------------------------------- /adb/adb_listeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_listeners.cpp -------------------------------------------------------------------------------- /adb/adb_listeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_listeners.h -------------------------------------------------------------------------------- /adb/adb_listeners_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_listeners_test.cpp -------------------------------------------------------------------------------- /adb/adb_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_trace.cpp -------------------------------------------------------------------------------- /adb/adb_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_trace.h -------------------------------------------------------------------------------- /adb/adb_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_utils.cpp -------------------------------------------------------------------------------- /adb/adb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_utils.h -------------------------------------------------------------------------------- /adb/adb_utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/adb_utils_test.cpp -------------------------------------------------------------------------------- /adb/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/client/main.cpp -------------------------------------------------------------------------------- /adb/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/commandline.cpp -------------------------------------------------------------------------------- /adb/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/console.cpp -------------------------------------------------------------------------------- /adb/daemon/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/daemon/main.cpp -------------------------------------------------------------------------------- /adb/diagnose_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/diagnose_usb.cpp -------------------------------------------------------------------------------- /adb/diagnose_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/diagnose_usb.h -------------------------------------------------------------------------------- /adb/fdevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/fdevent.cpp -------------------------------------------------------------------------------- /adb/fdevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/fdevent.h -------------------------------------------------------------------------------- /adb/fdevent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/fdevent_test.cpp -------------------------------------------------------------------------------- /adb/fdevent_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/fdevent_test.h -------------------------------------------------------------------------------- /adb/file_sync_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/file_sync_client.cpp -------------------------------------------------------------------------------- /adb/file_sync_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/file_sync_service.cpp -------------------------------------------------------------------------------- /adb/file_sync_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/file_sync_service.h -------------------------------------------------------------------------------- /adb/framebuffer_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/framebuffer_service.cpp -------------------------------------------------------------------------------- /adb/get_my_path_darwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/get_my_path_darwin.cpp -------------------------------------------------------------------------------- /adb/get_my_path_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/get_my_path_linux.cpp -------------------------------------------------------------------------------- /adb/jdwp_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/jdwp_service.cpp -------------------------------------------------------------------------------- /adb/line_printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/line_printer.cpp -------------------------------------------------------------------------------- /adb/line_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/line_printer.h -------------------------------------------------------------------------------- /adb/log-non-android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/log-non-android.cpp -------------------------------------------------------------------------------- /adb/mutex_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/mutex_list.h -------------------------------------------------------------------------------- /adb/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/protocol.txt -------------------------------------------------------------------------------- /adb/remount_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/remount_service.cpp -------------------------------------------------------------------------------- /adb/remount_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/remount_service.h -------------------------------------------------------------------------------- /adb/security_log_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/security_log_tags.h -------------------------------------------------------------------------------- /adb/services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/services.cpp -------------------------------------------------------------------------------- /adb/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/services.h -------------------------------------------------------------------------------- /adb/shell_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/shell_service.cpp -------------------------------------------------------------------------------- /adb/shell_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/shell_service.h -------------------------------------------------------------------------------- /adb/shell_service_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/shell_service_protocol.cpp -------------------------------------------------------------------------------- /adb/shell_service_protocol_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/shell_service_protocol_test.cpp -------------------------------------------------------------------------------- /adb/shell_service_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/shell_service_test.cpp -------------------------------------------------------------------------------- /adb/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/socket.h -------------------------------------------------------------------------------- /adb/socket_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/socket_test.cpp -------------------------------------------------------------------------------- /adb/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/sockets.cpp -------------------------------------------------------------------------------- /adb/sockets.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/sockets.dia -------------------------------------------------------------------------------- /adb/sysdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/sysdeps.h -------------------------------------------------------------------------------- /adb/sysdeps/condition_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/sysdeps/condition_variable.h -------------------------------------------------------------------------------- /adb/sysdeps/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/sysdeps/mutex.h -------------------------------------------------------------------------------- /adb/sysdeps_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/sysdeps_test.cpp -------------------------------------------------------------------------------- /adb/sysdeps_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/sysdeps_unix.cpp -------------------------------------------------------------------------------- /adb/sysdeps_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/sysdeps_win32.cpp -------------------------------------------------------------------------------- /adb/sysdeps_win32_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/sysdeps_win32_test.cpp -------------------------------------------------------------------------------- /adb/test_adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/test_adb.py -------------------------------------------------------------------------------- /adb/test_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/test_device.py -------------------------------------------------------------------------------- /adb/transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/transport.cpp -------------------------------------------------------------------------------- /adb/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/transport.h -------------------------------------------------------------------------------- /adb/transport_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/transport_local.cpp -------------------------------------------------------------------------------- /adb/transport_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/transport_test.cpp -------------------------------------------------------------------------------- /adb/transport_usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/transport_usb.cpp -------------------------------------------------------------------------------- /adb/usb_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/usb_linux.cpp -------------------------------------------------------------------------------- /adb/usb_linux_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/usb_linux_client.cpp -------------------------------------------------------------------------------- /adb/usb_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/usb_osx.cpp -------------------------------------------------------------------------------- /adb/usb_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/usb_windows.cpp -------------------------------------------------------------------------------- /adb/xdg-adbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adb/xdg-adbd.c -------------------------------------------------------------------------------- /adbd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adbd.service -------------------------------------------------------------------------------- /adf/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adf/Android.mk -------------------------------------------------------------------------------- /adf/libadf/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adf/libadf/Android.mk -------------------------------------------------------------------------------- /adf/libadf/adf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adf/libadf/adf.c -------------------------------------------------------------------------------- /adf/libadf/include/adf/adf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adf/libadf/include/adf/adf.h -------------------------------------------------------------------------------- /adf/libadf/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adf/libadf/tests/Android.mk -------------------------------------------------------------------------------- /adf/libadf/tests/adf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adf/libadf/tests/adf_test.cpp -------------------------------------------------------------------------------- /adf/libadfhwc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adf/libadfhwc/Android.mk -------------------------------------------------------------------------------- /adf/libadfhwc/adfhwc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adf/libadfhwc/adfhwc.cpp -------------------------------------------------------------------------------- /adf/libadfhwc/include/adfhwc/adfhwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/adf/libadfhwc/include/adfhwc/adfhwc.h -------------------------------------------------------------------------------- /base/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/.clang-format -------------------------------------------------------------------------------- /base/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/Android.mk -------------------------------------------------------------------------------- /base/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/CPPLINT.cfg -------------------------------------------------------------------------------- /base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/Makefile -------------------------------------------------------------------------------- /base/errors_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/errors_test.cpp -------------------------------------------------------------------------------- /base/errors_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/errors_unix.cpp -------------------------------------------------------------------------------- /base/errors_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/errors_windows.cpp -------------------------------------------------------------------------------- /base/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/file.cpp -------------------------------------------------------------------------------- /base/file_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/file_test.cpp -------------------------------------------------------------------------------- /base/include/android-base/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/include/android-base/errors.h -------------------------------------------------------------------------------- /base/include/android-base/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/include/android-base/file.h -------------------------------------------------------------------------------- /base/include/android-base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/include/android-base/logging.h -------------------------------------------------------------------------------- /base/include/android-base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/include/android-base/macros.h -------------------------------------------------------------------------------- /base/include/android-base/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/include/android-base/memory.h -------------------------------------------------------------------------------- /base/include/android-base/parseint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/include/android-base/parseint.h -------------------------------------------------------------------------------- /base/include/android-base/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/include/android-base/strings.h -------------------------------------------------------------------------------- /base/include/android-base/unique_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/include/android-base/unique_fd.h -------------------------------------------------------------------------------- /base/include/android-base/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/include/android-base/utf8.h -------------------------------------------------------------------------------- /base/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/logging.cpp -------------------------------------------------------------------------------- /base/logging_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/logging_test.cpp -------------------------------------------------------------------------------- /base/parseint_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/parseint_test.cpp -------------------------------------------------------------------------------- /base/parsenetaddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/parsenetaddress.cpp -------------------------------------------------------------------------------- /base/parsenetaddress_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/parsenetaddress_test.cpp -------------------------------------------------------------------------------- /base/stringprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/stringprintf.cpp -------------------------------------------------------------------------------- /base/stringprintf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/stringprintf_test.cpp -------------------------------------------------------------------------------- /base/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/strings.cpp -------------------------------------------------------------------------------- /base/strings_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/strings_test.cpp -------------------------------------------------------------------------------- /base/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/test_main.cpp -------------------------------------------------------------------------------- /base/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/test_utils.cpp -------------------------------------------------------------------------------- /base/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/utf8.cpp -------------------------------------------------------------------------------- /base/utf8_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/base/utf8_test.cpp -------------------------------------------------------------------------------- /bootstat/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/Android.mk -------------------------------------------------------------------------------- /bootstat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/README.md -------------------------------------------------------------------------------- /bootstat/boot_event_record_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/boot_event_record_store.cpp -------------------------------------------------------------------------------- /bootstat/boot_event_record_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/boot_event_record_store.h -------------------------------------------------------------------------------- /bootstat/bootstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/bootstat.cpp -------------------------------------------------------------------------------- /bootstat/bootstat.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/bootstat.rc -------------------------------------------------------------------------------- /bootstat/event_log_list_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/event_log_list_builder.cpp -------------------------------------------------------------------------------- /bootstat/event_log_list_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/event_log_list_builder.h -------------------------------------------------------------------------------- /bootstat/histogram_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/histogram_logger.cpp -------------------------------------------------------------------------------- /bootstat/histogram_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/histogram_logger.h -------------------------------------------------------------------------------- /bootstat/testrunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/testrunner.cpp -------------------------------------------------------------------------------- /bootstat/uptime_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/uptime_parser.cpp -------------------------------------------------------------------------------- /bootstat/uptime_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/bootstat/uptime_parser.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/configure -------------------------------------------------------------------------------- /cpio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/cpio/Android.mk -------------------------------------------------------------------------------- /cpio/mkbootfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/cpio/mkbootfs.c -------------------------------------------------------------------------------- /crash_reporter/.project_alias: -------------------------------------------------------------------------------- 1 | crash 2 | -------------------------------------------------------------------------------- /crash_reporter/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/Android.mk -------------------------------------------------------------------------------- /crash_reporter/OWNERS: -------------------------------------------------------------------------------- 1 | set noparent 2 | vapier@chromium.org 3 | -------------------------------------------------------------------------------- /crash_reporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/README.md -------------------------------------------------------------------------------- /crash_reporter/TEST_WARNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/TEST_WARNING -------------------------------------------------------------------------------- /crash_reporter/crash_collector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/crash_collector.cc -------------------------------------------------------------------------------- /crash_reporter/crash_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/crash_collector.h -------------------------------------------------------------------------------- /crash_reporter/crash_collector_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/crash_collector_test.h -------------------------------------------------------------------------------- /crash_reporter/crash_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/crash_reporter.cc -------------------------------------------------------------------------------- /crash_reporter/crash_reporter.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/crash_reporter.rc -------------------------------------------------------------------------------- /crash_reporter/crash_sender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/crash_sender -------------------------------------------------------------------------------- /crash_reporter/init/crash-sender.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/init/crash-sender.conf -------------------------------------------------------------------------------- /crash_reporter/kernel_collector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/kernel_collector.cc -------------------------------------------------------------------------------- /crash_reporter/kernel_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/kernel_collector.h -------------------------------------------------------------------------------- /crash_reporter/list_proxies.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/list_proxies.cc -------------------------------------------------------------------------------- /crash_reporter/periodic_scheduler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/periodic_scheduler -------------------------------------------------------------------------------- /crash_reporter/testrunner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/testrunner.cc -------------------------------------------------------------------------------- /crash_reporter/udev_collector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/udev_collector.cc -------------------------------------------------------------------------------- /crash_reporter/udev_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/udev_collector.h -------------------------------------------------------------------------------- /crash_reporter/udev_collector_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/udev_collector_test.cc -------------------------------------------------------------------------------- /crash_reporter/user_collector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/user_collector.cc -------------------------------------------------------------------------------- /crash_reporter/user_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/user_collector.h -------------------------------------------------------------------------------- /crash_reporter/user_collector_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/user_collector_test.cc -------------------------------------------------------------------------------- /crash_reporter/warn_collector.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/warn_collector.l -------------------------------------------------------------------------------- /crash_reporter/warn_collector_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/warn_collector_test.c -------------------------------------------------------------------------------- /crash_reporter/warn_collector_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/crash_reporter/warn_collector_test.sh -------------------------------------------------------------------------------- /debuggerd/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/.clang-format -------------------------------------------------------------------------------- /debuggerd/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/Android.bp -------------------------------------------------------------------------------- /debuggerd/Android.soong.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/Android.soong.mk -------------------------------------------------------------------------------- /debuggerd/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debuggerd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/NOTICE -------------------------------------------------------------------------------- /debuggerd/arm/crashglue.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/arm/crashglue.S -------------------------------------------------------------------------------- /debuggerd/arm/machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/arm/machine.cpp -------------------------------------------------------------------------------- /debuggerd/arm64/crashglue.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/arm64/crashglue.S -------------------------------------------------------------------------------- /debuggerd/arm64/machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/arm64/machine.cpp -------------------------------------------------------------------------------- /debuggerd/backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/backtrace.cpp -------------------------------------------------------------------------------- /debuggerd/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/backtrace.h -------------------------------------------------------------------------------- /debuggerd/client/debuggerd_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/client/debuggerd_client.cpp -------------------------------------------------------------------------------- /debuggerd/crasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/crasher.cpp -------------------------------------------------------------------------------- /debuggerd/debuggerd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/debuggerd.cpp -------------------------------------------------------------------------------- /debuggerd/debuggerd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/debuggerd.rc -------------------------------------------------------------------------------- /debuggerd/debuggerd64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/debuggerd64.rc -------------------------------------------------------------------------------- /debuggerd/elf_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/elf_utils.cpp -------------------------------------------------------------------------------- /debuggerd/elf_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/elf_utils.h -------------------------------------------------------------------------------- /debuggerd/getevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/getevent.cpp -------------------------------------------------------------------------------- /debuggerd/getevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/getevent.h -------------------------------------------------------------------------------- /debuggerd/include/debuggerd/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/include/debuggerd/client.h -------------------------------------------------------------------------------- /debuggerd/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/machine.h -------------------------------------------------------------------------------- /debuggerd/mips/crashglue.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/mips/crashglue.S -------------------------------------------------------------------------------- /debuggerd/mips/machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/mips/machine.cpp -------------------------------------------------------------------------------- /debuggerd/mips64/crashglue.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/mips64/crashglue.S -------------------------------------------------------------------------------- /debuggerd/mips64/machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/mips64/machine.cpp -------------------------------------------------------------------------------- /debuggerd/signal_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/signal_sender.cpp -------------------------------------------------------------------------------- /debuggerd/signal_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/signal_sender.h -------------------------------------------------------------------------------- /debuggerd/test/BacktraceMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/BacktraceMock.h -------------------------------------------------------------------------------- /debuggerd/test/dump_memory_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/dump_memory_test.cpp -------------------------------------------------------------------------------- /debuggerd/test/elf_fake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/elf_fake.cpp -------------------------------------------------------------------------------- /debuggerd/test/elf_fake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/elf_fake.h -------------------------------------------------------------------------------- /debuggerd/test/host_signal_fixup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/host_signal_fixup.h -------------------------------------------------------------------------------- /debuggerd/test/log_fake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/log_fake.cpp -------------------------------------------------------------------------------- /debuggerd/test/log_fake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/log_fake.h -------------------------------------------------------------------------------- /debuggerd/test/property_fake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/property_fake.cpp -------------------------------------------------------------------------------- /debuggerd/test/ptrace_fake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/ptrace_fake.cpp -------------------------------------------------------------------------------- /debuggerd/test/ptrace_fake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/ptrace_fake.h -------------------------------------------------------------------------------- /debuggerd/test/selinux/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/selinux/android.h -------------------------------------------------------------------------------- /debuggerd/test/selinux_fake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/selinux_fake.cpp -------------------------------------------------------------------------------- /debuggerd/test/tombstone_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/test/tombstone_test.cpp -------------------------------------------------------------------------------- /debuggerd/tombstone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/tombstone.cpp -------------------------------------------------------------------------------- /debuggerd/tombstone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/tombstone.h -------------------------------------------------------------------------------- /debuggerd/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/utility.cpp -------------------------------------------------------------------------------- /debuggerd/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/utility.h -------------------------------------------------------------------------------- /debuggerd/x86/crashglue.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/x86/crashglue.S -------------------------------------------------------------------------------- /debuggerd/x86/machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/x86/machine.cpp -------------------------------------------------------------------------------- /debuggerd/x86_64/crashglue.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/x86_64/crashglue.S -------------------------------------------------------------------------------- /debuggerd/x86_64/machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/debuggerd/x86_64/machine.cpp -------------------------------------------------------------------------------- /fastboot/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/.clang-format -------------------------------------------------------------------------------- /fastboot/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/Android.mk -------------------------------------------------------------------------------- /fastboot/bootimg_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/bootimg_utils.cpp -------------------------------------------------------------------------------- /fastboot/bootimg_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/bootimg_utils.h -------------------------------------------------------------------------------- /fastboot/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/engine.cpp -------------------------------------------------------------------------------- /fastboot/fastboot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/fastboot.cpp -------------------------------------------------------------------------------- /fastboot/fastboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/fastboot.h -------------------------------------------------------------------------------- /fastboot/fastboot_protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/fastboot_protocol.txt -------------------------------------------------------------------------------- /fastboot/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/fs.cpp -------------------------------------------------------------------------------- /fastboot/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/fs.h -------------------------------------------------------------------------------- /fastboot/protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/protocol.cpp -------------------------------------------------------------------------------- /fastboot/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/socket.cpp -------------------------------------------------------------------------------- /fastboot/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/socket.h -------------------------------------------------------------------------------- /fastboot/socket_mock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/socket_mock.cpp -------------------------------------------------------------------------------- /fastboot/socket_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/socket_mock.h -------------------------------------------------------------------------------- /fastboot/socket_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/socket_test.cpp -------------------------------------------------------------------------------- /fastboot/tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/tcp.cpp -------------------------------------------------------------------------------- /fastboot/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/tcp.h -------------------------------------------------------------------------------- /fastboot/tcp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/tcp_test.cpp -------------------------------------------------------------------------------- /fastboot/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/transport.h -------------------------------------------------------------------------------- /fastboot/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/udp.cpp -------------------------------------------------------------------------------- /fastboot/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/udp.h -------------------------------------------------------------------------------- /fastboot/udp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/udp_test.cpp -------------------------------------------------------------------------------- /fastboot/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/usb.h -------------------------------------------------------------------------------- /fastboot/usb_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/usb_linux.cpp -------------------------------------------------------------------------------- /fastboot/usb_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/usb_osx.cpp -------------------------------------------------------------------------------- /fastboot/usb_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/usb_windows.cpp -------------------------------------------------------------------------------- /fastboot/usbtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/usbtest.cpp -------------------------------------------------------------------------------- /fastboot/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/util.cpp -------------------------------------------------------------------------------- /fastboot/util_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/util_linux.cpp -------------------------------------------------------------------------------- /fastboot/util_osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/util_osx.cpp -------------------------------------------------------------------------------- /fastboot/util_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fastboot/util_windows.cpp -------------------------------------------------------------------------------- /fingerprintd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fingerprintd/Android.mk -------------------------------------------------------------------------------- /fingerprintd/FingerprintDaemonProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fingerprintd/FingerprintDaemonProxy.h -------------------------------------------------------------------------------- /fingerprintd/IFingerprintDaemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fingerprintd/IFingerprintDaemon.cpp -------------------------------------------------------------------------------- /fingerprintd/IFingerprintDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fingerprintd/IFingerprintDaemon.h -------------------------------------------------------------------------------- /fingerprintd/fingerprintd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fingerprintd/fingerprintd.cpp -------------------------------------------------------------------------------- /fs_mgr/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/Android.mk -------------------------------------------------------------------------------- /fs_mgr/fs_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/fs_mgr.c -------------------------------------------------------------------------------- /fs_mgr/fs_mgr_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/fs_mgr_format.c -------------------------------------------------------------------------------- /fs_mgr/fs_mgr_fstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/fs_mgr_fstab.c -------------------------------------------------------------------------------- /fs_mgr/fs_mgr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/fs_mgr_main.c -------------------------------------------------------------------------------- /fs_mgr/fs_mgr_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/fs_mgr_priv.h -------------------------------------------------------------------------------- /fs_mgr/fs_mgr_priv_verity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/fs_mgr_priv_verity.h -------------------------------------------------------------------------------- /fs_mgr/fs_mgr_slotselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/fs_mgr_slotselect.c -------------------------------------------------------------------------------- /fs_mgr/fs_mgr_verity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/fs_mgr_verity.cpp -------------------------------------------------------------------------------- /fs_mgr/include/fs_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/fs_mgr/include/fs_mgr.h -------------------------------------------------------------------------------- /gatekeeperd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/Android.mk -------------------------------------------------------------------------------- /gatekeeperd/IGateKeeperService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/IGateKeeperService.cpp -------------------------------------------------------------------------------- /gatekeeperd/IGateKeeperService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/IGateKeeperService.h -------------------------------------------------------------------------------- /gatekeeperd/IUserManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/IUserManager.cpp -------------------------------------------------------------------------------- /gatekeeperd/IUserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/IUserManager.h -------------------------------------------------------------------------------- /gatekeeperd/SoftGateKeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/SoftGateKeeper.h -------------------------------------------------------------------------------- /gatekeeperd/SoftGateKeeperDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/SoftGateKeeperDevice.cpp -------------------------------------------------------------------------------- /gatekeeperd/SoftGateKeeperDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/SoftGateKeeperDevice.h -------------------------------------------------------------------------------- /gatekeeperd/gatekeeperd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/gatekeeperd.cpp -------------------------------------------------------------------------------- /gatekeeperd/gatekeeperd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/gatekeeperd.rc -------------------------------------------------------------------------------- /gatekeeperd/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/tests/Android.mk -------------------------------------------------------------------------------- /gatekeeperd/tests/gatekeeper_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/gatekeeperd/tests/gatekeeper_test.cpp -------------------------------------------------------------------------------- /healthd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/Android.mk -------------------------------------------------------------------------------- /healthd/BatteryMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/BatteryMonitor.cpp -------------------------------------------------------------------------------- /healthd/BatteryPropertiesRegistrar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/BatteryPropertiesRegistrar.h -------------------------------------------------------------------------------- /healthd/healthd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/healthd.cpp -------------------------------------------------------------------------------- /healthd/healthd_board_default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/healthd_board_default.cpp -------------------------------------------------------------------------------- /healthd/healthd_mode_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/healthd_mode_android.cpp -------------------------------------------------------------------------------- /healthd/healthd_mode_charger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/healthd_mode_charger.cpp -------------------------------------------------------------------------------- /healthd/images/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/images/battery_fail.png -------------------------------------------------------------------------------- /healthd/images/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/images/battery_scale.png -------------------------------------------------------------------------------- /healthd/include/healthd/healthd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/healthd/include/healthd/healthd.h -------------------------------------------------------------------------------- /include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include.mk -------------------------------------------------------------------------------- /include/android/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/android/log.h -------------------------------------------------------------------------------- /include/backtrace/Backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/backtrace/Backtrace.h -------------------------------------------------------------------------------- /include/backtrace/BacktraceMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/backtrace/BacktraceMap.h -------------------------------------------------------------------------------- /include/cutils/android_reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/android_reboot.h -------------------------------------------------------------------------------- /include/cutils/ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/ashmem.h -------------------------------------------------------------------------------- /include/cutils/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/atomic.h -------------------------------------------------------------------------------- /include/cutils/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/bitops.h -------------------------------------------------------------------------------- /include/cutils/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/compiler.h -------------------------------------------------------------------------------- /include/cutils/config_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/config_utils.h -------------------------------------------------------------------------------- /include/cutils/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/debugger.h -------------------------------------------------------------------------------- /include/cutils/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/fs.h -------------------------------------------------------------------------------- /include/cutils/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/hashmap.h -------------------------------------------------------------------------------- /include/cutils/iosched_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/iosched_policy.h -------------------------------------------------------------------------------- /include/cutils/jstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/jstring.h -------------------------------------------------------------------------------- /include/cutils/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/klog.h -------------------------------------------------------------------------------- /include/cutils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/list.h -------------------------------------------------------------------------------- /include/cutils/log.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/cutils/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/memory.h -------------------------------------------------------------------------------- /include/cutils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/misc.h -------------------------------------------------------------------------------- /include/cutils/multiuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/multiuser.h -------------------------------------------------------------------------------- /include/cutils/native_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/native_handle.h -------------------------------------------------------------------------------- /include/cutils/open_memstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/open_memstream.h -------------------------------------------------------------------------------- /include/cutils/partition_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/partition_utils.h -------------------------------------------------------------------------------- /include/cutils/process_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/process_name.h -------------------------------------------------------------------------------- /include/cutils/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/properties.h -------------------------------------------------------------------------------- /include/cutils/qtaguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/qtaguid.h -------------------------------------------------------------------------------- /include/cutils/record_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/record_stream.h -------------------------------------------------------------------------------- /include/cutils/sched_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/sched_policy.h -------------------------------------------------------------------------------- /include/cutils/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/sockets.h -------------------------------------------------------------------------------- /include/cutils/str_parms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/str_parms.h -------------------------------------------------------------------------------- /include/cutils/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/threads.h -------------------------------------------------------------------------------- /include/cutils/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/trace.h -------------------------------------------------------------------------------- /include/cutils/uevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/cutils/uevent.h -------------------------------------------------------------------------------- /include/log/event_tag_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/log/event_tag_map.h -------------------------------------------------------------------------------- /include/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/log/log.h -------------------------------------------------------------------------------- /include/log/log_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/log/log_read.h -------------------------------------------------------------------------------- /include/log/logd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/log/logd.h -------------------------------------------------------------------------------- /include/log/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/log/logger.h -------------------------------------------------------------------------------- /include/log/logprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/log/logprint.h -------------------------------------------------------------------------------- /include/log/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/log/uio.h -------------------------------------------------------------------------------- /include/nativebridge/native_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/nativebridge/native_bridge.h -------------------------------------------------------------------------------- /include/private/android_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/private/android_logger.h -------------------------------------------------------------------------------- /include/private/canned_fs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/private/canned_fs_config.h -------------------------------------------------------------------------------- /include/system/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/system/camera.h -------------------------------------------------------------------------------- /include/system/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/system/graphics.h -------------------------------------------------------------------------------- /include/system/qemu_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/system/qemu_pipe.h -------------------------------------------------------------------------------- /include/system/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/system/radio.h -------------------------------------------------------------------------------- /include/system/thread_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/system/thread_defs.h -------------------------------------------------------------------------------- /include/system/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/system/window.h -------------------------------------------------------------------------------- /include/sysutils/FrameworkClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/sysutils/FrameworkClient.h -------------------------------------------------------------------------------- /include/sysutils/FrameworkCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/sysutils/FrameworkCommand.h -------------------------------------------------------------------------------- /include/sysutils/FrameworkListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/sysutils/FrameworkListener.h -------------------------------------------------------------------------------- /include/sysutils/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/sysutils/List.h -------------------------------------------------------------------------------- /include/sysutils/NetlinkEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/sysutils/NetlinkEvent.h -------------------------------------------------------------------------------- /include/sysutils/NetlinkListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/sysutils/NetlinkListener.h -------------------------------------------------------------------------------- /include/sysutils/ServiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/sysutils/ServiceManager.h -------------------------------------------------------------------------------- /include/sysutils/SocketClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/sysutils/SocketClient.h -------------------------------------------------------------------------------- /include/sysutils/SocketListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/sysutils/SocketListener.h -------------------------------------------------------------------------------- /include/usbhost/usbhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/usbhost/usbhost.h -------------------------------------------------------------------------------- /include/utils/AndroidThreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/AndroidThreads.h -------------------------------------------------------------------------------- /include/utils/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Atomic.h -------------------------------------------------------------------------------- /include/utils/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/BitSet.h -------------------------------------------------------------------------------- /include/utils/BlobCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/BlobCache.h -------------------------------------------------------------------------------- /include/utils/ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/ByteOrder.h -------------------------------------------------------------------------------- /include/utils/CallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/CallStack.h -------------------------------------------------------------------------------- /include/utils/Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Compat.h -------------------------------------------------------------------------------- /include/utils/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Condition.h -------------------------------------------------------------------------------- /include/utils/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Debug.h -------------------------------------------------------------------------------- /include/utils/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Endian.h -------------------------------------------------------------------------------- /include/utils/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Errors.h -------------------------------------------------------------------------------- /include/utils/FileMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/FileMap.h -------------------------------------------------------------------------------- /include/utils/Flattenable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Flattenable.h -------------------------------------------------------------------------------- /include/utils/Functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Functor.h -------------------------------------------------------------------------------- /include/utils/JenkinsHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/JenkinsHash.h -------------------------------------------------------------------------------- /include/utils/KeyedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/KeyedVector.h -------------------------------------------------------------------------------- /include/utils/LinearTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/LinearTransform.h -------------------------------------------------------------------------------- /include/utils/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/List.h -------------------------------------------------------------------------------- /include/utils/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Log.h -------------------------------------------------------------------------------- /include/utils/Looper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Looper.h -------------------------------------------------------------------------------- /include/utils/LruCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/LruCache.h -------------------------------------------------------------------------------- /include/utils/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Mutex.h -------------------------------------------------------------------------------- /include/utils/NativeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/NativeHandle.h -------------------------------------------------------------------------------- /include/utils/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Printer.h -------------------------------------------------------------------------------- /include/utils/ProcessCallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/ProcessCallStack.h -------------------------------------------------------------------------------- /include/utils/PropertyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/PropertyMap.h -------------------------------------------------------------------------------- /include/utils/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/RWLock.h -------------------------------------------------------------------------------- /include/utils/RefBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/RefBase.h -------------------------------------------------------------------------------- /include/utils/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Singleton.h -------------------------------------------------------------------------------- /include/utils/SortedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/SortedVector.h -------------------------------------------------------------------------------- /include/utils/StopWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/StopWatch.h -------------------------------------------------------------------------------- /include/utils/String16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/String16.h -------------------------------------------------------------------------------- /include/utils/String8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/String8.h -------------------------------------------------------------------------------- /include/utils/StrongPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/StrongPointer.h -------------------------------------------------------------------------------- /include/utils/SystemClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/SystemClock.h -------------------------------------------------------------------------------- /include/utils/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Thread.h -------------------------------------------------------------------------------- /include/utils/ThreadDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/ThreadDefs.h -------------------------------------------------------------------------------- /include/utils/Timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Timers.h -------------------------------------------------------------------------------- /include/utils/Tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Tokenizer.h -------------------------------------------------------------------------------- /include/utils/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Trace.h -------------------------------------------------------------------------------- /include/utils/TypeHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/TypeHelpers.h -------------------------------------------------------------------------------- /include/utils/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Unicode.h -------------------------------------------------------------------------------- /include/utils/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/Vector.h -------------------------------------------------------------------------------- /include/utils/VectorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/VectorImpl.h -------------------------------------------------------------------------------- /include/utils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/misc.h -------------------------------------------------------------------------------- /include/utils/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/utils/threads.h -------------------------------------------------------------------------------- /include/ziparchive/zip_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/ziparchive/zip_archive.h -------------------------------------------------------------------------------- /include/ziparchive/zip_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/include/ziparchive/zip_writer.h -------------------------------------------------------------------------------- /init/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/Android.mk -------------------------------------------------------------------------------- /init/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /init/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/NOTICE -------------------------------------------------------------------------------- /init/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/action.cpp -------------------------------------------------------------------------------- /init/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/action.h -------------------------------------------------------------------------------- /init/bootchart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/bootchart.cpp -------------------------------------------------------------------------------- /init/bootchart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/bootchart.h -------------------------------------------------------------------------------- /init/builtins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/builtins.cpp -------------------------------------------------------------------------------- /init/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/builtins.h -------------------------------------------------------------------------------- /init/compare-bootcharts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/compare-bootcharts.py -------------------------------------------------------------------------------- /init/devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/devices.cpp -------------------------------------------------------------------------------- /init/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/devices.h -------------------------------------------------------------------------------- /init/grab-bootchart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/grab-bootchart.sh -------------------------------------------------------------------------------- /init/import_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/import_parser.cpp -------------------------------------------------------------------------------- /init/import_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/import_parser.h -------------------------------------------------------------------------------- /init/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/init.cpp -------------------------------------------------------------------------------- /init/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/init.h -------------------------------------------------------------------------------- /init/init_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/init_parser.cpp -------------------------------------------------------------------------------- /init/init_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/init_parser.h -------------------------------------------------------------------------------- /init/init_parser_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/init_parser_test.cpp -------------------------------------------------------------------------------- /init/keychords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/keychords.cpp -------------------------------------------------------------------------------- /init/keychords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/keychords.h -------------------------------------------------------------------------------- /init/keyword_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/keyword_map.h -------------------------------------------------------------------------------- /init/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/log.cpp -------------------------------------------------------------------------------- /init/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/log.h -------------------------------------------------------------------------------- /init/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/parser.cpp -------------------------------------------------------------------------------- /init/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/parser.h -------------------------------------------------------------------------------- /init/parser/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/parser/tokenizer.cpp -------------------------------------------------------------------------------- /init/parser/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/parser/tokenizer.h -------------------------------------------------------------------------------- /init/parser/tokenizer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/parser/tokenizer_test.cpp -------------------------------------------------------------------------------- /init/perfboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/perfboot.py -------------------------------------------------------------------------------- /init/property_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/property_service.cpp -------------------------------------------------------------------------------- /init/property_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/property_service.h -------------------------------------------------------------------------------- /init/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/readme.txt -------------------------------------------------------------------------------- /init/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/service.cpp -------------------------------------------------------------------------------- /init/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/service.h -------------------------------------------------------------------------------- /init/signal_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/signal_handler.cpp -------------------------------------------------------------------------------- /init/signal_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/signal_handler.h -------------------------------------------------------------------------------- /init/ueventd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/ueventd.cpp -------------------------------------------------------------------------------- /init/ueventd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/ueventd.h -------------------------------------------------------------------------------- /init/ueventd_keywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/ueventd_keywords.h -------------------------------------------------------------------------------- /init/ueventd_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/ueventd_parser.cpp -------------------------------------------------------------------------------- /init/ueventd_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/ueventd_parser.h -------------------------------------------------------------------------------- /init/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/util.cpp -------------------------------------------------------------------------------- /init/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/util.h -------------------------------------------------------------------------------- /init/util_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/util_test.cpp -------------------------------------------------------------------------------- /init/watchdogd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/watchdogd.cpp -------------------------------------------------------------------------------- /init/watchdogd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/init/watchdogd.h -------------------------------------------------------------------------------- /libbacktrace/Android.build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/Android.build.mk -------------------------------------------------------------------------------- /libbacktrace/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/Android.mk -------------------------------------------------------------------------------- /libbacktrace/Backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/Backtrace.cpp -------------------------------------------------------------------------------- /libbacktrace/BacktraceCurrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/BacktraceCurrent.cpp -------------------------------------------------------------------------------- /libbacktrace/BacktraceCurrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/BacktraceCurrent.h -------------------------------------------------------------------------------- /libbacktrace/BacktraceLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/BacktraceLog.h -------------------------------------------------------------------------------- /libbacktrace/BacktraceMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/BacktraceMap.cpp -------------------------------------------------------------------------------- /libbacktrace/BacktraceOffline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/BacktraceOffline.cpp -------------------------------------------------------------------------------- /libbacktrace/BacktraceOffline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/BacktraceOffline.h -------------------------------------------------------------------------------- /libbacktrace/BacktracePtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/BacktracePtrace.cpp -------------------------------------------------------------------------------- /libbacktrace/BacktracePtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/BacktracePtrace.h -------------------------------------------------------------------------------- /libbacktrace/GetPss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/GetPss.cpp -------------------------------------------------------------------------------- /libbacktrace/GetPss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/GetPss.h -------------------------------------------------------------------------------- /libbacktrace/ThreadEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/ThreadEntry.cpp -------------------------------------------------------------------------------- /libbacktrace/ThreadEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/ThreadEntry.h -------------------------------------------------------------------------------- /libbacktrace/UnwindCurrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/UnwindCurrent.cpp -------------------------------------------------------------------------------- /libbacktrace/UnwindCurrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/UnwindCurrent.h -------------------------------------------------------------------------------- /libbacktrace/UnwindMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/UnwindMap.cpp -------------------------------------------------------------------------------- /libbacktrace/UnwindMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/UnwindMap.h -------------------------------------------------------------------------------- /libbacktrace/UnwindPtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/UnwindPtrace.cpp -------------------------------------------------------------------------------- /libbacktrace/UnwindPtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/UnwindPtrace.h -------------------------------------------------------------------------------- /libbacktrace/backtrace_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/backtrace_test.cpp -------------------------------------------------------------------------------- /libbacktrace/backtrace_testlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/backtrace_testlib.c -------------------------------------------------------------------------------- /libbacktrace/thread_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/thread_utils.c -------------------------------------------------------------------------------- /libbacktrace/thread_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbacktrace/thread_utils.h -------------------------------------------------------------------------------- /libbinderwrapper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbinderwrapper/Android.mk -------------------------------------------------------------------------------- /libbinderwrapper/binder_test_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbinderwrapper/binder_test_base.cc -------------------------------------------------------------------------------- /libbinderwrapper/binder_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libbinderwrapper/binder_wrapper.cc -------------------------------------------------------------------------------- /libcrypto_utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcrypto_utils/Android.mk -------------------------------------------------------------------------------- /libcrypto_utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcrypto_utils/Makefile -------------------------------------------------------------------------------- /libcrypto_utils/android_pubkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcrypto_utils/android_pubkey.c -------------------------------------------------------------------------------- /libcrypto_utils/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcrypto_utils/tests/Android.mk -------------------------------------------------------------------------------- /libcutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/Android.mk -------------------------------------------------------------------------------- /libcutils/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libcutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/Makefile -------------------------------------------------------------------------------- /libcutils/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/NOTICE -------------------------------------------------------------------------------- /libcutils/android_reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/android_reboot.c -------------------------------------------------------------------------------- /libcutils/arch-arm/memset32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/arch-arm/memset32.S -------------------------------------------------------------------------------- /libcutils/arch-arm64/android_memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/arch-arm64/android_memset.S -------------------------------------------------------------------------------- /libcutils/arch-x86/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/arch-x86/cache.h -------------------------------------------------------------------------------- /libcutils/arch-x86_64/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/arch-x86_64/cache.h -------------------------------------------------------------------------------- /libcutils/ashmem-dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/ashmem-dev.c -------------------------------------------------------------------------------- /libcutils/ashmem-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/ashmem-host.c -------------------------------------------------------------------------------- /libcutils/canned_fs_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/canned_fs_config.c -------------------------------------------------------------------------------- /libcutils/config_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/config_utils.c -------------------------------------------------------------------------------- /libcutils/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/debugger.c -------------------------------------------------------------------------------- /libcutils/dlmalloc_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/dlmalloc_stubs.c -------------------------------------------------------------------------------- /libcutils/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/fs.c -------------------------------------------------------------------------------- /libcutils/fs_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/fs_config.c -------------------------------------------------------------------------------- /libcutils/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/hashmap.c -------------------------------------------------------------------------------- /libcutils/iosched_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/iosched_policy.c -------------------------------------------------------------------------------- /libcutils/klog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/klog.c -------------------------------------------------------------------------------- /libcutils/load_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/load_file.c -------------------------------------------------------------------------------- /libcutils/multiuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/multiuser.c -------------------------------------------------------------------------------- /libcutils/native_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/native_handle.c -------------------------------------------------------------------------------- /libcutils/open_memstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/open_memstream.c -------------------------------------------------------------------------------- /libcutils/partition_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/partition_utils.c -------------------------------------------------------------------------------- /libcutils/process_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/process_name.c -------------------------------------------------------------------------------- /libcutils/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/properties.c -------------------------------------------------------------------------------- /libcutils/properties_nonandroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/properties_nonandroid.c -------------------------------------------------------------------------------- /libcutils/qtaguid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/qtaguid.c -------------------------------------------------------------------------------- /libcutils/record_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/record_stream.c -------------------------------------------------------------------------------- /libcutils/sched_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/sched_policy.c -------------------------------------------------------------------------------- /libcutils/socket_local_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/socket_local_unix.h -------------------------------------------------------------------------------- /libcutils/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/sockets.cpp -------------------------------------------------------------------------------- /libcutils/sockets_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/sockets_unix.cpp -------------------------------------------------------------------------------- /libcutils/sockets_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/sockets_windows.cpp -------------------------------------------------------------------------------- /libcutils/str_parms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/str_parms.c -------------------------------------------------------------------------------- /libcutils/strdup16to8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/strdup16to8.c -------------------------------------------------------------------------------- /libcutils/strdup8to16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/strdup8to16.c -------------------------------------------------------------------------------- /libcutils/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/strlcpy.c -------------------------------------------------------------------------------- /libcutils/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/tests/Android.mk -------------------------------------------------------------------------------- /libcutils/tests/MemsetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/tests/MemsetTest.cpp -------------------------------------------------------------------------------- /libcutils/tests/PropertiesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/tests/PropertiesTest.cpp -------------------------------------------------------------------------------- /libcutils/tests/sockets_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/tests/sockets_test.cpp -------------------------------------------------------------------------------- /libcutils/tests/test_str_parms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/tests/test_str_parms.cpp -------------------------------------------------------------------------------- /libcutils/tests/trace-dev_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/tests/trace-dev_test.cpp -------------------------------------------------------------------------------- /libcutils/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/threads.c -------------------------------------------------------------------------------- /libcutils/trace-dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/trace-dev.c -------------------------------------------------------------------------------- /libcutils/trace-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/trace-host.c -------------------------------------------------------------------------------- /libcutils/uevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libcutils/uevent.c -------------------------------------------------------------------------------- /libdiskconfig/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libdiskconfig/Android.mk -------------------------------------------------------------------------------- /libdiskconfig/config_mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libdiskconfig/config_mbr.c -------------------------------------------------------------------------------- /libdiskconfig/diskconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libdiskconfig/diskconfig.c -------------------------------------------------------------------------------- /libdiskconfig/diskutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libdiskconfig/diskutils.c -------------------------------------------------------------------------------- /libdiskconfig/dump_diskconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libdiskconfig/dump_diskconfig.c -------------------------------------------------------------------------------- /libdiskconfig/write_lst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libdiskconfig/write_lst.c -------------------------------------------------------------------------------- /libion/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/Android.mk -------------------------------------------------------------------------------- /libion/include/ion/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/include/ion/ion.h -------------------------------------------------------------------------------- /libion/ion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/ion.c -------------------------------------------------------------------------------- /libion/ion_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/ion_test.c -------------------------------------------------------------------------------- /libion/kernel-headers/linux/ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/kernel-headers/linux/ion.h -------------------------------------------------------------------------------- /libion/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/tests/Android.mk -------------------------------------------------------------------------------- /libion/tests/allocate_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/tests/allocate_test.cpp -------------------------------------------------------------------------------- /libion/tests/device_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/tests/device_test.cpp -------------------------------------------------------------------------------- /libion/tests/exit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/tests/exit_test.cpp -------------------------------------------------------------------------------- /libion/tests/ion_test_fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/tests/ion_test_fixture.cpp -------------------------------------------------------------------------------- /libion/tests/ion_test_fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/tests/ion_test_fixture.h -------------------------------------------------------------------------------- /libion/tests/map_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libion/tests/map_test.cpp -------------------------------------------------------------------------------- /liblog/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/Android.bp -------------------------------------------------------------------------------- /liblog/Android.soong.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/Android.soong.mk -------------------------------------------------------------------------------- /liblog/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/NOTICE -------------------------------------------------------------------------------- /liblog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/README -------------------------------------------------------------------------------- /liblog/config_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/config_read.c -------------------------------------------------------------------------------- /liblog/config_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/config_read.h -------------------------------------------------------------------------------- /liblog/config_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/config_write.c -------------------------------------------------------------------------------- /liblog/config_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/config_write.h -------------------------------------------------------------------------------- /liblog/event.logtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/event.logtags -------------------------------------------------------------------------------- /liblog/event_tag_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/event_tag_map.c -------------------------------------------------------------------------------- /liblog/fake_log_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/fake_log_device.c -------------------------------------------------------------------------------- /liblog/fake_log_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/fake_log_device.h -------------------------------------------------------------------------------- /liblog/fake_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/fake_writer.c -------------------------------------------------------------------------------- /liblog/log_event_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/log_event_list.c -------------------------------------------------------------------------------- /liblog/log_event_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/log_event_write.c -------------------------------------------------------------------------------- /liblog/log_is_loggable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/log_is_loggable.c -------------------------------------------------------------------------------- /liblog/log_portability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/log_portability.h -------------------------------------------------------------------------------- /liblog/log_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/log_time.cpp -------------------------------------------------------------------------------- /liblog/logd_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/logd_reader.c -------------------------------------------------------------------------------- /liblog/logd_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/logd_writer.c -------------------------------------------------------------------------------- /liblog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/logger.h -------------------------------------------------------------------------------- /liblog/logger_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/logger_lock.c -------------------------------------------------------------------------------- /liblog/logger_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/logger_name.c -------------------------------------------------------------------------------- /liblog/logger_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/logger_read.c -------------------------------------------------------------------------------- /liblog/logger_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/logger_write.c -------------------------------------------------------------------------------- /liblog/logprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/logprint.c -------------------------------------------------------------------------------- /liblog/pmsg_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/pmsg_reader.c -------------------------------------------------------------------------------- /liblog/pmsg_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/pmsg_writer.c -------------------------------------------------------------------------------- /liblog/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/tests/Android.mk -------------------------------------------------------------------------------- /liblog/tests/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/tests/benchmark.h -------------------------------------------------------------------------------- /liblog/tests/benchmark_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/tests/benchmark_main.cpp -------------------------------------------------------------------------------- /liblog/tests/libc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/tests/libc_test.cpp -------------------------------------------------------------------------------- /liblog/tests/liblog_benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/tests/liblog_benchmark.cpp -------------------------------------------------------------------------------- /liblog/tests/liblog_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/tests/liblog_test.cpp -------------------------------------------------------------------------------- /liblog/uio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/liblog/uio.c -------------------------------------------------------------------------------- /libmemtrack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemtrack/Android.mk -------------------------------------------------------------------------------- /libmemtrack/memtrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemtrack/memtrack.c -------------------------------------------------------------------------------- /libmemtrack/memtrack_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemtrack/memtrack_test.c -------------------------------------------------------------------------------- /libmemunreachable/Allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/Allocator.cpp -------------------------------------------------------------------------------- /libmemunreachable/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/Allocator.h -------------------------------------------------------------------------------- /libmemunreachable/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/Android.mk -------------------------------------------------------------------------------- /libmemunreachable/HeapWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/HeapWalker.cpp -------------------------------------------------------------------------------- /libmemunreachable/HeapWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/HeapWalker.h -------------------------------------------------------------------------------- /libmemunreachable/Leak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/Leak.h -------------------------------------------------------------------------------- /libmemunreachable/LeakFolding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/LeakFolding.cpp -------------------------------------------------------------------------------- /libmemunreachable/LeakFolding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/LeakFolding.h -------------------------------------------------------------------------------- /libmemunreachable/LeakPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/LeakPipe.cpp -------------------------------------------------------------------------------- /libmemunreachable/LeakPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/LeakPipe.h -------------------------------------------------------------------------------- /libmemunreachable/LineBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/LineBuffer.cpp -------------------------------------------------------------------------------- /libmemunreachable/LineBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/LineBuffer.h -------------------------------------------------------------------------------- /libmemunreachable/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/LinkedList.h -------------------------------------------------------------------------------- /libmemunreachable/ProcessMappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/ProcessMappings.h -------------------------------------------------------------------------------- /libmemunreachable/PtracerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/PtracerThread.cpp -------------------------------------------------------------------------------- /libmemunreachable/PtracerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/PtracerThread.h -------------------------------------------------------------------------------- /libmemunreachable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/README.md -------------------------------------------------------------------------------- /libmemunreachable/ScopedAlarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/ScopedAlarm.h -------------------------------------------------------------------------------- /libmemunreachable/ScopedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/ScopedPipe.h -------------------------------------------------------------------------------- /libmemunreachable/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/Semaphore.h -------------------------------------------------------------------------------- /libmemunreachable/Tarjan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/Tarjan.h -------------------------------------------------------------------------------- /libmemunreachable/ThreadCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/ThreadCapture.cpp -------------------------------------------------------------------------------- /libmemunreachable/ThreadCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/ThreadCapture.h -------------------------------------------------------------------------------- /libmemunreachable/anon_vma_naming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/anon_vma_naming.h -------------------------------------------------------------------------------- /libmemunreachable/bionic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/bionic.h -------------------------------------------------------------------------------- /libmemunreachable/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libmemunreachable/log.h -------------------------------------------------------------------------------- /libnativebridge/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnativebridge/Android.mk -------------------------------------------------------------------------------- /libnativebridge/native_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnativebridge/native_bridge.cc -------------------------------------------------------------------------------- /libnativebridge/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnativebridge/tests/Android.mk -------------------------------------------------------------------------------- /libnativeloader/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnativeloader/Android.mk -------------------------------------------------------------------------------- /libnativeloader/dlext_namespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnativeloader/dlext_namespaces.h -------------------------------------------------------------------------------- /libnativeloader/native_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnativeloader/native_loader.cpp -------------------------------------------------------------------------------- /libnetutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/Android.mk -------------------------------------------------------------------------------- /libnetutils/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/NOTICE -------------------------------------------------------------------------------- /libnetutils/dhcp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/dhcp_utils.c -------------------------------------------------------------------------------- /libnetutils/dhcpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/dhcpclient.c -------------------------------------------------------------------------------- /libnetutils/dhcpmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/dhcpmsg.c -------------------------------------------------------------------------------- /libnetutils/dhcpmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/dhcpmsg.h -------------------------------------------------------------------------------- /libnetutils/dhcptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/dhcptool.c -------------------------------------------------------------------------------- /libnetutils/ifc_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/ifc_utils.c -------------------------------------------------------------------------------- /libnetutils/include/netutils/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/include/netutils/dhcp.h -------------------------------------------------------------------------------- /libnetutils/include/netutils/ifc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/include/netutils/ifc.h -------------------------------------------------------------------------------- /libnetutils/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/packet.c -------------------------------------------------------------------------------- /libnetutils/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libnetutils/packet.h -------------------------------------------------------------------------------- /libpackagelistparser/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpackagelistparser/Android.mk -------------------------------------------------------------------------------- /libpixelflinger/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/Android.mk -------------------------------------------------------------------------------- /libpixelflinger/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libpixelflinger/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/NOTICE -------------------------------------------------------------------------------- /libpixelflinger/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/buffer.cpp -------------------------------------------------------------------------------- /libpixelflinger/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/buffer.h -------------------------------------------------------------------------------- /libpixelflinger/clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/clear.cpp -------------------------------------------------------------------------------- /libpixelflinger/clear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/clear.h -------------------------------------------------------------------------------- /libpixelflinger/col32cb16blend.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/col32cb16blend.S -------------------------------------------------------------------------------- /libpixelflinger/fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/fixed.cpp -------------------------------------------------------------------------------- /libpixelflinger/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/format.cpp -------------------------------------------------------------------------------- /libpixelflinger/picker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/picker.cpp -------------------------------------------------------------------------------- /libpixelflinger/picker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/picker.h -------------------------------------------------------------------------------- /libpixelflinger/pixelflinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/pixelflinger.cpp -------------------------------------------------------------------------------- /libpixelflinger/raster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/raster.cpp -------------------------------------------------------------------------------- /libpixelflinger/raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/raster.h -------------------------------------------------------------------------------- /libpixelflinger/scanline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/scanline.cpp -------------------------------------------------------------------------------- /libpixelflinger/scanline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/scanline.h -------------------------------------------------------------------------------- /libpixelflinger/t32cb16blend.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/t32cb16blend.S -------------------------------------------------------------------------------- /libpixelflinger/tests/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /libpixelflinger/tests/arch-arm64/Android.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(TARGET_ARCH),arm64) 2 | include $(all-subdir-makefiles) 3 | endif 4 | -------------------------------------------------------------------------------- /libpixelflinger/tests/arch-mips64/Android.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(TARGET_ARCH),mips64) 2 | include $(all-subdir-makefiles) 3 | endif 4 | -------------------------------------------------------------------------------- /libpixelflinger/trap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/trap.cpp -------------------------------------------------------------------------------- /libpixelflinger/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libpixelflinger/trap.h -------------------------------------------------------------------------------- /libprocessgroup/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libprocessgroup/Android.mk -------------------------------------------------------------------------------- /libprocessgroup/cleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libprocessgroup/cleanup.cpp -------------------------------------------------------------------------------- /libprocessgroup/processgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libprocessgroup/processgroup.cpp -------------------------------------------------------------------------------- /libprocessgroup/processgroup_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libprocessgroup/processgroup_priv.h -------------------------------------------------------------------------------- /libsparse/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/Android.mk -------------------------------------------------------------------------------- /libsparse/append2simg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/append2simg.c -------------------------------------------------------------------------------- /libsparse/backed_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/backed_block.c -------------------------------------------------------------------------------- /libsparse/backed_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/backed_block.h -------------------------------------------------------------------------------- /libsparse/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/defs.h -------------------------------------------------------------------------------- /libsparse/img2simg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/img2simg.c -------------------------------------------------------------------------------- /libsparse/include/sparse/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/include/sparse/sparse.h -------------------------------------------------------------------------------- /libsparse/output_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/output_file.c -------------------------------------------------------------------------------- /libsparse/output_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/output_file.h -------------------------------------------------------------------------------- /libsparse/simg2img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/simg2img.c -------------------------------------------------------------------------------- /libsparse/simg2simg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/simg2simg.c -------------------------------------------------------------------------------- /libsparse/simg_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/simg_dump.py -------------------------------------------------------------------------------- /libsparse/sparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/sparse.c -------------------------------------------------------------------------------- /libsparse/sparse_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/sparse_crc32.c -------------------------------------------------------------------------------- /libsparse/sparse_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/sparse_crc32.h -------------------------------------------------------------------------------- /libsparse/sparse_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/sparse_defs.h -------------------------------------------------------------------------------- /libsparse/sparse_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/sparse_err.c -------------------------------------------------------------------------------- /libsparse/sparse_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/sparse_file.h -------------------------------------------------------------------------------- /libsparse/sparse_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/sparse_format.h -------------------------------------------------------------------------------- /libsparse/sparse_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsparse/sparse_read.c -------------------------------------------------------------------------------- /libsuspend/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsuspend/Android.mk -------------------------------------------------------------------------------- /libsuspend/autosuspend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsuspend/autosuspend.c -------------------------------------------------------------------------------- /libsuspend/autosuspend_autosleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsuspend/autosuspend_autosleep.c -------------------------------------------------------------------------------- /libsuspend/autosuspend_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsuspend/autosuspend_ops.h -------------------------------------------------------------------------------- /libsync/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsync/Android.mk -------------------------------------------------------------------------------- /libsync/include/sync/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsync/include/sync/sync.h -------------------------------------------------------------------------------- /libsync/sw_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsync/sw_sync.h -------------------------------------------------------------------------------- /libsync/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsync/sync.c -------------------------------------------------------------------------------- /libsync/sync_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsync/sync_test.c -------------------------------------------------------------------------------- /libsync/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsync/tests/Android.mk -------------------------------------------------------------------------------- /libsync/tests/sync_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsync/tests/sync_test.cpp -------------------------------------------------------------------------------- /libsysutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsysutils/Android.mk -------------------------------------------------------------------------------- /libsysutils/EventLogTags.logtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsysutils/EventLogTags.logtags -------------------------------------------------------------------------------- /libsysutils/src/FrameworkClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsysutils/src/FrameworkClient.cpp -------------------------------------------------------------------------------- /libsysutils/src/NetlinkEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsysutils/src/NetlinkEvent.cpp -------------------------------------------------------------------------------- /libsysutils/src/NetlinkListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsysutils/src/NetlinkListener.cpp -------------------------------------------------------------------------------- /libsysutils/src/ServiceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsysutils/src/ServiceManager.cpp -------------------------------------------------------------------------------- /libsysutils/src/SocketClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsysutils/src/SocketClient.cpp -------------------------------------------------------------------------------- /libsysutils/src/SocketListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libsysutils/src/SocketListener.cpp -------------------------------------------------------------------------------- /libusbhost/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libusbhost/Android.mk -------------------------------------------------------------------------------- /libusbhost/usbhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libusbhost/usbhost.c -------------------------------------------------------------------------------- /libutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Android.mk -------------------------------------------------------------------------------- /libutils/BlobCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/BlobCache.cpp -------------------------------------------------------------------------------- /libutils/CallStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/CallStack.cpp -------------------------------------------------------------------------------- /libutils/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/CleanSpec.mk -------------------------------------------------------------------------------- /libutils/FileMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/FileMap.cpp -------------------------------------------------------------------------------- /libutils/JenkinsHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/JenkinsHash.cpp -------------------------------------------------------------------------------- /libutils/LinearTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/LinearTransform.cpp -------------------------------------------------------------------------------- /libutils/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Log.cpp -------------------------------------------------------------------------------- /libutils/Looper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Looper.cpp -------------------------------------------------------------------------------- /libutils/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libutils/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/NOTICE -------------------------------------------------------------------------------- /libutils/NativeHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/NativeHandle.cpp -------------------------------------------------------------------------------- /libutils/Printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Printer.cpp -------------------------------------------------------------------------------- /libutils/ProcessCallStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/ProcessCallStack.cpp -------------------------------------------------------------------------------- /libutils/PropertyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/PropertyMap.cpp -------------------------------------------------------------------------------- /libutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/README -------------------------------------------------------------------------------- /libutils/RefBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/RefBase.cpp -------------------------------------------------------------------------------- /libutils/SharedBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/SharedBuffer.cpp -------------------------------------------------------------------------------- /libutils/SharedBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/SharedBuffer.h -------------------------------------------------------------------------------- /libutils/SharedBufferTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/SharedBufferTest.cpp -------------------------------------------------------------------------------- /libutils/Static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Static.cpp -------------------------------------------------------------------------------- /libutils/StopWatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/StopWatch.cpp -------------------------------------------------------------------------------- /libutils/String16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/String16.cpp -------------------------------------------------------------------------------- /libutils/String8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/String8.cpp -------------------------------------------------------------------------------- /libutils/SystemClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/SystemClock.cpp -------------------------------------------------------------------------------- /libutils/Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Threads.cpp -------------------------------------------------------------------------------- /libutils/Timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Timers.cpp -------------------------------------------------------------------------------- /libutils/Tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Tokenizer.cpp -------------------------------------------------------------------------------- /libutils/Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Trace.cpp -------------------------------------------------------------------------------- /libutils/Unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/Unicode.cpp -------------------------------------------------------------------------------- /libutils/VectorImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/VectorImpl.cpp -------------------------------------------------------------------------------- /libutils/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/misc.cpp -------------------------------------------------------------------------------- /libutils/primes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/primes.py -------------------------------------------------------------------------------- /libutils/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/Android.mk -------------------------------------------------------------------------------- /libutils/tests/BitSet_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/BitSet_test.cpp -------------------------------------------------------------------------------- /libutils/tests/BlobCache_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/BlobCache_test.cpp -------------------------------------------------------------------------------- /libutils/tests/Looper_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/Looper_test.cpp -------------------------------------------------------------------------------- /libutils/tests/LruCache_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/LruCache_test.cpp -------------------------------------------------------------------------------- /libutils/tests/String8_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/String8_test.cpp -------------------------------------------------------------------------------- /libutils/tests/SystemClock_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/SystemClock_test.cpp -------------------------------------------------------------------------------- /libutils/tests/TestHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/TestHelpers.h -------------------------------------------------------------------------------- /libutils/tests/Unicode_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/Unicode_test.cpp -------------------------------------------------------------------------------- /libutils/tests/Vector_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libutils/tests/Vector_test.cpp -------------------------------------------------------------------------------- /libziparchive/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/Android.mk -------------------------------------------------------------------------------- /libziparchive/testdata/bad_crc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/testdata/bad_crc.zip -------------------------------------------------------------------------------- /libziparchive/testdata/large.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/testdata/large.zip -------------------------------------------------------------------------------- /libziparchive/testdata/valid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/testdata/valid.zip -------------------------------------------------------------------------------- /libziparchive/zip_archive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/zip_archive.cc -------------------------------------------------------------------------------- /libziparchive/zip_archive_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/zip_archive_common.h -------------------------------------------------------------------------------- /libziparchive/zip_archive_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/zip_archive_private.h -------------------------------------------------------------------------------- /libziparchive/zip_archive_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/zip_archive_test.cc -------------------------------------------------------------------------------- /libziparchive/zip_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/zip_writer.cc -------------------------------------------------------------------------------- /libziparchive/zip_writer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/libziparchive/zip_writer_test.cc -------------------------------------------------------------------------------- /lmkd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/lmkd/Android.mk -------------------------------------------------------------------------------- /lmkd/lmkd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/lmkd/lmkd.c -------------------------------------------------------------------------------- /lmkd/lmkd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/lmkd/lmkd.rc -------------------------------------------------------------------------------- /logcat/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logcat/Android.mk -------------------------------------------------------------------------------- /logcat/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logcat/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logcat/NOTICE -------------------------------------------------------------------------------- /logcat/event.logtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logcat/event.logtags -------------------------------------------------------------------------------- /logcat/logcat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logcat/logcat.cpp -------------------------------------------------------------------------------- /logcat/logcatd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logcat/logcatd.rc -------------------------------------------------------------------------------- /logcat/logpersist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logcat/logpersist -------------------------------------------------------------------------------- /logcat/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logcat/tests/Android.mk -------------------------------------------------------------------------------- /logcat/tests/logcat_benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logcat/tests/logcat_benchmark.cpp -------------------------------------------------------------------------------- /logcat/tests/logcat_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logcat/tests/logcat_test.cpp -------------------------------------------------------------------------------- /logd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/Android.mk -------------------------------------------------------------------------------- /logd/CommandListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/CommandListener.cpp -------------------------------------------------------------------------------- /logd/CommandListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/CommandListener.h -------------------------------------------------------------------------------- /logd/FlushCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/FlushCommand.cpp -------------------------------------------------------------------------------- /logd/FlushCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/FlushCommand.h -------------------------------------------------------------------------------- /logd/LogAudit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogAudit.cpp -------------------------------------------------------------------------------- /logd/LogAudit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogAudit.h -------------------------------------------------------------------------------- /logd/LogBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogBuffer.cpp -------------------------------------------------------------------------------- /logd/LogBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogBuffer.h -------------------------------------------------------------------------------- /logd/LogBufferElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogBufferElement.cpp -------------------------------------------------------------------------------- /logd/LogBufferElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogBufferElement.h -------------------------------------------------------------------------------- /logd/LogCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogCommand.cpp -------------------------------------------------------------------------------- /logd/LogCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogCommand.h -------------------------------------------------------------------------------- /logd/LogKlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogKlog.cpp -------------------------------------------------------------------------------- /logd/LogKlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogKlog.h -------------------------------------------------------------------------------- /logd/LogListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogListener.cpp -------------------------------------------------------------------------------- /logd/LogListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogListener.h -------------------------------------------------------------------------------- /logd/LogReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogReader.cpp -------------------------------------------------------------------------------- /logd/LogReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogReader.h -------------------------------------------------------------------------------- /logd/LogStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogStatistics.cpp -------------------------------------------------------------------------------- /logd/LogStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogStatistics.h -------------------------------------------------------------------------------- /logd/LogTimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogTimes.cpp -------------------------------------------------------------------------------- /logd/LogTimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogTimes.h -------------------------------------------------------------------------------- /logd/LogUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogUtils.h -------------------------------------------------------------------------------- /logd/LogWhiteBlackList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogWhiteBlackList.cpp -------------------------------------------------------------------------------- /logd/LogWhiteBlackList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/LogWhiteBlackList.h -------------------------------------------------------------------------------- /logd/README.auditd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/README.auditd -------------------------------------------------------------------------------- /logd/README.property: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/README.property -------------------------------------------------------------------------------- /logd/event.logtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/event.logtags -------------------------------------------------------------------------------- /logd/libaudit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/libaudit.c -------------------------------------------------------------------------------- /logd/libaudit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/libaudit.h -------------------------------------------------------------------------------- /logd/logd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/logd.rc -------------------------------------------------------------------------------- /logd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/main.cpp -------------------------------------------------------------------------------- /logd/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/tests/Android.mk -------------------------------------------------------------------------------- /logd/tests/logd_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logd/tests/logd_test.cpp -------------------------------------------------------------------------------- /logwrapper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logwrapper/Android.mk -------------------------------------------------------------------------------- /logwrapper/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logwrapper/NOTICE -------------------------------------------------------------------------------- /logwrapper/logwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logwrapper/logwrap.c -------------------------------------------------------------------------------- /logwrapper/logwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/logwrapper/logwrapper.c -------------------------------------------------------------------------------- /metricsd/.clang-format: -------------------------------------------------------------------------------- 1 | ../../../build/tools/brillo-clang-format -------------------------------------------------------------------------------- /metricsd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/Android.mk -------------------------------------------------------------------------------- /metricsd/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/OWNERS -------------------------------------------------------------------------------- /metricsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/README.md -------------------------------------------------------------------------------- /metricsd/WATCHLISTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/WATCHLISTS -------------------------------------------------------------------------------- /metricsd/c_metrics_library.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/c_metrics_library.cc -------------------------------------------------------------------------------- /metricsd/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/constants.h -------------------------------------------------------------------------------- /metricsd/include/metrics/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/include/metrics/timer.h -------------------------------------------------------------------------------- /metricsd/libmetrics-369476.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/libmetrics-369476.gyp -------------------------------------------------------------------------------- /metricsd/libmetrics.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/libmetrics.gypi -------------------------------------------------------------------------------- /metricsd/libmetrics.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/libmetrics.pc.in -------------------------------------------------------------------------------- /metricsd/metrics.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metrics.gyp -------------------------------------------------------------------------------- /metricsd/metrics_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metrics_client.cc -------------------------------------------------------------------------------- /metricsd/metrics_collector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metrics_collector.cc -------------------------------------------------------------------------------- /metricsd/metrics_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metrics_collector.h -------------------------------------------------------------------------------- /metricsd/metrics_collector.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metrics_collector.rc -------------------------------------------------------------------------------- /metricsd/metrics_collector_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metrics_collector_main.cc -------------------------------------------------------------------------------- /metricsd/metrics_collector_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metrics_collector_test.cc -------------------------------------------------------------------------------- /metricsd/metrics_library.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metrics_library.cc -------------------------------------------------------------------------------- /metricsd/metrics_library_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metrics_library_test.cc -------------------------------------------------------------------------------- /metricsd/metricsd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metricsd.rc -------------------------------------------------------------------------------- /metricsd/metricsd_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/metricsd_main.cc -------------------------------------------------------------------------------- /metricsd/persistent_integer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/persistent_integer.cc -------------------------------------------------------------------------------- /metricsd/persistent_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/persistent_integer.h -------------------------------------------------------------------------------- /metricsd/persistent_integer_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/persistent_integer_mock.h -------------------------------------------------------------------------------- /metricsd/persistent_integer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/persistent_integer_test.cc -------------------------------------------------------------------------------- /metricsd/timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/timer.cc -------------------------------------------------------------------------------- /metricsd/timer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/timer_test.cc -------------------------------------------------------------------------------- /metricsd/uploader/crash_counters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/crash_counters.cc -------------------------------------------------------------------------------- /metricsd/uploader/crash_counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/crash_counters.h -------------------------------------------------------------------------------- /metricsd/uploader/metrics_hashes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/metrics_hashes.cc -------------------------------------------------------------------------------- /metricsd/uploader/metrics_hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/metrics_hashes.h -------------------------------------------------------------------------------- /metricsd/uploader/metrics_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/metrics_log.cc -------------------------------------------------------------------------------- /metricsd/uploader/metrics_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/metrics_log.h -------------------------------------------------------------------------------- /metricsd/uploader/proto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/proto/README -------------------------------------------------------------------------------- /metricsd/uploader/sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/sender.h -------------------------------------------------------------------------------- /metricsd/uploader/sender_http.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/sender_http.cc -------------------------------------------------------------------------------- /metricsd/uploader/sender_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/sender_http.h -------------------------------------------------------------------------------- /metricsd/uploader/upload_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/upload_service.cc -------------------------------------------------------------------------------- /metricsd/uploader/upload_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/metricsd/uploader/upload_service.h -------------------------------------------------------------------------------- /mkbootimg/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/mkbootimg/Android.mk -------------------------------------------------------------------------------- /mkbootimg/bootimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/mkbootimg/bootimg.h -------------------------------------------------------------------------------- /mkbootimg/mkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/mkbootimg/mkbootimg -------------------------------------------------------------------------------- /reboot/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/reboot/Android.mk -------------------------------------------------------------------------------- /reboot/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/reboot/reboot.c -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/Android.mk -------------------------------------------------------------------------------- /rootdir/asan.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/asan.options -------------------------------------------------------------------------------- /rootdir/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/etc/hosts -------------------------------------------------------------------------------- /rootdir/init-debug.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/init-debug.rc -------------------------------------------------------------------------------- /rootdir/init.environ.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/init.environ.rc.in -------------------------------------------------------------------------------- /rootdir/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/init.rc -------------------------------------------------------------------------------- /rootdir/init.usb.configfs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/init.usb.configfs.rc -------------------------------------------------------------------------------- /rootdir/init.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/init.usb.rc -------------------------------------------------------------------------------- /rootdir/init.zygote32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/init.zygote32.rc -------------------------------------------------------------------------------- /rootdir/init.zygote32_64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/init.zygote32_64.rc -------------------------------------------------------------------------------- /rootdir/init.zygote64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/init.zygote64.rc -------------------------------------------------------------------------------- /rootdir/init.zygote64_32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/init.zygote64_32.rc -------------------------------------------------------------------------------- /rootdir/ueventd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/rootdir/ueventd.rc -------------------------------------------------------------------------------- /run-as/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/run-as/Android.mk -------------------------------------------------------------------------------- /run-as/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/run-as/NOTICE -------------------------------------------------------------------------------- /run-as/package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/run-as/package.c -------------------------------------------------------------------------------- /run-as/package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/run-as/package.h -------------------------------------------------------------------------------- /run-as/run-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/run-as/run-as.c -------------------------------------------------------------------------------- /sdcard/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/sdcard/Android.mk -------------------------------------------------------------------------------- /sdcard/sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/sdcard/sdcard.c -------------------------------------------------------------------------------- /toolbox/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/Android.mk -------------------------------------------------------------------------------- /toolbox/MODULE_LICENSE_BSD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolbox/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/NOTICE -------------------------------------------------------------------------------- /toolbox/bsd-compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/bsd-compatibility.h -------------------------------------------------------------------------------- /toolbox/generate-input.h-labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/generate-input.h-labels.py -------------------------------------------------------------------------------- /toolbox/getevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/getevent.c -------------------------------------------------------------------------------- /toolbox/newfs_msdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/newfs_msdos.c -------------------------------------------------------------------------------- /toolbox/r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/r.c -------------------------------------------------------------------------------- /toolbox/sendevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/sendevent.c -------------------------------------------------------------------------------- /toolbox/toolbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/toolbox.c -------------------------------------------------------------------------------- /toolbox/upstream-netbsd/bin/dd/dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/upstream-netbsd/bin/dd/dd.c -------------------------------------------------------------------------------- /toolbox/upstream-netbsd/bin/dd/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/toolbox/upstream-netbsd/bin/dd/dd.h -------------------------------------------------------------------------------- /toolbox/upstream-netbsd/include/namespace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolbox/upstream-netbsd/include/sys/extattr.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolbox/upstream-netbsd/include/sys/mtio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /toolbox/upstream-netbsd/include/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trusty/gatekeeper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/gatekeeper/Android.mk -------------------------------------------------------------------------------- /trusty/gatekeeper/gatekeeper_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/gatekeeper/gatekeeper_ipc.h -------------------------------------------------------------------------------- /trusty/gatekeeper/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/gatekeeper/module.cpp -------------------------------------------------------------------------------- /trusty/keymaster/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/keymaster/Android.mk -------------------------------------------------------------------------------- /trusty/keymaster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/keymaster/Makefile -------------------------------------------------------------------------------- /trusty/keymaster/keymaster_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/keymaster/keymaster_ipc.h -------------------------------------------------------------------------------- /trusty/keymaster/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/keymaster/module.cpp -------------------------------------------------------------------------------- /trusty/libtrusty/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/libtrusty/Android.mk -------------------------------------------------------------------------------- /trusty/libtrusty/tipc_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/libtrusty/tipc_ioctl.h -------------------------------------------------------------------------------- /trusty/libtrusty/trusty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/libtrusty/trusty.c -------------------------------------------------------------------------------- /trusty/nvram/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/nvram/Android.mk -------------------------------------------------------------------------------- /trusty/nvram/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/nvram/module.c -------------------------------------------------------------------------------- /trusty/storage/interface/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/interface/Android.mk -------------------------------------------------------------------------------- /trusty/storage/lib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/lib/Android.mk -------------------------------------------------------------------------------- /trusty/storage/lib/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/lib/storage.c -------------------------------------------------------------------------------- /trusty/storage/proxy/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/proxy/Android.mk -------------------------------------------------------------------------------- /trusty/storage/proxy/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/proxy/ipc.c -------------------------------------------------------------------------------- /trusty/storage/proxy/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/proxy/ipc.h -------------------------------------------------------------------------------- /trusty/storage/proxy/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/proxy/log.h -------------------------------------------------------------------------------- /trusty/storage/proxy/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/proxy/proxy.c -------------------------------------------------------------------------------- /trusty/storage/proxy/rpmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/proxy/rpmb.c -------------------------------------------------------------------------------- /trusty/storage/proxy/rpmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/proxy/rpmb.h -------------------------------------------------------------------------------- /trusty/storage/proxy/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/proxy/storage.c -------------------------------------------------------------------------------- /trusty/storage/proxy/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/proxy/storage.h -------------------------------------------------------------------------------- /trusty/storage/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/tests/Android.mk -------------------------------------------------------------------------------- /trusty/storage/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/storage/tests/main.cpp -------------------------------------------------------------------------------- /trusty/trusty-base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/trusty-base.mk -------------------------------------------------------------------------------- /trusty/trusty-storage.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/trusty/trusty-storage.mk -------------------------------------------------------------------------------- /tzdatacheck/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/tzdatacheck/Android.mk -------------------------------------------------------------------------------- /tzdatacheck/tzdatacheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyho/adbd-linux/HEAD/tzdatacheck/tzdatacheck.cpp --------------------------------------------------------------------------------