rename FileReader::load() -> FileReader::read()

This commit is contained in:
Josh Holtrop 2016-07-05 19:10:32 -04:00
parent 1e140f9229
commit b58c344604
3 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ bool FileLoader::load(const char * fname)
{
size_t size;
if (!FileReader::load(fname, &m_buf, &size))
if (!FileReader::read(fname, &m_buf, &size))
{
return false;
}

View File

@ -19,11 +19,11 @@
* @param[out] size Set to length of the file. If the return value is true
* and *size is 0, then no buffer was allocated and *buf should not be used.
*
* @retval false The file failed to load. In this case the output parameter
* @retval false The file failed to read. In this case the output parameter
* values *buf and *size should not be used.
* @retval true The file was loaded successfully.
* @retval true The file was read successfully.
*/
bool FileReader::load(const char * fname, uint8_t ** buf, size_t * size)
bool FileReader::read(const char * fname, uint8_t ** buf, size_t * size)
{
struct stat st;
if (stat(fname, &st) != 0)
@ -53,7 +53,7 @@ bool FileReader::load(const char * fname, uint8_t ** buf, size_t * size)
off_t n_bytes_read = 0u;
for (;;)
{
off_t rd_size = read(fd, &(*buf)[n_bytes_read], st.st_size - n_bytes_read);
off_t rd_size = ::read(fd, &(*buf)[n_bytes_read], st.st_size - n_bytes_read);
if (rd_size <= 0)
break;
n_bytes_read += rd_size;

View File

@ -7,7 +7,7 @@
class FileReader
{
public:
static bool load(const char * fname, uint8_t ** buf, size_t * size);
static bool read(const char * fname, uint8_t ** buf, size_t * size);
};
#endif