Home
last modified time | relevance | path

Searched refs:rt_params (Results 1 – 6 of 6) 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.cc122 struct sched_param rt_params; in ThreadRoutine() local
123 rt_params.sched_priority = BT_RT_PRIORITY; in ThreadRoutine()
124 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.cc199 struct sched_param rt_params = {.sched_priority = in EnableRealTimeScheduling() local
201 int rc = sched_setscheduler(linux_tid_, SCHED_FIFO, &rt_params); in EnableRealTimeScheduling()
/system/bt/test/mock/
Dmock_common_message_loop_thread.cc197 struct sched_param rt_params = {.sched_priority = in EnableRealTimeScheduling() local
199 int rc = sched_setscheduler(linux_tid_, SCHED_FIFO, &rt_params); in EnableRealTimeScheduling()