Searched refs:rt_params (Results 1 – 5 of 5) sorted by relevance
/system/bt/utils/src/ |
D | bt_utils.cc | 144 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/ |
D | thread.cc | 40 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/ |
D | async_fd_watcher.cc | 119 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/ |
D | thread.cc | 164 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/ |
D | message_loop_thread.cc | 154 struct sched_param rt_params = {.sched_priority = in EnableRealTimeScheduling() local 156 int rc = sched_setscheduler(linux_tid_, SCHED_FIFO, &rt_params); in EnableRealTimeScheduling()
|