Lines Matching refs:tid
36 int QosController::SetThreadQosForOtherThread(enum QosLevel level, int tid) in SetThreadQosForOtherThread() argument
41 …R_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d disable", static_cast<int>(level), tid); in SetThreadQosForOtherThread()
50 int ret = QosApplyForOther(qos, tid); in SetThreadQosForOtherThread()
52 CONCUR_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d success", qos, tid); in SetThreadQosForOtherThread()
54 CONCUR_LOGD("[Qos] qoslevel %{public}d apply for tid %{public}d failure", qos, tid); in SetThreadQosForOtherThread()
60 int QosController::ResetThreadQosForOtherThread(int tid) in ResetThreadQosForOtherThread() argument
65 CONCUR_LOGD("[Qos] qoslevel reset disable for tid %{public}d.", tid); in ResetThreadQosForOtherThread()
69 int ret = QosLeaveForOther(tid); in ResetThreadQosForOtherThread()
71 CONCUR_LOGD("[Qos] qoslevel reset for tid %{public}d success", tid); in ResetThreadQosForOtherThread()
73 CONCUR_LOGD("[Qos] qoslevel reset for tid %{public}d failure", tid); in ResetThreadQosForOtherThread()
79 int QosController::GetThreadQosForOtherThread(enum QosLevel &level, int tid) in GetThreadQosForOtherThread() argument
82 int ret = QosGetForOther(tid, qos); in GetThreadQosForOtherThread()
86 CONCUR_LOGE("[Qos] not set qoslevel for tid %{public}d", tid); in GetThreadQosForOtherThread()
89 CONCUR_LOGD("[Qos] qoslevel get for tid %{public}d success", tid); in GetThreadQosForOtherThread()
93 CONCUR_LOGD("[Qos] qoslevel get for tid %{public}d failure", tid); in GetThreadQosForOtherThread()
100 int tid = gettid(); in SetThreadQos() local
101 return QosController::GetInstance().SetThreadQosForOtherThread(level, tid); in SetThreadQos()
104 int SetQosForOtherThread(enum QosLevel level, int tid) in SetQosForOtherThread() argument
106 return QosController::GetInstance().SetThreadQosForOtherThread(level, tid); in SetQosForOtherThread()
111 int tid = gettid(); in ResetThreadQos() local
112 return QosController::GetInstance().ResetThreadQosForOtherThread(tid); in ResetThreadQos()
115 int ResetQosForOtherThread(int tid) in ResetQosForOtherThread() argument
117 return QosController::GetInstance().ResetThreadQosForOtherThread(tid); in ResetQosForOtherThread()
125 int GetQosForOtherThread(enum QosLevel &level, int tid) in GetQosForOtherThread() argument
127 return QosController::GetInstance().GetThreadQosForOtherThread(level, tid); in GetQosForOtherThread()