Lines Matching refs:m_variables
25 variable_map_t::const_iterator it = m_variables.find(name); in isVariableDefined()
26 return it != m_variables.end(); in isVariableDefined()
31 variable_map_t::const_iterator it = m_variables.find(name); in getVariableValue()
32 if (it == m_variables.end()) in getVariableValue()
42 variable_map_t::const_iterator it = m_variables.find(name); in getVariableSize()
43 if (it == m_variables.end()) in getVariableSize()
54 variable_map_t::const_iterator it = m_variables.find(name); in setVariable()
55 if (it != m_variables.end() && it->second.m_isLocked) in setVariable()
65 m_variables[name] = info; in setVariable()
70 variable_map_t::const_iterator it = m_variables.find(name); in isVariableLocked()
71 if (it == m_variables.end()) in isVariableLocked()
81 variable_map_t::iterator it = m_variables.find(name); in lockVariable()
82 if (it == m_variables.end()) in lockVariable()
92 variable_map_t::iterator it = m_variables.find(name); in unlockVariable()
93 if (it == m_variables.end()) in unlockVariable()
103 variable_map_t::iterator it = m_variables.begin(); in dump()
104 for (; it != m_variables.end(); ++it) in dump()