Lines Matching refs:argv
11 static int do_unzip(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) in do_unzip() argument
18 dst_len = simple_strtoul(argv[3], NULL, 16); in do_unzip()
21 src = simple_strtoul(argv[1], NULL, 16); in do_unzip()
22 dst = simple_strtoul(argv[2], NULL, 16); in do_unzip()
44 int argc, char * const argv[]) in do_gzwrite() argument
56 ret = blk_get_device_by_str(argv[1], argv[2], &bdev); in do_gzwrite()
60 addr = (unsigned char *)simple_strtoul(argv[3], NULL, 16); in do_gzwrite()
61 length = simple_strtoul(argv[4], NULL, 16); in do_gzwrite()
64 writebuf = simple_strtoul(argv[5], NULL, 16); in do_gzwrite()
66 startoffs = simple_strtoull(argv[6], NULL, 16); in do_gzwrite()
68 szexpected = simple_strtoull(argv[7], in do_gzwrite()