OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_env_vec
(Results
1 - 2
of
2
) sorted by null
/external/lldb/tools/debugserver/source/
RNBContext.h
60
m_env_vec
()
92
int EnvironmentCount () const { return
m_env_vec
.size(); }
94
void PushEnvironment (const char *arg) { if (arg)
m_env_vec
.push_back (arg); }
95
void ClearEnvironment () {
m_env_vec
.erase (
m_env_vec
.begin(),
m_env_vec
.end()); }
134
std::vector<std::string>
m_env_vec
; // This will be unparsed - entries FOO=value
member in class:RNBContext
RNBContext.cpp
40
if (index <
m_env_vec
.size())
41
return
m_env_vec
[index].c_str();
Completed in 148 milliseconds