Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for asanunpoison (0.11 sec)

  1. src/runtime/asan0.go

    func asanread(addr unsafe.Pointer, sz uintptr)            { throw("asan") }
    func asanwrite(addr unsafe.Pointer, sz uintptr)           { throw("asan") }
    func asanunpoison(addr unsafe.Pointer, sz uintptr)        { throw("asan") }
    func asanpoison(addr unsafe.Pointer, sz uintptr)          { throw("asan") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 760 bytes
    - Viewed (0)
  2. src/runtime/asan.go

    }
    
    //go:noescape
    func doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    
    //go:noescape
    func doasanwrite(addr unsafe.Pointer, sz, sp, pc uintptr)
    
    //go:noescape
    func asanunpoison(addr unsafe.Pointer, sz uintptr)
    
    //go:noescape
    func asanpoison(addr unsafe.Pointer, sz uintptr)
    
    //go:noescape
    func asanregisterglobals(addr unsafe.Pointer, n uintptr)
    
    // These are called from asan_GOARCH.s
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:39:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top