Lines Matching defs:qos
25 typedef int (*FuncQosMap)(int qos);29 int QoSMap(int qos);39 QoS(int qos = qos_default)41 if (qos < static_cast<int>(qos_inherit)) {42 qos = qos_inherit;43 } else if (qos > static_cast<int>(qos_max)) {44 qos = qos_max;46 qos_ = qos;49 QoS(const QoS& qos) : qos_(qos())