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

1 2 3 4

  /art/runtime/arch/x86_64/
context_x86_64.cc 31 gprs_[RSP] = &rsp_;
34 rsp_ = X86_64Context::kBadGprBase + RSP;
118 uintptr_t rsp = gprs[kNumberOfCpuRegisters - RSP - 1] - sizeof(intptr_t); local
119 gprs[kNumberOfCpuRegisters] = rsp;
120 *(reinterpret_cast<uintptr_t*>(rsp)) = rip_;
  /hardware/interfaces/gatekeeper/1.0/default/
Gatekeeper.cpp 61 GatekeeperResponse rsp;
71 rsp.data.setToExternal(enrolled_password_handle,
74 rsp.code = GatekeeperStatusCode::STATUS_OK;
76 rsp.timeout = ret;
77 rsp.code = GatekeeperStatusCode::ERROR_RETRY_TIMEOUT;
79 rsp.code = GatekeeperStatusCode::ERROR_GENERAL_FAILURE;
81 cb(rsp);
91 GatekeeperResponse rsp; local
102 rsp.data.setToExternal(auth_token, auth_token_length, true);
104 rsp.code = GatekeeperStatusCode::STATUS_REENROLL
119 GatekeeperResponse rsp; local
139 GatekeeperResponse rsp; local
    [all...]
  /external/syslinux/gpxe/src/drivers/block/
srp.c 298 struct srp_rsp *rsp = iobuf->data; local
302 ntohl ( rsp->tag.dwords[0] ), ntohl ( rsp->tag.dwords[1] ) );
305 if ( iob_len ( iobuf ) < sizeof ( *rsp ) ) {
313 if ( rsp->status != 0 ) {
315 srp, rsp->status );
316 if ( srp_rsp_sense_data ( rsp ) ) {
318 DBGC_HDA ( srp, 0, srp_rsp_sense_data ( rsp ),
319 srp_rsp_sense_data_len ( rsp ) );
322 if ( rsp->valid & ( SRP_RSP_VALID_DOUNDER | SRP_RSP_VALID_DOOVER ) )
    [all...]
  /external/valgrind/coregrind/m_sigframe/
sigframe-amd64-darwin.c 108 SC2(__rsp,RSP);
136 SC2(RSP,__rsp);
158 Addr rsp; local
165 rsp = sp_top_of_frame - sizeof(struct hacky_sigframe);
166 rsp -= 8; /* ELF ABI says that rsp+8 must be 16 aligned on
170 if (! ML_(sf_maybe_extend_stack)(tst, rsp, sp_top_of_frame - rsp, flags))
173 vg_assert(VG_IS_16_ALIGNED(rsp+8));
175 frame = (struct hacky_sigframe *) rsp;
236 Addr rsp; local
    [all...]
sigframe-amd64-linux.c 360 SC2(rsp,RSP);
405 Addr rsp = rsp_top_of_frame; local
410 rsp -= sizeof(*frame);
411 rsp = VG_ROUNDDN(rsp, 16) - 8;
412 frame = (struct rt_sigframe *)rsp;
414 if (! ML_(sf_maybe_extend_stack)(tst, rsp, sizeof(*frame), flags))
419 rsp, offsetof(struct rt_sigframe, vg) );
445 rsp, offsetof(struct rt_sigframe, vg) )
463 Addr rsp; local
577 Addr rsp; local
    [all...]
  /hardware/ril/libril/
RilSapSocket.cpp 244 MsgHeader rsp; local
245 rsp.token = request->curr->token;
246 rsp.type = MsgType_RESPONSE;
247 rsp.id = request->curr->id;
248 rsp.error = (Error)e;
249 rsp.payload = (pb_bytes_array_t *)calloc(1, sizeof(pb_bytes_array_t) + response_len);
250 if (!rsp.payload) {
254 memcpy(rsp.payload->bytes, response, response_len);
255 rsp.payload->size = response_len;
257 rsp.payload->size = 0
287 MsgHeader rsp; local
    [all...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
ptrace.h 66 unsigned long rsp; member in struct:pt_regs
  /external/kernel-headers/original/uapi/asm-x86/asm/
ptrace.h 74 unsigned long rsp; member in struct:pt_regs
  /external/vboot_reference/tests/
tlcl_tests.c 31 uint8_t *rsp; /* Response */ member in struct:srcall
55 calls[i].rsp = calls[i].rsp_buf;
99 memcpy(response, c->rsp, c->rsp_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
ptrace.h 63 unsigned long rsp; member in struct:pt_regs
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
ptrace.h 63 unsigned long rsp; member in struct:pt_regs
  /prebuilts/go/darwin-x86/src/runtime/
signal_darwin_amd64.go 25 func (c *sigctxt) rsp() uint64 { return c.regs().rsp } func
47 func (c *sigctxt) set_rsp(x uint64) { c.regs().rsp = x }
signal_dragonfly_amd64.go 27 func (c *sigctxt) rsp() uint64 { return c.regs().mc_rsp } func
signal_freebsd_amd64.go 27 func (c *sigctxt) rsp() uint64 { return c.regs().mc_rsp } func
signal_linux_amd64.go 30 func (c *sigctxt) rsp() uint64 { return c.regs().rsp } func
52 func (c *sigctxt) set_rsp(x uint64) { c.regs().rsp = x }
signal_nacl_amd64p32.go 27 func (c *sigctxt) rsp() uint64 { return c.regs().rsp } func
49 func (c *sigctxt) set_rsp(x uint64) { c.regs().rsp = x }
signal_netbsd_amd64.go 27 func (c *sigctxt) rsp() uint64 { return c.regs().__gregs[_REG_RSP] } func
signal_openbsd_amd64.go 27 func (c *sigctxt) rsp() uint64 { return c.regs().sc_rsp } func
signal_solaris_amd64.go 27 func (c *sigctxt) rsp() uint64 { return uint64(c.regs().gregs[_REG_RSP]) } func
  /prebuilts/go/linux-x86/src/runtime/
signal_darwin_amd64.go 25 func (c *sigctxt) rsp() uint64 { return c.regs().rsp } func
47 func (c *sigctxt) set_rsp(x uint64) { c.regs().rsp = x }
signal_dragonfly_amd64.go 27 func (c *sigctxt) rsp() uint64 { return c.regs().mc_rsp } func
signal_freebsd_amd64.go 27 func (c *sigctxt) rsp() uint64 { return c.regs().mc_rsp } func
signal_linux_amd64.go 30 func (c *sigctxt) rsp() uint64 { return c.regs().rsp } func
52 func (c *sigctxt) set_rsp(x uint64) { c.regs().rsp = x }
signal_nacl_amd64p32.go 27 func (c *sigctxt) rsp() uint64 { return c.regs().rsp } func
49 func (c *sigctxt) set_rsp(x uint64) { c.regs().rsp = x }
signal_netbsd_amd64.go 27 func (c *sigctxt) rsp() uint64 { return c.regs().__gregs[_REG_RSP] } func

Completed in 714 milliseconds

1 2 3 4