MCPcopy Create free account
hub / github.com/analogdevicesinc/scopy / search

Method search

packages/generic-plugins/plugins/regmap/src/regmap_api.cpp:69–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69QList<QString> RegMap_API::search(QString searchParam)
70{
71 QList<uint32_t> resultIndexes;
72 DeviceRegisterMap *devRegMap = getActiveDevRegMap();
73 resultIndexes = Search::searchForRegisters(devRegMap->registerMapTemplate->getRegisterList(), searchParam);
74 QList<QString> resultList;
75
76 for(int i = 0; i < resultIndexes.size(); i++) {
77 resultList.append(QString::number(resultIndexes[i]));
78 }
79 return resultList;
80}
81
82void RegMap_API::readInterval(QString startAddr, QString stopAddr)
83{

Callers 5

extract_uid_from_contentFunction · 0.80
extract_rbp_from_contentFunction · 0.80
extract_uid_from_contentFunction · 0.80
extract_rbp_from_contentFunction · 0.80

Calls 2

getRegisterListMethod · 0.80
appendMethod · 0.80

Tested by 2

extract_uid_from_contentFunction · 0.64
extract_rbp_from_contentFunction · 0.64