HomeSort by relevance Sort by last modified time
    Searched refs:trap_array_ (Results 1 - 2 of 2) sorted by null

  /external/libchrome/sandbox/linux/seccomp-bpf/
trap.cc 80 : trap_array_(NULL),
223 const TrapKey& trap = trap_array_[info->si_errno - 1];
291 // In order to do so, we store all of our traps in a C-style trap_array_.
308 // Our callers ensure that there are no other threads accessing trap_array_
313 // So, we have to be extra careful that we update trap_array_ atomically.
326 TrapKey* old_trap_array = trap_array_;
345 trap_array_ = new_trap_array;
346 asm volatile("" : "=r"(trap_array_) : "0"(trap_array_) : "memory");
353 trap_array_[trap_array_size_] = key
    [all...]
trap.h 74 TrapKey* trap_array_; // Array of TrapKeys indexed by ids member in class:sandbox::Trap

Completed in 503 milliseconds