Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for GetRpc (0.19 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    // there is no possibility of strings from the crash report (which may
    // contain PII) leaking into the telemetry system.
    func parseStackPCs(crash string) ([]uintptr, error) {
    	// getPC parses the PC out of a line of the form:
    	//     \tFILE:LINE +0xRELPC sp=... fp=... pc=...
    	getPC := func(line string) (uint64, error) {
    		_, pcstr, ok := strings.Cut(line, " pc=") // e.g. pc=0x%x
    		if !ok {
    			return 0, fmt.Errorf("no pc= for stack frame: %s", line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/runtime/signal_openbsd_arm.go

    func (c *sigctxt) sigcode() uint32 { return uint32(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint32 {
    	return *(*uint32)(add(unsafe.Pointer(c.info), 16))
    }
    
    func (c *sigctxt) set_pc(x uint32)  { c.regs().sc_pc = x }
    func (c *sigctxt) set_sp(x uint32)  { c.regs().sc_usr_sp = x }
    func (c *sigctxt) set_lr(x uint32)  { c.regs().sc_usr_lr = x }
    func (c *sigctxt) set_r10(x uint32) { c.regs().sc_r10 = x }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 18:13:30 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  3. src/runtime/defs_plan9_386.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uintptr { return uintptr(c.u.pc) }
    
    func (c *sigctxt) sp() uintptr { return uintptr(c.u.sp) }
    func (c *sigctxt) lr() uintptr { return uintptr(0) }
    
    func (c *sigctxt) setpc(x uintptr) { c.u.pc = uint32(x) }
    func (c *sigctxt) setsp(x uintptr) { c.u.sp = uint32(x) }
    func (c *sigctxt) setlr(x uintptr) {}
    
    func (c *sigctxt) savelr(x uintptr) {}
    
    func dumpregs(u *ureg) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/signal_linux_arm64.go

    func (c *sigctxt) fault() uintptr { return uintptr(c.regs().fault_address) }
    
    func (c *sigctxt) sigcode() uint64 { return uint64(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_pc(x uint64)  { c.regs().pc = x }
    func (c *sigctxt) set_sp(x uint64)  { c.regs().sp = x }
    func (c *sigctxt) set_lr(x uint64)  { c.regs().regs[30] = x }
    func (c *sigctxt) set_r28(x uint64) { c.regs().regs[28] = x }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  5. src/runtime/signal_openbsd_riscv64.go

    func (c *sigctxt) sigcode() uint64 { return uint64(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 {
    	return *(*uint64)(add(unsafe.Pointer(c.info), 2*goarch.PtrSize))
    }
    
    func (c *sigctxt) set_pc(x uint64) { c.regs().sc_sepc = uintptr(x) }
    func (c *sigctxt) set_ra(x uint64) { c.regs().sc_ra = uintptr(x) }
    func (c *sigctxt) set_sp(x uint64) { c.regs().sc_sp = uintptr(x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/runtime/defs_plan9_arm.go

    //go:nowritebarrierrec
    func (c *sigctxt) pc() uintptr { return uintptr(c.u.pc) }
    
    func (c *sigctxt) sp() uintptr { return uintptr(c.u.sp) }
    func (c *sigctxt) lr() uintptr { return uintptr(c.u.link) }
    
    func (c *sigctxt) setpc(x uintptr)  { c.u.pc = uint32(x) }
    func (c *sigctxt) setsp(x uintptr)  { c.u.sp = uint32(x) }
    func (c *sigctxt) setlr(x uintptr)  { c.u.link = uint32(x) }
    func (c *sigctxt) savelr(x uintptr) { c.u.r0 = uint32(x) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  7. src/runtime/signal_freebsd_arm64.go

    func (c *sigctxt) fault() uintptr { return uintptr(c.info.si_addr) }
    
    func (c *sigctxt) sigcode() uint64 { return uint64(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_pc(x uint64)  { c.regs().mc_gpregs.gp_elr = x }
    func (c *sigctxt) set_sp(x uint64)  { c.regs().mc_gpregs.gp_sp = x }
    func (c *sigctxt) set_lr(x uint64)  { c.regs().mc_gpregs.gp_lr = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/runtime/signal_openbsd_arm64.go

    func (c *sigctxt) sigaddr() uint64 {
    	return *(*uint64)(add(unsafe.Pointer(c.info), 16))
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uint64 { return uint64(c.regs().sc_elr) }
    
    func (c *sigctxt) set_pc(x uint64)  { c.regs().sc_elr = uintptr(x) }
    func (c *sigctxt) set_sp(x uint64)  { c.regs().sc_sp = uintptr(x) }
    func (c *sigctxt) set_lr(x uint64)  { c.regs().sc_lr = uintptr(x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/runtime/signal_linux_loong64.go

    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_r31(x uint64)  { c.regs().sc_regs[31] = x }
    func (c *sigctxt) set_r22(x uint64)  { c.regs().sc_regs[22] = x }
    func (c *sigctxt) set_pc(x uint64)   { c.regs().sc_pc = x }
    func (c *sigctxt) set_sp(x uint64)   { c.regs().sc_regs[3] = x }
    func (c *sigctxt) set_link(x uint64) { c.regs().sc_regs[1] = x }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:33 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. src/runtime/signal_linux_mips64x.go

    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    
    func (c *sigctxt) set_r28(x uint64)  { c.regs().sc_regs[28] = x }
    func (c *sigctxt) set_r30(x uint64)  { c.regs().sc_regs[30] = x }
    func (c *sigctxt) set_pc(x uint64)   { c.regs().sc_pc = x }
    func (c *sigctxt) set_sp(x uint64)   { c.regs().sc_regs[29] = x }
    func (c *sigctxt) set_link(x uint64) { c.regs().sc_regs[31] = x }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top