summaryrefslogtreecommitdiffstats
path: root/minadbd/fuse_adb_provider.h
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-02-27 17:53:58 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-27 17:53:58 +0100
commitd1b078df3339513b42772d12927b7887da277fc1 (patch)
tree01a6acebfda6a158cf2f961813b853bc80426b1d /minadbd/fuse_adb_provider.h
parentRemove more dead code from minzip. (diff)
parentam 3deba524: am ecead276: Merge "Add tests for read_block_adb." (diff)
downloadandroid_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.gz
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.bz2
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.lz
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.xz
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.zst
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.zip
Diffstat (limited to 'minadbd/fuse_adb_provider.h')
-rw-r--r--minadbd/fuse_adb_provider.h11
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