Lines Matching refs:msg
181 uptr msg = reinterpret_cast<uptr>(m_CommandListBegin); in FlushCommand() local
188 m_SendCommandQueue.Enqueue( msg ); in FlushCommand()
192 if ( ! m_SendCommandQueue.TryEnqueue( msg ) ) { in FlushCommand()
245 uptr msg; in RecvCommandReply() local
246 while( m_RecvCommandQueue.TryDequeue( &msg ) ) in RecvCommandReply()
248 DriverCommand* commandList = reinterpret_cast<DriverCommand*>(msg); in RecvCommandReply()
256 uptr msg = m_RecvCommandQueue.Dequeue(); in WaitCommandReply() local
257 DriverCommand* commandList = reinterpret_cast<DriverCommand*>(msg); in WaitCommandReply()
266 uptr msg; in ProcessCommand() local
267 while( m_SendCommandQueue.TryDequeue( &msg ) ) in ProcessCommand()
269 DriverCommand* commandList = reinterpret_cast<DriverCommand*>(msg); in ProcessCommand()
275 m_RecvCommandQueue.Enqueue( msg ); in ProcessCommand()