PrepareCache();
}
- String* pValue = (String*)stringList.GetValue(key);
+ String* pValue = (String*)stringList.GetValue(tizenKey);
if(pValue != null)
{
{
r = E_OBJ_NOT_FOUND;
}
- else if (key == _DUID)
+ else if (tizenKey == _DUID)
{
int ret = 0;
TapiHandle* handle = null;
tel_deinit(handle);
}
_SystemClient* pSystemClient = _SystemClient::GetInstance();
- r = pSystemClient->GetValue(key, value);
+ r = pSystemClient->GetValue(tizenKey, value);
}
else
{
if(r != E_SUCCESS)
{
_SystemClient* pSystemClient = _SystemClient::GetInstance();
- r = pSystemClient->GetValue(key, value);
+ r = pSystemClient->GetValue(tizenKey, value);
}
}
if( r == E_SUCCESS)
{
- stringList.Add(new String(key), new String(value));
+ stringList.Add(new String(tizenKey), new String(value));
}
return r;
}
PrepareCache();
}
- Integer* pValue = (Integer*)integerList.GetValue(key);
+ Integer* pValue = (Integer*)integerList.GetValue(tizenKey);
if(pValue != null)
{
if(r != E_SUCCESS)
{
_SystemClient* pSystemClient = _SystemClient::GetInstance();
- r = pSystemClient->GetValue(key, value);
+ r = pSystemClient->GetValue(tizenKey, value);
}
}
if(r == E_SUCCESS)
{
- integerList.Add(new String(key), new Integer(value));
+ integerList.Add(new String(tizenKey), new Integer(value));
}
return r;
PrepareCache();
}
- Boolean* pValue = (Boolean*)boolList.GetValue(key);
+ Boolean* pValue = (Boolean*)boolList.GetValue(tizenKey);
if(pValue != null)
{
if(r != E_SUCCESS)
{
_SystemClient* pSystemClient = _SystemClient::GetInstance();
- r = pSystemClient->GetValue(key, value);
+ r = pSystemClient->GetValue(tizenKey, value);
}
SysTryReturnResult(NID_SYS, r == E_SUCCESS, E_OBJ_NOT_FOUND, "It is failed to get the key[%ls]", tizenKey.GetPointer());
if(r == E_SUCCESS)
{
- boolList.Add(new String(key), new Boolean(value));
+ boolList.Add(new String(tizenKey), new Boolean(value));
}
return r;