Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 245 for Fault (0.27 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcMessage.java

            if ( this.ptype == 2 || this.ptype == 3 ) { /* Response or Fault */
                this.alloc_hint = buf.dec_ndr_long();
                buf.dec_ndr_short(); /* context id */
                buf.dec_ndr_short(); /* cancel count */
            }
            if ( this.ptype == 3 || this.ptype == 13 ) { /* Fault */
                this.result = buf.dec_ndr_long();
            }
            else { /* Bind_ack or Response */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  2. src/runtime/signal_arm64.go

    	print("r28     ", hex(c.r28()), "\n")
    	print("r29     ", hex(c.r29()), "\n")
    	print("lr      ", hex(c.lr()), "\n")
    	print("sp      ", hex(c.sp()), "\n")
    	print("pc      ", hex(c.pc()), "\n")
    	print("fault   ", hex(c.fault()), "\n")
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) sigpc() uintptr { return uintptr(c.pc()) }
    
    func (c *sigctxt) setsigpc(x uint64) { c.set_pc(x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 18:16:00 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ImmutableCapability.java

     *       Could not create task ':santa-tracker:generateDebugFeatureTransitiveDeps'.
     *         org/gradle/internal/component/external/model/ImmutableCapability
     * </code>
     *
     * The task at fault is {@code com.android.build.gradle.internal.tasks.featuresplit.PackagedDependenciesWriterTask`}.
     *
     * @deprecated Use {@link DefaultImmutableCapability} instead.
     */
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/runtime/signal_openbsd_arm.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uint32 { return c.regs().sc_pc }
    
    func (c *sigctxt) cpsr() uint32    { return c.regs().sc_spsr }
    func (c *sigctxt) fault() uintptr  { return uintptr(c.sigaddr()) }
    func (c *sigctxt) trap() uint32    { return 0 }
    func (c *sigctxt) error() uint32   { return 0 }
    func (c *sigctxt) oldmask() uint32 { return 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 18:13:30 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue8048.go

    	// the frame entirely.
    	var x *int
    	var b bool
    	if b {
    		y := make([]int, 1)
    		runtime.GC()
    		x = &y[0]
    	}
    	println(*x)
    }
    
    func test2() {
    	// Same as test1, but the fault happens in the function with the defer.
    	// The runtime should see the defer and garbage collect the frame
    	// as if the PC were immediately after the defer statement.
    	defer func() {
    		runtime.GC()
    		recover()
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  6. src/runtime/signal_386.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) sigpc() uintptr { return uintptr(c.eip()) }
    
    func (c *sigctxt) sigsp() uintptr { return uintptr(c.esp()) }
    func (c *sigctxt) siglr() uintptr { return 0 }
    func (c *sigctxt) fault() uintptr { return uintptr(c.sigaddr()) }
    
    // preparePanic sets up the stack to look like a call to sigpanic.
    func (c *sigctxt) preparePanic(sig uint32, gp *g) {
    	pc := uintptr(c.eip())
    	sp := uintptr(c.esp())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. src/runtime/signal_freebsd_arm.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uint32 { return c.regs().__gregs[15] }
    
    func (c *sigctxt) cpsr() uint32    { return c.regs().__gregs[16] }
    func (c *sigctxt) fault() uintptr  { return uintptr(c.info.si_addr) }
    func (c *sigctxt) trap() uint32    { return 0 }
    func (c *sigctxt) error() uint32   { return 0 }
    func (c *sigctxt) oldmask() uint32 { return 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 02:31:25 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  8. src/runtime/signal_linux_arm.go

    func (c *sigctxt) lr() uint32  { return c.regs().lr }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uint32 { return c.regs().pc }
    
    func (c *sigctxt) cpsr() uint32    { return c.regs().cpsr }
    func (c *sigctxt) fault() uintptr  { return uintptr(c.regs().fault_address) }
    func (c *sigctxt) trap() uint32    { return c.regs().trap_no }
    func (c *sigctxt) error() uint32   { return c.regs().error_code }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue11656.dir/issue11656.go

    			}
    			panic("cannot find main.f on stack")
    		}
    	}()
    	f(20)
    }
    
    func f(n int) {
    	if n > 0 {
    		f(n - 1)
    	}
    	var f struct {
    		x uintptr
    	}
    
    	// We want to force a seg fault, to get a crash at a PC value != 0.
    	// Not all systems make the data section non-executable.
    	ill := make([]byte, 64)
    	switch runtime.GOARCH {
    	case "386", "amd64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 15:28:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/runtime/os_plan9.go

    			// We could check that the arena chunk is explicitly set to fault,
    			// but the fact that we faulted on accessing it is enough to prove
    			// that it is.
    			print("accessed data from freed user arena ", hex(gp.sigcode1), "\n")
    		} else {
    			print("unexpected fault address ", hex(gp.sigcode1), "\n")
    		}
    		throw("fault")
    	case _SIGTRAP:
    		if gp.paniconfault {
    			panicmem()
    		}
    		throw(note)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top