Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/tools/gdb/
H A Dgdbsend.c29 struct stat ist; in main() local
83 if (fstat(ifd, &ist) < 0) in main()
86 if ((image = (char *)malloc(ist.st_size)) == NULL) in main()
87 Perror("can't allocate %ld bytes for image", ist.st_size); in main()
89 if ((c = read(ifd, image, ist.st_size)) < 0) in main()
90 Perror("read of %d bytes from '%s' failed", ist.st_size, ifn); in main()
92 if (c != ist.st_size) in main()
93 Error("read of %ld bytes from '%s' failed (%d)", ist.st_size, ifn, c); in main()
106 remote_write_bytes(addr, image, ist.st_size); in main()