Home | History | Annotate | Download | only in seccomp-bpf

Lines Matching refs:safe

101   // Note: This class is not thread safe. It is the caller's responsibility
159 // safe and can lead to bugs. We should eventually implement a different
160 // logging and reporting mechanism that is safe to be called from
216 return safe < o.safe;
220 ErrorCode Trap::MakeTrap(TrapFnc fnc, const void* aux, bool safe) {
221 return GetInstance()->MakeTrapImpl(fnc, aux, safe);
224 ErrorCode Trap::MakeTrapImpl(TrapFnc fnc, const void* aux, bool safe) {
225 if (!safe && !SandboxDebuggingAllowedByUser()) {
246 TrapKey key(fnc, aux, safe);
312 trap_array_[trap_array_size_] = ErrorCode(fnc, aux, safe, id);
316 return ErrorCode(fnc, aux, safe, id);