Lines Matching refs:CNfcParam
69 class CNfcParam : public string class
72 CNfcParam();
73 CNfcParam(const char* name, const string& value);
74 CNfcParam(const char* name, unsigned long value);
75 virtual ~CNfcParam();
84 class CNfcConfig : public vector<const CNfcParam*>
97 const CNfcParam* find(const char* p_name) const;
104 void add(const CNfcParam* pParam);
105 list<const CNfcParam*> m_list;
205 CNfcParam* pParam = NULL; in readConfig()
366 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
368 pParam = new CNfcParam(token.c_str(), numValue); in readConfig()
379 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
475 const CNfcParam* pParam = find(name); in getValue()
490 const CNfcParam* pParam = find(name); in getValue()
524 const CNfcParam* pParam = find(name); in getValue()
548 const CNfcParam* pParam = find(name); in getValue()
569 const CNfcParam* CNfcConfig::find(const char* p_name) const in find()
626 void CNfcConfig::add(const CNfcParam* pParam) in add()
633 …for (list<const CNfcParam*>::iterator it = m_list.begin(), itEnd = m_list.end(); it != itEnd; ++it) in add()
657 …for (list<const CNfcParam*>::iterator it = m_list.begin(), itEnd = m_list.end(); it != itEnd; ++it) in moveFromList()
823 CNfcParam::CNfcParam() : in CNfcParam() function in CNfcParam
837 CNfcParam::~CNfcParam() in ~CNfcParam()
850 CNfcParam::CNfcParam(const char* name, const string& value) : in CNfcParam() function in CNfcParam
866 CNfcParam::CNfcParam(const char* name, unsigned long value) : in CNfcParam() function in CNfcParam
926 const CNfcParam* pParam = rConfig.find(name); in GetNxpNumValue()