Lines Matching refs:pValue
58 bool getValue(const char* name, char* pValue, size_t& len) const;
400 bool CNfcConfig::getValue(const char* name, char* pValue, size_t& len) const in getValue() argument
408 memset(pValue, 0, len); in getValue()
411 memcpy(pValue, pParam->str_value(), len); in getValue()
647 extern "C" int GetStrValue(const char* name, char* pValue, unsigned long l) in GetStrValue() argument
652 bool b = rConfig.getValue(name, pValue, len); in GetStrValue()
665 extern "C" int GetNumValue(const char* name, void* pValue, unsigned long len) in GetNumValue() argument
667 if (!pValue) in GetNumValue()
688 *(static_cast<unsigned long*>(pValue)) = (unsigned long)v; in GetNumValue()
691 *(static_cast<unsigned short*>(pValue)) = (unsigned short)v; in GetNumValue()
694 *(static_cast<unsigned char*> (pValue)) = (unsigned char)v; in GetNumValue()