HomeSort by relevance Sort by last modified time
    Searched defs:trap (Results 1 - 25 of 47) sorted by null

1 2

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ppc/
vle-simple-3.s 2 trap: label
3 trap
  /external/strace/linux/sparc64/
get_scno.c 5 /* Retrieve the syscall trap instruction. */
6 unsigned long trap; local
8 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (void *) sparc_regs.tpc, 0);
10 trap >>= 32;
11 switch (trap) {
13 /* Linux/SPARC syscall trap. */
17 /* Linux/SPARC64 syscall trap. */
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m32r/
fslot.s 25 trap: label
26 trap #4
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nios2/
comments.s 3 trap: label
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 25 public Object trap(Object[] args, int identifier) throws Throwable { method in class:Sample
  /external/v8/src/runtime/
runtime-proxy.cc 36 // 5. Let trap be ? GetMethod(handler, "apply").
37 Handle<Object> trap; local
39 isolate, trap,
41 // 6. If trap is undefined, then
43 if (trap->IsUndefined(isolate)) {
63 // 8. Return Call(trap, handler, «target, thisArgument, argArray»).
67 Execution::Call(isolate, trap, handler, arraysize(trap_args), trap_args));
90 // 5. Let trap be ? GetMethod(handler, "construct").
91 Handle<Object> trap; local
93 isolate, trap,
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
signal_darwin_arm.go 41 func (c *sigctxt) trap() uint32 { return 0 } func
signal_freebsd_arm.go 40 func (c *sigctxt) trap() uint32 { return 0 } func
signal_linux_arm.go 43 func (c *sigctxt) trap() uint32 { return c.regs().trap_no } func
signal_nacl_arm.go 40 func (c *sigctxt) trap() uint32 { return ^uint32(0) } func
signal_netbsd_arm.go 40 func (c *sigctxt) trap() uint32 { return 0 } func
signal_openbsd_arm.go 42 func (c *sigctxt) trap() uint32 { return 0 } func
signal_linux_ppc64x.go 62 func (c *sigctxt) trap() uint64 { return c.regs().trap } func
  /prebuilts/go/linux-x86/src/runtime/
signal_darwin_arm.go 41 func (c *sigctxt) trap() uint32 { return 0 } func
signal_freebsd_arm.go 40 func (c *sigctxt) trap() uint32 { return 0 } func
signal_linux_arm.go 43 func (c *sigctxt) trap() uint32 { return c.regs().trap_no } func
signal_nacl_arm.go 40 func (c *sigctxt) trap() uint32 { return ^uint32(0) } func
signal_netbsd_arm.go 40 func (c *sigctxt) trap() uint32 { return 0 } func
signal_openbsd_arm.go 42 func (c *sigctxt) trap() uint32 { return 0 } func
signal_linux_ppc64x.go 62 func (c *sigctxt) trap() uint64 { return c.regs().trap } func
  /toolchain/binutils/binutils-2.27/opcodes/
cr16-dis.c 183 /* Given the trap index in dispatch table, return its name.
189 const trap_entry *trap; local
191 for (trap = cr16_traps; trap < cr16_traps + NUMTRAPS; trap++)
192 if (trap->entry == trap_index)
193 return trap->name;
crx-dis.c 154 /* Given the trap index in dispatch table, return its name.
160 const trap_entry *trap; local
162 for (trap = crx_traps; trap < crx_traps + NUMTRAPS; trap++)
163 if (trap->entry == trap_index)
164 return trap->name;
  /external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
seccomp_bpf_tests.c 412 FIXTURE_DATA(TRAP) {
416 FIXTURE_SETUP(TRAP) {
431 FIXTURE_TEARDOWN(TRAP) {
436 TEST_F_SIGNAL(TRAP, dfl, SIGSYS) {
446 TEST_F_SIGNAL(TRAP, ign, SIGSYS) {
466 TEST_F(TRAP, handler) {
517 struct sock_fprog trap; local
562 FILTER_ALLOC(trap);
571 FILTER_FREE(trap);
587 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->trap);
    [all...]
  /external/v8/src/
keys.cc 155 // [[GetPrototypeOf]] trap on the last iteration when using
731 // 5. Let trap be ? GetMethod(handler, "ownKeys").
732 Handle<Object> trap; local
734 isolate_, trap, Object::GetMethod(Handle<JSReceiver>::cast(handler),
737 // 6. If trap is undefined, then
738 if (trap->IsUndefined(isolate_)) {
742 // 7. Let trapResultArray be Call(trap, handler, «target»).
747 Execution::Call(isolate_, trap, handler, arraysize(args), args),
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 109 /** The amount under/overflows are scaled by before going to trap handler */
2202 protected Dfp trap(int type, String what, Dfp oper, Dfp def, Dfp result) { method in class:Dfp
    [all...]

Completed in 312 milliseconds

1 2