Lines Matching refs:pValue
58 bool getValue(const char* name, char* pValue, size_t& len) const;
415 bool CNfcConfig::getValue(const char* name, char* pValue, size_t& len) const in getValue() argument
423 memset(pValue, 0, len); in getValue()
426 memcpy(pValue, pParam->str_value(), len); in getValue()
662 extern "C" int GetStrValue(const char* name, char* pValue, unsigned long l) in GetStrValue() argument
667 bool b = rConfig.getValue(name, pValue, len); in GetStrValue()
680 extern "C" int GetNumValue(const char* name, void* pValue, unsigned long len) in GetNumValue() argument
682 if (!pValue) in GetNumValue()
703 *(static_cast<unsigned long*>(pValue)) = (unsigned long)v; in GetNumValue()
706 *(static_cast<unsigned short*>(pValue)) = (unsigned short)v; in GetNumValue()
709 *(static_cast<unsigned char*> (pValue)) = (unsigned char)v; in GetNumValue()