OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:trap_array_
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/sandbox/linux/seccomp-bpf/
trap.cc
71
:
trap_array_
(NULL),
176
const ErrorCode& err =
trap_array_
[info->si_errno - 1];
253
// In order to do so, we store all of our traps in a C-style
trap_array_
.
269
// Our callers ensure that there are no other threads accessing
trap_array_
274
// So, we have to be extra careful that we update
trap_array_
atomically.
287
ErrorCode* old_trap_array =
trap_array_
;
301
memcpy(new_trap_array,
trap_array_
, trap_array_size_ * sizeof(ErrorCode));
303
trap_array_
= new_trap_array;
304
asm volatile("" : "=r"(
trap_array_
) : "0"(
trap_array_
) : "memory")
[
all
...]
trap.h
102
ErrorCode*
trap_array_
; // Array of ErrorCodes indexed by ids
member in class:sandbox::Trap
Completed in 95 milliseconds