Lines Matching refs:_state_flags
197 _state_flags = 0; in Reset()
207 _state_flags = 0; in CNetHandler()
480 if (this->_state_flags != 0) in Unlink()
498 this->_state_flags |= STATE_IN_CONNECT; in SwitchToConn()
513 this->_state_flags |= STATE_IN_SEND; in SwitchToSend()
528 this->_state_flags |= STATE_IN_RECV; in SwitchToRecv()
543 this->_state_flags |= STATE_IN_IDLE; in SwitchToIdle()
556 if (_state_flags == 0) in DetachConn()
561 if (_state_flags & STATE_IN_CONNECT) in DetachConn()
564 _state_flags &= ~STATE_IN_CONNECT; in DetachConn()
567 if (_state_flags & STATE_IN_SEND) in DetachConn()
570 _state_flags &= ~STATE_IN_SEND; in DetachConn()
573 if (_state_flags & STATE_IN_RECV) in DetachConn()
576 _state_flags &= ~STATE_IN_RECV; in DetachConn()
579 if (_state_flags & STATE_IN_IDLE) in DetachConn()
582 _state_flags &= ~STATE_IN_IDLE; in DetachConn()
636 this->_state_flags |= STATE_IN_SESSION; in RegistSession()
642 if (this->_state_flags & STATE_IN_SESSION) in UnRegistSession()
645 this->_state_flags &= ~STATE_IN_SESSION; in UnRegistSession()