Home
last modified time | relevance | path

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

/openbmc/phosphor-bmc-code-mgmt/bmc/
H A Dsoftware_utils.cpp13 ssize_t nRead = 0; in writeToFile() local
16 while ((nRead = read(imageFd, buf, bSize)) > 0) in writeToFile()
18 if (fwrite(buf, 1, nRead, outStream) != (size_t)nRead) in writeToFile()
24 if (nRead < 0) in writeToFile()
/openbmc/u-boot/fs/yaffs2/
H A Dyaffsfs.c1073 int nRead = 0; in yaffsfs_do_read() local
1138 nRead = 0; in yaffsfs_do_read()
1140 nRead = yaffs_file_rd(obj, buf, pos, nToRead); in yaffsfs_do_read()
1142 if (nRead > 0) { in yaffsfs_do_read()
1143 totalRead += nRead; in yaffsfs_do_read()
1144 pos += nRead; in yaffsfs_do_read()
1145 buf += nRead; in yaffsfs_do_read()
1148 if (nRead == nToRead) in yaffsfs_do_read()
1149 nbyte -= nRead; in yaffsfs_do_read()