HomeSort by relevance Sort by last modified time
    Searched defs:MtdReadContext (Results 1 - 2 of 2) sorted by null

  /bootable/recovery/mtdutils/
mtdutils.h 46 typedef struct MtdReadContext MtdReadContext;
49 MtdReadContext *mtd_read_partition(const MtdPartition *);
50 ssize_t mtd_read_data(MtdReadContext *, char *data, size_t data_len);
51 void mtd_read_close(MtdReadContext *);
mtdutils.c 38 struct MtdReadContext {
257 MtdReadContext *mtd_read_partition(const MtdPartition *partition)
259 MtdReadContext *ctx = (MtdReadContext*) malloc(sizeof(MtdReadContext));
328 ssize_t mtd_read_data(MtdReadContext *ctx, char *data, size_t len)
361 void mtd_read_close(MtdReadContext *ctx)

Completed in 136 milliseconds