Searched refs:timeout (Results 1 - 25 of 433) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib/dist/include/android_stub/android/
H A Dsync.h44 /* timeout in msecs */
45 int sync_wait(int fd, int timeout);
/xsrc/external/mit/xorg-server/dist/hw/xnest/
H A DHandlers.h18 void xnestBlockHandler(void *blockData, void *timeout);
H A DHandlers.c35 xnestBlockHandler(void *blockData, void *timeout) argument
/xsrc/external/mit/libX11/dist/src/
H A DSetSSaver.c35 int timeout,
45 req->timeout = timeout;
33 XSetScreenSaver(register Display * dpy,int timeout,int interval,int prefer_blank,int allow_exp) argument
H A DGetSSaver.c36 int *timeout,
48 *timeout = rep.timeout;
33 XGetScreenSaver(register Display * dpy,int * timeout,int * interval,int * prefer_blanking,int * allow_exp) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/include/state_tracker/
H A Dopencl_interop.h37 typedef bool (*opencl_dri_event_wait_t)(void *cl_event, uint64_t timeout);
/xsrc/external/mit/MesaLib/dist/src/gallium/include/frontend/
H A Dopencl_interop.h37 typedef bool (*opencl_dri_event_wait_t)(void *cl_event, uint64_t timeout);
/xsrc/external/mit/xorg-server/dist/os/
H A DWaitFor.c122 * Compute timeout until next timer, running
132 int timeout = timer->expires - now; local in function:check_timers
134 if (timeout <= 0) {
137 /* Make sure the timeout is sane */
138 if (timeout < timer->delta + 250)
139 return timeout;
162 * has to handle this also (that's why the select() has a timeout.
171 int timeout; local in function:WaitForSomething
190 crashed connections and the screen saver timeout */
197 timeout
241 int timeout = *timeoutp; local in function:AdjustWaitForDelay
414 NextDPMSTimeout(INT32 timeout) argument
439 INT32 timeout = now - LastEventTime(XIAllDevices).milliseconds; local in function:ScreenSaverTimeoutExpire
497 CARD32 timeout = 0; local in function:SetScreenSaverTimer
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Dos_time.h90 * Convert a relative timeout in nanoseconds into an absolute timeout,
91 * in other words, it returns current time + timeout.
97 os_time_get_absolute_timeout(uint64_t timeout);
104 * \param timeout timeout in ns, can be anything from 0 (no wait) to
109 os_wait_until_zero(volatile int *var, uint64_t timeout);
114 * The timeout is the absolute time when the waiting should stop. If it is
120 * \param timeout the time in ns when the waiting should stop
124 os_wait_until_zero_abs_timeout(volatile int *var, int64_t timeout);
[all...]
H A Dos_time.c121 os_time_get_absolute_timeout(uint64_t timeout) argument
126 if (timeout == OS_TIMEOUT_INFINITE || timeout > INT64_MAX)
130 abs_timeout = time + (int64_t)timeout;
141 os_wait_until_zero(volatile int *var, uint64_t timeout) argument
146 if (!timeout)
149 if (timeout == OS_TIMEOUT_INFINITE) {
159 int64_t end_time = start_time + timeout;
175 os_wait_until_zero_abs_timeout(volatile int *var, int64_t timeout) argument
180 if (timeout
[all...]
H A Dfutex.h36 static inline long sys_futex(void *addr1, int op, int val1, const struct timespec *timeout, void *addr2, int val3) argument
38 return syscall(SYS_futex, addr1, op, val1, timeout, addr2, val3);
46 static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) argument
49 * FUTEX_WAIT, except that it treats the timeout as absolute. */
50 return sys_futex(addr, FUTEX_WAIT_BITSET, value, timeout, NULL,
69 static inline int futex_wait(uint32_t *addr, int32_t value, struct timespec *timeout) argument
79 if (timeout != NULL) {
80 tmo._timeout = *timeout;
/xsrc/external/mit/xorg-server/dist/include/
H A Dxserver_poll.h32 #define xserver_poll(fds, nfds, timeout) poll(fds, nfds, timeout)
51 int xserver_poll (struct pollfd *pArray, nfds_t n_fds, int timeout);
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dfutex.h37 static inline long sys_futex(void *addr1, int op, int val1, const struct timespec *timeout, void *addr2, int val3) argument
39 return syscall(SYS_futex, addr1, op, val1, timeout, addr2, val3);
47 static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) argument
50 * FUTEX_WAIT, except that it treats the timeout as absolute. */
51 return sys_futex(addr, FUTEX_WAIT_BITSET, value, timeout, NULL,
71 static inline int futex_wait(uint32_t *addr, int32_t value, struct timespec *timeout) argument
81 if (timeout != NULL) {
82 tmo._timeout = *timeout;
101 static inline int futex_wait(uint32_t *addr, int32_t value, const struct timespec *timeout) argument
105 if (timeout
[all...]
H A Dos_time.c118 os_time_get_absolute_timeout(uint64_t timeout) argument
123 if (timeout == OS_TIMEOUT_INFINITE || timeout > INT64_MAX)
127 abs_timeout = time + (int64_t)timeout;
138 os_wait_until_zero(volatile int *var, uint64_t timeout) argument
143 if (!timeout)
146 if (timeout == OS_TIMEOUT_INFINITE) {
156 int64_t end_time = start_time + timeout;
172 os_wait_until_zero_abs_timeout(volatile int *var, int64_t timeout) argument
177 if (timeout
[all...]
H A Dos_time.h102 * Convert a relative timeout in nanoseconds into an absolute timeout,
103 * in other words, it returns current time + timeout.
109 os_time_get_absolute_timeout(uint64_t timeout);
116 * \param timeout timeout in ns, can be anything from 0 (no wait) to
121 os_wait_until_zero(volatile int *var, uint64_t timeout);
126 * The timeout is the absolute time when the waiting should stop. If it is
132 * \param timeout the time in ns when the waiting should stop
136 os_wait_until_zero_abs_timeout(volatile int *var, int64_t timeout);
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/api/
H A Dinterop.cpp49 opencl_dri_event_wait(cl_event event, uint64_t timeout) try { argument
50 if (!timeout) {
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/api/
H A Dinterop.cpp49 opencl_dri_event_wait(cl_event event, uint64_t timeout) try { argument
50 if (!timeout) {
/xsrc/external/mit/xfs/dist/os/
H A Dwaitfor.c106 long timeout; local in function:WaitForSomething
125 timeout = current_time - LastReapTime;
126 if (timeout > ReapClientTime) {
129 timeout = ReapClientTime;
131 timeout = ReapClientTime - timeout;
132 waittime.tv_sec = timeout / MILLI_PER_SECOND;
133 waittime.tv_usec = (timeout % MILLI_PER_SECOND) *
152 if (i <= 0) { /* error or timeout */
/xsrc/external/mit/MesaLib/dist/src/android_stub/
H A Dsync_stub.cpp9 /* timeout in msecs */
10 int sync_wait(int fd, int timeout) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_fence.c47 uint64_t timeout)
44 softpipe_fence_finish(struct pipe_screen * screen,struct pipe_context * ctx,struct pipe_fence_handle * fence,uint64_t timeout) argument
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dsyncobj.h73 _mesa_ClientWaitSync_no_error(GLsync sync, GLbitfield flags, GLuint64 timeout);
76 _mesa_ClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout);
79 _mesa_WaitSync_no_error(GLsync sync, GLbitfield flags, GLuint64 timeout);
82 _mesa_WaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/
H A Dlima_util.h32 bool lima_get_absolute_timeout(uint64_t *timeout);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_fence.c47 uint64_t timeout)
44 softpipe_fence_finish(struct pipe_screen * screen,struct pipe_context * ctx,struct pipe_fence_handle * fence,uint64_t timeout) argument
/xsrc/external/mit/MesaLib/dist/.gitlab-ci/bare-metal/
H A Dgoogle-power-relay.py16 ser = serial.Serial('/dev/ttyACM0', 115200, timeout=2)
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dsyncobj.h73 _mesa_ClientWaitSync_no_error(GLsync sync, GLbitfield flags, GLuint64 timeout);
76 _mesa_ClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout);
79 _mesa_WaitSync_no_error(GLsync sync, GLbitfield flags, GLuint64 timeout);
82 _mesa_WaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout);

Completed in 16 milliseconds

1234567891011>>