Lines Matching refs:m_pFileTable
35 : m_pFileTable ( NULL ), in SoundDataManager()
97 m_pFileTable = NULL; in Finalize()
115 m_pFileTable = reinterpret_cast< FileTable* >(*buffer); in CreateFileAddressTable()
119 m_pFileTable->count = arc->detail_GetFileCount(); in CreateFileAddressTable()
120 for( u32 i = 0 ; i < m_pFileTable->count ; i++ ) in CreateFileAddressTable()
122 m_pFileTable->item[ i ].address = NULL; in CreateFileAddressTable()
142 if ( m_pFileTable != NULL ) in InvalidateData()
144 for( u32 i = 0 ; i < m_pFileTable->count ; i++ ) in InvalidateData()
146 const void* addr = m_pFileTable->item[ i ].address; in InvalidateData()
149 m_pFileTable->item[ i ].address = NULL; in InvalidateData()
214 if ( m_pFileTable == NULL ) in SetFileAddressToTable()
217 m_pFileTable != NULL, in SetFileAddressToTable()
223 NW_MINMAXLT_ASSERT( fileId, 0, m_pFileTable->count ); in SetFileAddressToTable()
225 const void* preAddress = m_pFileTable->item[ fileId ].address; in SetFileAddressToTable()
226 m_pFileTable->item[ fileId ].address = address; in SetFileAddressToTable()
242 if ( m_pFileTable == NULL ) in GetFileAddressFromTable()
245 m_pFileTable != NULL, in GetFileAddressFromTable()
251 if ( fileId >= m_pFileTable->count ) return NULL; in GetFileAddressFromTable()
253 return m_pFileTable->item[ fileId ].address; in GetFileAddressFromTable()
276 for ( u32 i = 0; i < m_pFileTable->count; i++ ) in detail_GetFileIdFromTable()
278 if ( address == m_pFileTable->item[i].address ) in detail_GetFileIdFromTable()