├── .clang-format ├── ActivityManager.cpp ├── Android.bp ├── AppOpsManager.cpp ├── Binder.cpp ├── BpBinder.cpp ├── BufferedTextOutput.cpp ├── CMakeLists.txt ├── Debug.cpp ├── IActivityManager.cpp ├── IAppOpsCallback.cpp ├── IAppOpsService.cpp ├── IBatteryStats.cpp ├── IInterface.cpp ├── IMediaResourceMonitor.cpp ├── IMemory.cpp ├── IPCThreadState.cpp ├── IPermissionController.cpp ├── IProcessInfoService.cpp ├── IResultReceiver.cpp ├── IServiceManager.cpp ├── IShellCallback.cpp ├── IUidObserver.cpp ├── IpPrefix.cpp ├── MODULE_LICENSE_APACHE2 ├── MemoryBase.cpp ├── MemoryDealer.cpp ├── MemoryHeapBase.cpp ├── NOTICE ├── OWNERS ├── Parcel.cpp ├── ParcelFileDescriptor.cpp ├── PermissionCache.cpp ├── PermissionController.cpp ├── PersistableBundle.cpp ├── ProcessInfoService.cpp ├── ProcessState.cpp ├── Static.cpp ├── Status.cpp ├── TextOutput.cpp ├── Value.cpp ├── aidl └── android │ └── content │ └── pm │ ├── IPackageManagerNative.aidl │ └── OWNERS ├── include ├── binder │ ├── ActivityManager.h │ ├── AppOpsManager.h │ ├── Binder.h │ ├── BinderService.h │ ├── BpBinder.h │ ├── BufferedTextOutput.h │ ├── Debug.h │ ├── IActivityManager.h │ ├── IAppOpsCallback.h │ ├── IAppOpsService.h │ ├── IBatteryStats.h │ ├── IBinder.h │ ├── IInterface.h │ ├── IMediaResourceMonitor.h │ ├── IMemory.h │ ├── IPCThreadState.h │ ├── IPermissionController.h │ ├── IProcessInfoService.h │ ├── IResultReceiver.h │ ├── IServiceManager.h │ ├── IShellCallback.h │ ├── IUidObserver.h │ ├── IpPrefix.h │ ├── Map.h │ ├── MemoryBase.h │ ├── MemoryDealer.h │ ├── MemoryHeapBase.h │ ├── Parcel.h │ ├── ParcelFileDescriptor.h │ ├── Parcelable.h │ ├── PermissionCache.h │ ├── PermissionController.h │ ├── PersistableBundle.h │ ├── ProcessInfoService.h │ ├── ProcessState.h │ ├── SafeInterface.h │ ├── Status.h │ ├── TextOutput.h │ └── Value.h └── private │ └── binder │ ├── ParcelValTypes.h │ ├── Static.h │ └── binder_module.h ├── ndk ├── .clang-format ├── Android.bp ├── NOTICE ├── ibinder.cpp ├── ibinder_internal.h ├── ibinder_jni.cpp ├── include_apex │ └── android │ │ ├── binder_manager.h │ │ └── binder_process.h ├── include_ndk │ └── android │ │ ├── binder_auto_utils.h │ │ ├── binder_ibinder.h │ │ ├── binder_ibinder_jni.h │ │ ├── binder_interface_utils.h │ │ ├── binder_parcel.h │ │ ├── binder_parcel_utils.h │ │ └── binder_status.h ├── libbinder_ndk.map.txt ├── parcel.cpp ├── parcel_internal.h ├── process.cpp ├── runtests.sh ├── scripts │ ├── format.sh │ ├── gen_parcel_helper.py │ └── init_map.sh ├── service_manager.cpp ├── status.cpp ├── status_internal.h ├── test │ ├── Android.bp │ ├── iface.cpp │ ├── include │ │ └── iface │ │ │ └── iface.h │ ├── main_client.cpp │ └── main_server.cpp └── update.sh └── tests ├── Android.bp ├── CMakeLists.txt ├── binderDriverInterfaceTest.cpp ├── binderLibTest.cpp ├── binderSafeInterfaceTest.cpp ├── binderTextOutputTest.cpp ├── binderThroughputTest.cpp ├── binderValueTypeTest.cpp └── schd-dbg.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/.clang-format -------------------------------------------------------------------------------- /ActivityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ActivityManager.cpp -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/Android.bp -------------------------------------------------------------------------------- /AppOpsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/AppOpsManager.cpp -------------------------------------------------------------------------------- /Binder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/Binder.cpp -------------------------------------------------------------------------------- /BpBinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/BpBinder.cpp -------------------------------------------------------------------------------- /BufferedTextOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/BufferedTextOutput.cpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/Debug.cpp -------------------------------------------------------------------------------- /IActivityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IActivityManager.cpp -------------------------------------------------------------------------------- /IAppOpsCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IAppOpsCallback.cpp -------------------------------------------------------------------------------- /IAppOpsService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IAppOpsService.cpp -------------------------------------------------------------------------------- /IBatteryStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IBatteryStats.cpp -------------------------------------------------------------------------------- /IInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IInterface.cpp -------------------------------------------------------------------------------- /IMediaResourceMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IMediaResourceMonitor.cpp -------------------------------------------------------------------------------- /IMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IMemory.cpp -------------------------------------------------------------------------------- /IPCThreadState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IPCThreadState.cpp -------------------------------------------------------------------------------- /IPermissionController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IPermissionController.cpp -------------------------------------------------------------------------------- /IProcessInfoService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IProcessInfoService.cpp -------------------------------------------------------------------------------- /IResultReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IResultReceiver.cpp -------------------------------------------------------------------------------- /IServiceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IServiceManager.cpp -------------------------------------------------------------------------------- /IShellCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IShellCallback.cpp -------------------------------------------------------------------------------- /IUidObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IUidObserver.cpp -------------------------------------------------------------------------------- /IpPrefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/IpPrefix.cpp -------------------------------------------------------------------------------- /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MemoryBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/MemoryBase.cpp -------------------------------------------------------------------------------- /MemoryDealer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/MemoryDealer.cpp -------------------------------------------------------------------------------- /MemoryHeapBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/MemoryHeapBase.cpp -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/NOTICE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/OWNERS -------------------------------------------------------------------------------- /Parcel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/Parcel.cpp -------------------------------------------------------------------------------- /ParcelFileDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ParcelFileDescriptor.cpp -------------------------------------------------------------------------------- /PermissionCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/PermissionCache.cpp -------------------------------------------------------------------------------- /PermissionController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/PermissionController.cpp -------------------------------------------------------------------------------- /PersistableBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/PersistableBundle.cpp -------------------------------------------------------------------------------- /ProcessInfoService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ProcessInfoService.cpp -------------------------------------------------------------------------------- /ProcessState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ProcessState.cpp -------------------------------------------------------------------------------- /Static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/Static.cpp -------------------------------------------------------------------------------- /Status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/Status.cpp -------------------------------------------------------------------------------- /TextOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/TextOutput.cpp -------------------------------------------------------------------------------- /Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/Value.cpp -------------------------------------------------------------------------------- /aidl/android/content/pm/IPackageManagerNative.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/aidl/android/content/pm/IPackageManagerNative.aidl -------------------------------------------------------------------------------- /aidl/android/content/pm/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/aidl/android/content/pm/OWNERS -------------------------------------------------------------------------------- /include/binder/ActivityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/ActivityManager.h -------------------------------------------------------------------------------- /include/binder/AppOpsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/AppOpsManager.h -------------------------------------------------------------------------------- /include/binder/Binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/Binder.h -------------------------------------------------------------------------------- /include/binder/BinderService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/BinderService.h -------------------------------------------------------------------------------- /include/binder/BpBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/BpBinder.h -------------------------------------------------------------------------------- /include/binder/BufferedTextOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/BufferedTextOutput.h -------------------------------------------------------------------------------- /include/binder/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/Debug.h -------------------------------------------------------------------------------- /include/binder/IActivityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IActivityManager.h -------------------------------------------------------------------------------- /include/binder/IAppOpsCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IAppOpsCallback.h -------------------------------------------------------------------------------- /include/binder/IAppOpsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IAppOpsService.h -------------------------------------------------------------------------------- /include/binder/IBatteryStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IBatteryStats.h -------------------------------------------------------------------------------- /include/binder/IBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IBinder.h -------------------------------------------------------------------------------- /include/binder/IInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IInterface.h -------------------------------------------------------------------------------- /include/binder/IMediaResourceMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IMediaResourceMonitor.h -------------------------------------------------------------------------------- /include/binder/IMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IMemory.h -------------------------------------------------------------------------------- /include/binder/IPCThreadState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IPCThreadState.h -------------------------------------------------------------------------------- /include/binder/IPermissionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IPermissionController.h -------------------------------------------------------------------------------- /include/binder/IProcessInfoService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IProcessInfoService.h -------------------------------------------------------------------------------- /include/binder/IResultReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IResultReceiver.h -------------------------------------------------------------------------------- /include/binder/IServiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IServiceManager.h -------------------------------------------------------------------------------- /include/binder/IShellCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IShellCallback.h -------------------------------------------------------------------------------- /include/binder/IUidObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IUidObserver.h -------------------------------------------------------------------------------- /include/binder/IpPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/IpPrefix.h -------------------------------------------------------------------------------- /include/binder/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/Map.h -------------------------------------------------------------------------------- /include/binder/MemoryBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/MemoryBase.h -------------------------------------------------------------------------------- /include/binder/MemoryDealer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/MemoryDealer.h -------------------------------------------------------------------------------- /include/binder/MemoryHeapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/MemoryHeapBase.h -------------------------------------------------------------------------------- /include/binder/Parcel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/Parcel.h -------------------------------------------------------------------------------- /include/binder/ParcelFileDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/ParcelFileDescriptor.h -------------------------------------------------------------------------------- /include/binder/Parcelable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/Parcelable.h -------------------------------------------------------------------------------- /include/binder/PermissionCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/PermissionCache.h -------------------------------------------------------------------------------- /include/binder/PermissionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/PermissionController.h -------------------------------------------------------------------------------- /include/binder/PersistableBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/PersistableBundle.h -------------------------------------------------------------------------------- /include/binder/ProcessInfoService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/ProcessInfoService.h -------------------------------------------------------------------------------- /include/binder/ProcessState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/ProcessState.h -------------------------------------------------------------------------------- /include/binder/SafeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/SafeInterface.h -------------------------------------------------------------------------------- /include/binder/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/Status.h -------------------------------------------------------------------------------- /include/binder/TextOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/TextOutput.h -------------------------------------------------------------------------------- /include/binder/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/binder/Value.h -------------------------------------------------------------------------------- /include/private/binder/ParcelValTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/private/binder/ParcelValTypes.h -------------------------------------------------------------------------------- /include/private/binder/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/private/binder/Static.h -------------------------------------------------------------------------------- /include/private/binder/binder_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/include/private/binder/binder_module.h -------------------------------------------------------------------------------- /ndk/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/.clang-format -------------------------------------------------------------------------------- /ndk/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/Android.bp -------------------------------------------------------------------------------- /ndk/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/NOTICE -------------------------------------------------------------------------------- /ndk/ibinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/ibinder.cpp -------------------------------------------------------------------------------- /ndk/ibinder_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/ibinder_internal.h -------------------------------------------------------------------------------- /ndk/ibinder_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/ibinder_jni.cpp -------------------------------------------------------------------------------- /ndk/include_apex/android/binder_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/include_apex/android/binder_manager.h -------------------------------------------------------------------------------- /ndk/include_apex/android/binder_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/include_apex/android/binder_process.h -------------------------------------------------------------------------------- /ndk/include_ndk/android/binder_auto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/include_ndk/android/binder_auto_utils.h -------------------------------------------------------------------------------- /ndk/include_ndk/android/binder_ibinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/include_ndk/android/binder_ibinder.h -------------------------------------------------------------------------------- /ndk/include_ndk/android/binder_ibinder_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/include_ndk/android/binder_ibinder_jni.h -------------------------------------------------------------------------------- /ndk/include_ndk/android/binder_interface_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/include_ndk/android/binder_interface_utils.h -------------------------------------------------------------------------------- /ndk/include_ndk/android/binder_parcel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/include_ndk/android/binder_parcel.h -------------------------------------------------------------------------------- /ndk/include_ndk/android/binder_parcel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/include_ndk/android/binder_parcel_utils.h -------------------------------------------------------------------------------- /ndk/include_ndk/android/binder_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/include_ndk/android/binder_status.h -------------------------------------------------------------------------------- /ndk/libbinder_ndk.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/libbinder_ndk.map.txt -------------------------------------------------------------------------------- /ndk/parcel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/parcel.cpp -------------------------------------------------------------------------------- /ndk/parcel_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/parcel_internal.h -------------------------------------------------------------------------------- /ndk/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/process.cpp -------------------------------------------------------------------------------- /ndk/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/runtests.sh -------------------------------------------------------------------------------- /ndk/scripts/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/scripts/format.sh -------------------------------------------------------------------------------- /ndk/scripts/gen_parcel_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/scripts/gen_parcel_helper.py -------------------------------------------------------------------------------- /ndk/scripts/init_map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/scripts/init_map.sh -------------------------------------------------------------------------------- /ndk/service_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/service_manager.cpp -------------------------------------------------------------------------------- /ndk/status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/status.cpp -------------------------------------------------------------------------------- /ndk/status_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/status_internal.h -------------------------------------------------------------------------------- /ndk/test/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/test/Android.bp -------------------------------------------------------------------------------- /ndk/test/iface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/test/iface.cpp -------------------------------------------------------------------------------- /ndk/test/include/iface/iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/test/include/iface/iface.h -------------------------------------------------------------------------------- /ndk/test/main_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/test/main_client.cpp -------------------------------------------------------------------------------- /ndk/test/main_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/test/main_server.cpp -------------------------------------------------------------------------------- /ndk/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/ndk/update.sh -------------------------------------------------------------------------------- /tests/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/tests/Android.bp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/binderDriverInterfaceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/tests/binderDriverInterfaceTest.cpp -------------------------------------------------------------------------------- /tests/binderLibTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/tests/binderLibTest.cpp -------------------------------------------------------------------------------- /tests/binderSafeInterfaceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/tests/binderSafeInterfaceTest.cpp -------------------------------------------------------------------------------- /tests/binderTextOutputTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/tests/binderTextOutputTest.cpp -------------------------------------------------------------------------------- /tests/binderThroughputTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/tests/binderThroughputTest.cpp -------------------------------------------------------------------------------- /tests/binderValueTypeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/tests/binderValueTypeTest.cpp -------------------------------------------------------------------------------- /tests/schd-dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D-os/libbinder/HEAD/tests/schd-dbg.cpp --------------------------------------------------------------------------------