OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MtdReadContext
(Results
1 - 6
of
6
) 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)
flash_image.c
78
MtdReadContext
*in = mtd_read_partition(partition);
/system/update_engine/payload_consumer/
mtd_file_descriptor.h
53
std::unique_ptr<
MtdReadContext
, decltype(&mtd_read_close)> read_ctx_;
/external/vboot_reference/futility/
dump_kernel_config_lib.c
49
MtdReadContext
*mtd_ctx = (
MtdReadContext
*)ctx;
/bootable/recovery/applypatch/
applypatch.cpp
148
MtdReadContext
* ctx = NULL;
[
all
...]
Completed in 138 milliseconds