Home
last modified time | relevance | path

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

/freebsd-14-stable/usr.bin/mkimg/
HDimage.c354 ssize_t rdsz; in image_copyin_stream() local
374 rdsz = read(fd, &buffer[iof], iosz); in image_copyin_stream()
375 if (rdsz > 0) in image_copyin_stream()
376 error = image_chunk_copyin(blk, &buffer[iof], rdsz, swofs, in image_copyin_stream()
378 else if (rdsz < 0) in image_copyin_stream()
387 bytesize += rdsz; in image_copyin_stream()
388 blk += (rdsz + secsz - 1) / secsz; in image_copyin_stream()
389 } while (rdsz > 0); in image_copyin_stream()