Lines Matching refs:pValue
59 bool getValue(const char* name, char* pValue, size_t& len) const;
411 bool CNfcConfig::getValue(const char* name, char* pValue, size_t& len) const in getValue() argument
419 memset(pValue, 0, len); in getValue()
422 memcpy(pValue, pParam->str_value(), len); in getValue()
658 extern "C" int GetStrValue(const char* name, char* pValue, unsigned long l) in GetStrValue() argument
663 bool b = rConfig.getValue(name, pValue, len); in GetStrValue()
676 extern "C" int GetNumValue(const char* name, void* pValue, unsigned long len) in GetNumValue() argument
678 if (!pValue) in GetNumValue()
699 *(static_cast<unsigned long*>(pValue)) = (unsigned long)v; in GetNumValue()
702 *(static_cast<unsigned short*>(pValue)) = (unsigned short)v; in GetNumValue()
705 *(static_cast<unsigned char*> (pValue)) = (unsigned char)v; in GetNumValue()