Lines Matching refs:msg
183 uptr msg = reinterpret_cast<uptr>(m_CommandListBegin); in FlushCommand() local
190 m_SendCommandQueue.Enqueue( msg ); in FlushCommand()
194 if ( ! m_SendCommandQueue.TryEnqueue( msg ) ) { in FlushCommand()
247 uptr msg; in RecvCommandReply() local
248 while( m_RecvCommandQueue.TryDequeue( &msg ) ) in RecvCommandReply()
250 DriverCommand* commandList = reinterpret_cast<DriverCommand*>(msg); in RecvCommandReply()
258 uptr msg = m_RecvCommandQueue.Dequeue(); in WaitCommandReply() local
259 DriverCommand* commandList = reinterpret_cast<DriverCommand*>(msg); in WaitCommandReply()
268 uptr msg; in ProcessCommand() local
269 while( m_SendCommandQueue.TryDequeue( &msg ) ) in ProcessCommand()
271 DriverCommand* commandList = reinterpret_cast<DriverCommand*>(msg); in ProcessCommand()
277 m_RecvCommandQueue.Enqueue( msg ); in ProcessCommand()