summaryrefslogtreecommitdiffstats
path: root/minadbd/fuse_adb_provider.c
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-02-27 17:45:43 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-27 17:45:43 +0100
commit66f94728ef2f4ac09c42c4623ec45d5eac6e9d53 (patch)
treee63321cd9a8715a3500e1fe7c70ee40db7fdc18e /minadbd/fuse_adb_provider.c
parentam 71c45429: am f66bf339: am 3e91f691: Bump up max_map_count value. (diff)
parentam ecead276: Merge "Add tests for read_block_adb." (diff)
downloadandroid_bootable_recovery-66f94728ef2f4ac09c42c4623ec45d5eac6e9d53.tar
android_bootable_recovery-66f94728ef2f4ac09c42c4623ec45d5eac6e9d53.tar.gz
android_bootable_recovery-66f94728ef2f4ac09c42c4623ec45d5eac6e9d53.tar.bz2
android_bootable_recovery-66f94728ef2f4ac09c42c4623ec45d5eac6e9d53.tar.lz
android_bootable_recovery-66f94728ef2f4ac09c42c4623ec45d5eac6e9d53.tar.xz
android_bootable_recovery-66f94728ef2f4ac09c42c4623ec45d5eac6e9d53.tar.zst
android_bootable_recovery-66f94728ef2f4ac09c42c4623ec45d5eac6e9d53.zip
Diffstat (limited to 'minadbd/fuse_adb_provider.c')
-rw-r--r--minadbd/fuse_adb_provider.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/minadbd/fuse_adb_provider.c b/minadbd/fuse_adb_provider.c
index 0d710727d..5da7fd76c 100644
--- a/minadbd/fuse_adb_provider.c
+++ b/minadbd/fuse_adb_provider.c
@@ -23,16 +23,11 @@
#include "adb.h"
#include "adb_io.h"
+#include "fuse_adb_provider.h"
#include "fuse_sideload.h"
-struct adb_data {
- int sfd; // file descriptor for the adb channel
-
- uint64_t file_size;
- uint32_t block_size;
-};
-
-static int read_block_adb(void* cookie, uint32_t block, uint8_t* buffer, uint32_t fetch_size) {
+int read_block_adb(void* cookie, uint32_t block, uint8_t* buffer,
+ uint32_t fetch_size) {
struct adb_data* ad = (struct adb_data*)cookie;
char buf[10];