Home
last modified time | relevance | path

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

/system/bt/utils/src/
Dbt_utils.cc144 struct sched_param rt_params; in raise_priority_a2dp() local
145 rt_params.sched_priority = A2DP_RT_PRIORITY; in raise_priority_a2dp()
147 const int rc = sched_setscheduler(tid, SCHED_FIFO, &rt_params); in raise_priority_a2dp()
/system/bt/gd/os/linux_generic/
Dthread.cc40 struct sched_param rt_params = {.sched_priority = kRealTimeFifoSchedulingPriority}; in run() local
43 RUN_NO_INTR(rc = sched_setscheduler(linux_tid, SCHED_FIFO, &rt_params)); in run()
/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.cc164 struct sched_param rt_params; in thread_set_rt_priority() local
165 rt_params.sched_priority = priority; in thread_set_rt_priority()
167 const int rc = sched_setscheduler(thread->tid, SCHED_FIFO, &rt_params); in thread_set_rt_priority()
/system/bt/common/
Dmessage_loop_thread.cc154 struct sched_param rt_params = {.sched_priority = in EnableRealTimeScheduling() local
156 int rc = sched_setscheduler(linux_tid_, SCHED_FIFO, &rt_params); in EnableRealTimeScheduling()