Home
last modified time | relevance | path

Searched refs:ptn (Results 1 – 2 of 2) sorted by relevance

/system/core/fastboot/
Dfastboot.h53 void fb_queue_flash(const char *ptn, void *data, uint32_t sz);
54 void fb_queue_flash_sparse(const char* ptn, struct sparse_file* s, uint32_t sz, size_t current,
56 void fb_queue_erase(const char *ptn);
57 void fb_queue_format(const char *ptn, int skip_if_not_supported, int32_t max_chunk_sz);
Dengine.cpp140 void fb_queue_erase(const char *ptn) in fb_queue_erase() argument
143 a = queue_action(OP_COMMAND, "erase:%s", ptn); in fb_queue_erase()
144 a->msg = mkmsg("erasing '%s'", ptn); in fb_queue_erase()
147 void fb_queue_flash(const char *ptn, void *data, unsigned sz) in fb_queue_flash() argument
154 a->msg = mkmsg("sending '%s' (%d KB)", ptn, sz / 1024); in fb_queue_flash()
156 a = queue_action(OP_COMMAND, "flash:%s", ptn); in fb_queue_flash()
157 a->msg = mkmsg("writing '%s'", ptn); in fb_queue_flash()
160 void fb_queue_flash_sparse(const char* ptn, struct sparse_file* s, unsigned sz, size_t current, in fb_queue_flash_sparse() argument
167 a->msg = mkmsg("sending sparse '%s' %zu/%zu (%d KB)", ptn, current, total, sz / 1024); in fb_queue_flash_sparse()
169 a = queue_action(OP_COMMAND, "flash:%s", ptn); in fb_queue_flash_sparse()
[all …]