Lines Matching refs:mapper
612 const ComponentMapper *mapper = LookupMapper(title.mName); in Print() local
614 if (dataset.mComponents.*mapper->mIsPresentPtr) in Print()
617 (this->*mapper->mOutput)(dataset); in Print()
812 const ComponentMapper *mapper = LookupMapper(arg->GetCString()); in Process() local
814 if (mapper != nullptr) in Process()
817 SuccessOrExit(error = (this->*mapper->mParse)(arg, dataset)); in Process()
818 dataset.mComponents.*mapper->mIsPresentPtr = true; in Process()
898 const ComponentMapper *mapper = LookupMapper(arg->GetCString()); in Process() local
900 if (mapper != nullptr) in Process()
902 datasetComponents.*mapper->mIsPresentPtr = true; in Process()
1282 const ComponentMapper *mapper; in Process() local
1326 mapper = LookupMapper(aArgs[0].GetCString()); in Process()
1328 if (mapper != nullptr) in Process()
1330 error = ProcessCommand(*mapper, aArgs + 1); in Process()