Lines Matching refs:CNfcParam

120 class CNfcParam : public string {  class
122 CNfcParam();
123 CNfcParam(const char* name, const string& value);
124 CNfcParam(const char* name, unsigned long value);
125 virtual ~CNfcParam();
135 class CNfcConfig : public vector<const CNfcParam*> {
147 const CNfcParam* find(const char* p_name) const;
157 void add(const CNfcParam* pParam);
160 list<const CNfcParam*> m_list;
285 CNfcParam* pParam = NULL; in readConfig()
410 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
412 pParam = new CNfcParam(token.c_str(), numValue); in readConfig()
422 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
527 const CNfcParam* pParam = find(name); in getValue()
540 const CNfcParam* pParam = find(name); in getValue()
568 const CNfcParam* pParam = find(name); in getValue()
589 const CNfcParam* pParam = find(name); in getValue()
608 const CNfcParam* CNfcConfig::find(const char* p_name) const { in find()
682 void CNfcConfig::add(const CNfcParam* pParam) { in add()
692 for (list<const CNfcParam*>::iterator it = m_list.begin(), in add()
717 for (list<const CNfcParam*>::iterator it = m_list.begin(), in dump()
766 for (list<const CNfcParam*>::iterator it = m_list.begin(), in moveFromList()
882 CNfcParam::CNfcParam() : m_numValue(0) {} in CNfcParam() function in CNfcParam
893 CNfcParam::~CNfcParam() {} in ~CNfcParam()
904 CNfcParam::CNfcParam(const char* name, const string& value) in CNfcParam() function in CNfcParam
916 CNfcParam::CNfcParam(const char* name, unsigned long value) in CNfcParam() function in CNfcParam
998 const CNfcParam* pParam = rConfig.find(name); in GetNxpNumValue()