Home
last modified time | relevance | path

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

/NW4C-1.2.23/sources/libraries/io/
Dio_RomFileStream.cpp163 s32 readBytes = nn::fs::ReadFile( &m_File, buf, length ); in Read() local
164 if ( readBytes > 0 ) in Read()
166 m_FilePosition.Skip( readBytes ); in Read()
168 return readBytes; in Read()
173 s32 readBytes = m_pOpenedFileReader->Read( buf, length ); in Read() local
174 if ( readBytes > 0 ) in Read()
176 m_FilePosition.Skip( readBytes ); in Read()
178 return readBytes; in Read()
Dio_HioFileStream.cpp169 s32 readBytes = m_pOpenedFile->Read( buf, length ); in Read() local
170 if ( readBytes > 0 ) in Read()
172 m_FilePosition.Skip( readBytes ); in Read()
174 return readBytes; in Read()