• Home
  • Raw
  • Download

Lines Matching refs:CNfcParam

98 class CNfcParam : public string {  class
100 CNfcParam();
101 CNfcParam(const char* name, const string& value);
102 CNfcParam(const char* name, unsigned long value);
103 virtual ~CNfcParam();
113 class CNfcConfig : public vector<const CNfcParam*> {
125 const CNfcParam* find(const char* p_name) const;
133 void add(const CNfcParam* pParam);
134 list<const CNfcParam*> m_list;
255 CNfcParam* pParam = NULL; in readConfig()
372 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
374 pParam = new CNfcParam(token.c_str(), numValue); in readConfig()
384 pParam = new CNfcParam(token.c_str(), strValue); in readConfig()
465 const CNfcParam* pParam = find(name); in getValue()
478 const CNfcParam* pParam = find(name); in getValue()
506 const CNfcParam* pParam = find(name); in getValue()
527 const CNfcParam* pParam = find(name); in getValue()
546 const CNfcParam* CNfcConfig::find(const char* p_name) const { in find()
592 void CNfcConfig::add(const CNfcParam* pParam) { in add()
597 for (list<const CNfcParam*>::iterator it = m_list.begin(), in add()
619 for (list<const CNfcParam*>::iterator it = m_list.begin(), in moveFromList()
679 CNfcParam::CNfcParam() : m_numValue(0) {} in CNfcParam() function in CNfcParam
690 CNfcParam::~CNfcParam() {} in ~CNfcParam()
701 CNfcParam::CNfcParam(const char* name, const string& value) in CNfcParam() function in CNfcParam
713 CNfcParam::CNfcParam(const char* name, unsigned long value) in CNfcParam() function in CNfcParam
770 const CNfcParam* pParam = rConfig.find(name); in GetNxpNumValue()