Home
last modified time | relevance | path

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

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