diff options
author | Dan Albert <danalbert@google.com> | 2015-02-27 17:37:40 +0100 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-02-27 17:37:40 +0100 |
commit | 3deba524f9d1e94b613d9c13f4c76595f0ec99ab (patch) | |
tree | e63321cd9a8715a3500e1fe7c70ee40db7fdc18e /minadbd/fuse_adb_provider.h | |
parent | am cab0beb9: Merge "This read accidentally got turned in to a write." (diff) | |
parent | Merge "Add tests for read_block_adb." (diff) | |
download | android_bootable_recovery-3deba524f9d1e94b613d9c13f4c76595f0ec99ab.tar android_bootable_recovery-3deba524f9d1e94b613d9c13f4c76595f0ec99ab.tar.gz android_bootable_recovery-3deba524f9d1e94b613d9c13f4c76595f0ec99ab.tar.bz2 android_bootable_recovery-3deba524f9d1e94b613d9c13f4c76595f0ec99ab.tar.lz android_bootable_recovery-3deba524f9d1e94b613d9c13f4c76595f0ec99ab.tar.xz android_bootable_recovery-3deba524f9d1e94b613d9c13f4c76595f0ec99ab.tar.zst android_bootable_recovery-3deba524f9d1e94b613d9c13f4c76595f0ec99ab.zip |
Diffstat (limited to 'minadbd/fuse_adb_provider.h')
-rw-r--r-- | minadbd/fuse_adb_provider.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/minadbd/fuse_adb_provider.h b/minadbd/fuse_adb_provider.h index 23de44ab2..b88ce497b 100644 --- a/minadbd/fuse_adb_provider.h +++ b/minadbd/fuse_adb_provider.h @@ -17,10 +17,21 @@ #ifndef __FUSE_ADB_PROVIDER_H #define __FUSE_ADB_PROVIDER_H +#include <stdint.h> + #ifdef __cplusplus extern "C" { #endif +struct adb_data { + int sfd; // file descriptor for the adb channel + + uint64_t file_size; + uint32_t block_size; +}; + +int read_block_adb(void* cookie, uint32_t block, uint8_t* buffer, + uint32_t fetch_size); int run_adb_fuse(int sfd, uint64_t file_size, uint32_t block_size); #ifdef __cplusplus |