HomeSort by relevance Sort by last modified time
    Searched refs:futex (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/valgrind/coregrind/m_scheduler/
ticket-lock-linux.c 61 volatile unsigned futex[TL_FUTEX_COUNT]; member in struct:sched_lock
82 // The futex syscall requires that a futex takes four bytes.
83 vg_assert(sizeof(p->futex[0]) == 4);
88 INNER_REQUEST(ANNOTATE_BENIGN_RACE_SIZED(&p->futex, sizeof(p->futex), ""));
106 * ticket value. The futex used to wait depends on the ticket value in order
117 volatile unsigned *futex; local
121 futex = &p->futex[ticket & TL_FUTEX_MASK]
161 volatile unsigned *futex; local
    [all...]
  /system/connectivity/shill/shims/
nfqueue-seccomp-amd64.policy 28 futex: 1
nfqueue-seccomp-mips.policy 48 futex: 1
nfqueue-seccomp-x86.policy 26 futex: 1
nfqueue-seccomp-arm.policy 31 futex: 1
  /external/libchrome/sandbox/linux/system_headers/
linux_futex.h 9 #include <linux/futex.h>
  /external/strace/
futex.c 34 # include <linux/futex.h>
48 SYS_FUNC(futex)
Android.mk 77 futex.c \
sys_func.h 64 extern SYS_FUNC(futex);
  /system/tpm/attestation/server/
attestationd-seccomp-amd64.policy 62 futex: 1
  /system/tpm/tpm_manager/server/
tpm_manager-seccomp-amd64.policy 63 futex: 1
  /system/tpm/trunks/
trunksd-seccomp-arm.policy 48 futex: 1
trunksd-seccomp-arm64.policy 48 futex: 1
trunksd-seccomp-x86.policy 53 futex: 1
trunksd-seccomp-x86_64.policy 52 futex: 1
  /external/valgrind/tests/
filter_libc 39 # Some glibc versions complain about unexpected futex syscall errors.
40 s/The futex facility returned an unexpected error code.//;
  /bionic/libc/private/
bionic_futex.h 32 #include <linux/futex.h>
  /external/v8/test/mjsunit/harmony/
futex.js 118 // Spin until the worker is waiting on the futex.
130 // Spin until the worker is waiting on the futex.
136 // Futex should work when index and buffer views are different, but
142 // Spin until the worker is waiting on the futex.
161 // 0 => Worker |id| is still waiting on the futex
162 // 1 => Worker |id| is not waiting on futex, but has not be reaped by the
189 // Spin until all workers are waiting on the futex.
229 // 0 => Worker |id| is still waiting on the futex
230 // 1 => Worker |id| is not waiting on futex, but has not be reaped by the
256 // Spin until all workers are waiting on the futex
    [all...]
  /art/runtime/base/
mutex-inl.h 31 #include "linux/futex.h"
43 static inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, function in namespace:art
166 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
mutex.cc 376 if (futex(state_.Address(), FUTEX_WAIT, 1, nullptr, nullptr, 0) != 0) {
380 PLOG(FATAL) << "futex wait failed for " << name_;
480 futex(state_.Address(), FUTEX_WAKE, 1, nullptr, nullptr, 0);
563 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
567 PLOG(FATAL) << "futex wait failed for " << name_;
604 futex(state_.Address(), FUTEX_WAKE, -1, nullptr, nullptr, 0);
639 if (futex(state_.Address(), FUTEX_WAIT, cur_state, &rel_ts, nullptr, 0) != 0) {
647 PLOG(FATAL) << "timed futex wait failed for " << name_;
677 if (futex(state_.Address(), FUTEX_WAIT, cur_state, nullptr, nullptr, 0) != 0) {
679 PLOG(FATAL) << "futex wait failed for " << name_
    [all...]
  /external/valgrind/drd/scripts/
download-and-build-gcc 62 --disable-linux-futex \
  /cts/tests/tests/security/jni/
android_security_cts_NativeCodeTest.cpp 18 #include <linux/futex.h>
185 * Test for vulnerability to CVE-2014-3153, a bug in the futex() syscall that can
193 int futex = 1; local
197 * that's what we're checking for - they're both &futex. Patched systems will
200 ret = futex_syscall(&futex, FUTEX_CMP_REQUEUE_PI, 1, NULL, &futex, 0);
  /frameworks/av/services/audioflinger/
FastCapture.cpp 23 #include <linux/futex.h>
FastThread.cpp 23 #include <linux/futex.h>
  /external/v8/src/js/
harmony-atomics.js 192 // These must match the values in src/futex-emulation.h

Completed in 529 milliseconds

1 2 3