Searched refs:pointName (Results 1 - 2 of 2) sorted by relevance

/gem5/src/sim/probe/
H A Dprobe.cc85 ProbeManager::addListener(std::string pointName, ProbeListener &listener) argument
87 DPRINTFR(ProbeVerbose, "Probes: Call to addListener to \"%s\" on %s.\n", pointName, object->name());
90 if ((*p)->getName() == pointName) {
96 DPRINTFR(ProbeVerbose, "Probes: Call to addListener to \"%s\" on %s failed, no such point.\n", pointName, object->name());
102 ProbeManager::removeListener(std::string pointName, ProbeListener &listener) argument
104 DPRINTFR(ProbeVerbose, "Probes: Call to removeListener from \"%s\" on %s.\n", pointName, object->name());
107 if ((*p)->getName() == pointName) {
113 DPRINTFR(ProbeVerbose, "Probes: Call to removeListener from \"%s\" on %s failed, no such point.\n", pointName, object->name());
H A Dprobe.hh167 * @brief Add a ProbeListener to the ProbePoint named by pointName.
169 * @param pointName the name of the ProbePoint to add the ProbeListener to.
173 bool addListener(std::string pointName, ProbeListener &listener);
176 * @brief Remove a ProbeListener from the ProbePoint named by pointName.
178 * @param pointName the name of the ProbePoint to remove the ProbeListener
183 bool removeListener(std::string pointName, ProbeListener &listener);

Completed in 5 milliseconds