Lines Matching refs:pValue
63 bool getValue(const char* name, char* pValue, size_t& len) const;
389 bool CNfcConfig::getValue(const char* name, char* pValue, size_t& len) const { in getValue() argument
391 if (pParam == NULL || pValue== NULL) return false; in getValue()
394 memset(pValue, 0, len); in getValue()
396 memcpy(pValue, pParam->str_value(), len); in getValue()
603 extern "C" int GetStrValue(const char* name, char* pValue, unsigned long l) { in GetStrValue() argument
607 return rConfig.getValue(name, pValue, len); in GetStrValue()
619 extern "C" int GetNumValue(const char* name, void* pValue, unsigned long len) { in GetNumValue() argument
620 if (!pValue) return false; in GetNumValue()
636 *(static_cast<unsigned long*>(pValue)) = (unsigned long)v; in GetNumValue()
639 *(static_cast<unsigned short*>(pValue)) = (unsigned short)v; in GetNumValue()
642 *(static_cast<unsigned char*>(pValue)) = (unsigned char)v; in GetNumValue()