Lines Matching refs:CNfcParam

108 class CNfcParam : public string {  class
110 CNfcParam();
111 CNfcParam(const char* name, const string& value);
112 CNfcParam(const char* name, unsigned long value);
113 virtual ~CNfcParam();
123 class CNfcConfig : public vector<const CNfcParam*> {
135 const CNfcParam* find(const char* p_name) const;
143 void add(const CNfcParam* pParam);
144 list<const CNfcParam*> m_list;
266 CNfcParam* pParam = NULL; in readConfig()
383 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
385 pParam = new CNfcParam(token.c_str(), numValue); in readConfig()
395 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
490 const CNfcParam* pParam = find(name); in getValue()
503 const CNfcParam* pParam = find(name); in getValue()
531 const CNfcParam* pParam = find(name); in getValue()
552 const CNfcParam* pParam = find(name); in getValue()
571 const CNfcParam* CNfcConfig::find(const char* p_name) const { in find()
617 void CNfcConfig::add(const CNfcParam* pParam) { in add()
622 for (list<const CNfcParam*>::iterator it = m_list.begin(), in add()
644 for (list<const CNfcParam*>::iterator it = m_list.begin(), in moveFromList()
706 CNfcParam::CNfcParam() : m_numValue(0) {} in CNfcParam() function in CNfcParam
717 CNfcParam::~CNfcParam() {} in ~CNfcParam()
728 CNfcParam::CNfcParam(const char* name, const string& value) in CNfcParam() function in CNfcParam
740 CNfcParam::CNfcParam(const char* name, unsigned long value) in CNfcParam() function in CNfcParam
797 const CNfcParam* pParam = rConfig.find(name); in GetNxpNumValue()