HomeSort by relevance Sort by last modified time
    Searched defs:sched (Results 1 - 9 of 9) sorted by null

  /external/linux-tools-perf/scripts/perl/
wakeup-latency.pl 28 sub sched::sched_switch subroutine
51 sub sched::sched_wakeup subroutine
  /system/core/toolbox/
renice.c 37 #include <sched.h>
48 int sched; local
54 sched = sched_getscheduler(pid);
55 switch (sched) {
74 sched_get_priority_min(sched), sched_get_priority_max(sched));
ps.c 46 int prio, nice, rtprio, sched, psr; local
131 sched = atoi(nexttok(&ptr)); // scheduling policy
165 printf(" %-5d %-5d %-5d %-5d", prio, nice, rtprio, sched);
241 (display_flags&SHOW_PRIO)?"PRIO NICE RTPRI SCHED ":"",
  /external/ipsec-tools/src/racoon/
schedule.h 42 struct sched { struct
56 TAILQ_ENTRY(sched) chain;
79 struct sched *sched_new __P((time_t, void (*func) __P((void *)), void *));
80 void sched_kill __P((struct sched *));
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_task.c 56 #include <sched.h> /*for sched structure */
116 struct sched_param sched; local
149 &sched))
151 /*TIMM_OSAL_Error("Task Init Get Sched Params failed!"); */
155 sched.sched_priority = uPriority; /* relative to the default priority */
157 &sched))
159 /*TIMM_OSAL_Error("Task Init Set Sched Paramsfailed!"); */
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_Thread.c 26 #include <sched.h>
214 struct sched_param sched = { 0 }; local
283 sched.sched_priority = priority;
285 if ( 0 == pthread_attr_setschedparam( &attribute, &sched ) )
  /external/bluetooth/glib/gthread/
gthread-posix.c 47 #include <sched.h>
138 struct sched_param sched; local
140 posix_check_cmd (pthread_getschedparam (pthread_self(), &policy, &sched));
141 priority_normal_value = sched.sched_priority;
345 struct sched_param sched; local
346 posix_check_cmd (pthread_attr_getschedparam (&attr, &sched));
347 sched.sched_priority = g_thread_priority_map [priority];
348 posix_check_cmd_prio (pthread_attr_setschedparam (&attr, &sched));
402 struct sched_param sched; local
405 &sched));
    [all...]
  /device/moto/stingray/whisper/
Whisper_AccyMain.c 284 struct sched_param sched; local
298 status = pthread_getschedparam(threadId, &currentPolicy, &sched);
306 sched.sched_priority = 70;
308 status = pthread_setschedparam(threadId, currentPolicy, &sched);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
target.h 88 /* This is defined in sched-int.h . */
251 struct sched struct in struct:gcc_target
441 } sched; member in struct:gcc_target
    [all...]

Completed in 139 milliseconds