Lines Matching defs:wwn
103 * @param wwn The wwn of the desired HBA port
109 HBAPort* HBA::getPort(uint64_t wwn) {
114 log.debug("getPort(wwn): WWN %016llx", wwn);
118 if (portsByWWN.find(wwn) == portsByWWN.end()) {
121 port = portsByWWN[wwn];
139 * @return TRUE if the wwn is found
140 * @return FALSE if the wwn is not found
141 * @param wwn The wwn to look for
144 bool HBA::containsWWN(uint64_t wwn) {
151 if (port->second->getPortWWN() == wwn) {
155 if (port->second->getNodeWWN() == wwn) {