Home
last modified time | relevance | path

Searched refs:m_env_vec (Results 1 – 2 of 2) sorted by relevance

/external/lldb/tools/debugserver/source/
DRNBContext.h60 m_env_vec () in RNBContext()
92 int EnvironmentCount () const { return m_env_vec.size(); } in EnvironmentCount()
94 void PushEnvironment (const char *arg) { if (arg) m_env_vec.push_back (arg); } in PushEnvironment()
95 void ClearEnvironment () { m_env_vec.erase (m_env_vec.begin(), m_env_vec.end()); } in ClearEnvironment()
134 std::vector<std::string> m_env_vec; // This will be unparsed - entries FOO=value variable
DRNBContext.cpp40 if (index < m_env_vec.size()) in EnvironmentAtIndex()
41 return m_env_vec[index].c_str(); in EnvironmentAtIndex()