Lines Matching refs:m_pFileTable
33 : m_pFileTable ( NULL ), in SoundDataManager()
95 m_pFileTable = NULL; in Finalize()
113 m_pFileTable = reinterpret_cast< FileTable* >(*buffer); in CreateFileAddressTable()
117 m_pFileTable->count = arc->detail_GetFileCount(); in CreateFileAddressTable()
118 for( u32 i = 0 ; i < m_pFileTable->count ; i++ ) in CreateFileAddressTable()
120 m_pFileTable->item[ i ].address = NULL; in CreateFileAddressTable()
140 if ( m_pFileTable != NULL ) in InvalidateData()
142 for( u32 i = 0 ; i < m_pFileTable->count ; i++ ) in InvalidateData()
144 const void* addr = m_pFileTable->item[ i ].address; in InvalidateData()
147 m_pFileTable->item[ i ].address = NULL; in InvalidateData()
212 if ( m_pFileTable == NULL ) in SetFileAddressToTable()
215 m_pFileTable != NULL, in SetFileAddressToTable()
221 NW_MINMAXLT_ASSERT( fileId, 0, m_pFileTable->count ); in SetFileAddressToTable()
223 const void* preAddress = m_pFileTable->item[ fileId ].address; in SetFileAddressToTable()
224 m_pFileTable->item[ fileId ].address = address; in SetFileAddressToTable()
240 if ( m_pFileTable == NULL ) in GetFileAddressFromTable()
243 m_pFileTable != NULL, in GetFileAddressFromTable()
249 if ( fileId >= m_pFileTable->count ) return NULL; in GetFileAddressFromTable()
251 return m_pFileTable->item[ fileId ].address; in GetFileAddressFromTable()
274 for ( u32 i = 0; i < m_pFileTable->count; i++ ) in detail_GetFileIdFromTable()
276 if ( address == m_pFileTable->item[i].address ) in detail_GetFileIdFromTable()