Lines Matching refs:qos
23 #include "qos.h"
45 int qos = static_cast<int>(level);
47 CONCUR_LOGE("[Qos] invalid qos level %{public}d", qos);
50 int ret = QosApplyForOther(qos, tid);
52 CONCUR_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d success", qos, tid);
54 CONCUR_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d failure", qos, tid);
81 int qos = -1;
82 int ret = QosGetForOther(tid, qos);
84 if (qos < static_cast<int>(QosLevel::QOS_BACKGROUND) ||
85 qos >= static_cast<int>(QosLevel::QOS_MAX)) {
90 level = static_cast<QosLevel>(qos);