Lines Matching refs:strKey
132 Utf8Str GuestEnvironment::Get(const Utf8Str &strKey)
134 std::map <Utf8Str, Utf8Str>::const_iterator itEnv = mEnvironment.find(strKey);
141 bool GuestEnvironment::Has(const Utf8Str &strKey)
143 std::map <Utf8Str, Utf8Str>::const_iterator itEnv = mEnvironment.find(strKey);
147 int GuestEnvironment::Set(const Utf8Str &strKey, const Utf8Str &strValue)
150 if (strKey.isEmpty())
154 const char *pszString = strKey.c_str();
164 mEnvironment[strKey] = strValue;
181 Utf8Str strKey = listPair.at(p++);
182 if ( strKey.isEmpty()
183 || strKey.equals("=")) /* Skip pairs with empty keys (e.g. "=FOO"). */
192 LogFlowFunc(("strKey=%s, strValue=%s\n",
193 strKey.c_str(), strValue.c_str()));
195 rc = Set(strKey, strValue);
206 int GuestEnvironment::Unset(const Utf8Str &strKey)
208 std::map <Utf8Str, Utf8Str>::iterator itEnv = mEnvironment.find(strKey);