Home
last modified time | relevance | path

Searched refs:mstime_t (Results 1 – 8 of 8) sorted by relevance

/external/syslinux/core/thread/
Dmbox.c25 int mbox_post(struct mailbox *mbox, void *msg, mstime_t timeout) in mbox_post()
29 if (sem_down(&mbox->prod_sem, timeout) == (mstime_t)-1) in mbox_post()
43 mstime_t mbox_fetch(struct mailbox *mbox, void **msg, mstime_t timeout) in mbox_fetch()
45 mstime_t t; in mbox_fetch()
50 if (t == (mstime_t)-1) in mbox_fetch()
Dsemaphore.c12 mstime_t __sem_down_slow(struct semaphore *sem, mstime_t timeout) in __sem_down_slow()
15 mstime_t rv; in __sem_down_slow()
33 mstime_t now = ms_timer(); in __sem_down_slow()
Dtimeout.c19 mstime_t now = ms_timer(); in __thread_process_timeouts()
21 mstime_t timeout; in __thread_process_timeouts()
/external/syslinux/core/include/
Dthread.h37 mstime_t block_time;
38 mstime_t timeout;
82 mstime_t sem_down(struct semaphore *, mstime_t);
Dmbox.h35 int mbox_post(struct mailbox *mbox, void *msg, mstime_t timeout);
36 mstime_t mbox_fetch(struct mailbox *mbox, void **msg, mstime_t timeout);
Dtimer.h14 typedef uint32_t mstime_t; typedef
16 static inline mstime_t ms_timer(void) in ms_timer()
/external/syslinux/core/lwip/src/arch/
Dsys_arch.c49 mstime_t rv; in sys_arch_sem_wait()
54 if (rv == (mstime_t)-1) in sys_arch_sem_wait()
96 mstime_t rv; in sys_arch_mbox_fetch()
101 if (rv == (mstime_t)-1) in sys_arch_mbox_fetch()
/external/syslinux/efi/
Dmain.c181 mstime_t sem_down(struct semaphore *sem, mstime_t time) in sem_down()