Home
last modified time | relevance | path

Searched refs:rt_params (Results 1 – 3 of 3) sorted by relevance

/system/bt/utils/src/
Dbt_utils.cc145 struct sched_param rt_params; in raise_priority_a2dp() local
146 rt_params.sched_priority = A2DP_RT_PRIORITY; in raise_priority_a2dp()
148 const int rc = sched_setscheduler(tid, SCHED_FIFO, &rt_params); in raise_priority_a2dp()
/system/bt/vendor_libs/linux/interface/
Dasync_fd_watcher.cc119 struct sched_param rt_params; in ThreadRoutine() local
120 rt_params.sched_priority = BT_RT_PRIORITY; in ThreadRoutine()
121 if (sched_setscheduler(gettid(), SCHED_FIFO, &rt_params)) { in ThreadRoutine()
/system/bt/osi/src/
Dthread.cc165 struct sched_param rt_params; in thread_set_rt_priority() local
166 rt_params.sched_priority = priority; in thread_set_rt_priority()
168 const int rc = sched_setscheduler(thread->tid, SCHED_FIFO, &rt_params); in thread_set_rt_priority()