Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for asancall (0.13 sec)

  1. src/runtime/msan_loong64.s

    	MOVV	$__msan_read_go(SB), FARG
    	JMP	msancall<>(SB)
    
    // func runtime·msanwrite(addr unsafe.Pointer, sz uintptr)
    // Called from instrumented code.
    TEXT	runtime·msanwrite(SB), NOSPLIT, $0-16
    	MOVV	addr+0(FP), RARG0
    	MOVV	sz+8(FP), RARG1
    	// void __msan_write_go(void *addr, uintptr_t sz);
    	MOVV	$__msan_write_go(SB), FARG
    	JMP	msancall<>(SB)
    
    // func runtime·msanmalloc(addr unsafe.Pointer, sz uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/runtime/msan_amd64.s

    	MOVQ	$__msan_read_go(SB), AX
    	JMP	msancall<>(SB)
    
    // func runtime·msanwrite(addr unsafe.Pointer, sz uintptr)
    // Called from instrumented code.
    TEXT	runtime·msanwrite(SB), NOSPLIT, $0-16
    	MOVQ	addr+0(FP), RARG0
    	MOVQ	sz+8(FP), RARG1
    	// void __msan_write_go(void *addr, uintptr_t sz);
    	MOVQ	$__msan_write_go(SB), AX
    	JMP	msancall<>(SB)
    
    // func runtime·msanmalloc(addr unsafe.Pointer, sz uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/runtime/msan_arm64.s

    	MOVD	$__msan_read_go(SB), FARG
    	JMP	msancall<>(SB)
    
    // func runtime·msanwrite(addr unsafe.Pointer, sz uintptr)
    // Called from instrumented code.
    TEXT	runtime·msanwrite(SB), NOSPLIT, $0-16
    	MOVD	addr+0(FP), RARG0
    	MOVD	sz+8(FP), RARG1
    	// void __msan_write_go(void *addr, uintptr_t sz);
    	MOVD	$__msan_write_go(SB), FARG
    	JMP	msancall<>(SB)
    
    // func runtime·msanmalloc(addr unsafe.Pointer, sz uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

            val asyncCall = executableCalls[i]
            asyncCall.callsPerHost.decrementAndGet()
    
            this.withLock {
              runningAsyncCalls.remove(asyncCall)
            }
    
            asyncCall.failRejected()
          }
          idleCallback?.run()
        } else {
          for (i in 0 until executableCalls.size) {
            val asyncCall = executableCalls[i]
            asyncCall.executeOn(executorService)
          }
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    	// with respect to some test function, to the call sites where they
    	// are invoked asynchronously. There may be multiple such call sites
    	// for e.g. test helpers.
    	asyncs := make(map[ast.Node][]*asyncCall)
    	var regions []ast.Node
    	addCall := func(c *asyncCall) {
    		if c != nil {
    			r := c.region
    			if asyncs[r] == nil {
    				regions = append(regions, r)
    			}
    			asyncs[r] = append(asyncs[r], c)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/RecordingExecutor.kt

    ) : AbstractExecutorService() {
      private var shutdown: Boolean = false
      private val calls = mutableListOf<RealCall.AsyncCall>()
    
      override fun execute(command: Runnable) {
        if (shutdown) throw RejectedExecutionException()
        calls.add(command as RealCall.AsyncCall)
      }
    
      fun assertJobs(vararg expectedUrls: String) {
        val actualUrls = calls.map { it.request.url.toString() }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/NativeImageTestsAccessors.kt

    internal val Response.exchangeAccessor: Exchange?
      get() = this.exchange
    
    internal val Exchange.connectionAccessor: RealConnection
      get() = this.connection
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/a.out.go

    	AREMU
    
    	ARFE
    
    	ASC
    	ASCV
    
    	ASGT
    	ASGTU
    
    	ASLL
    	ASQRTD
    	ASQRTF
    	ASRA
    	ASRL
    	AROTR
    	ASUB
    	ASUBD
    	ASUBF
    
    	ASUBU
    	ASUBW
    	ADBAR
    	ASYSCALL
    
    	ATEQ
    	ATNE
    
    	AWORD
    
    	AXOR
    
    	AMASKEQZ
    	AMASKNEZ
    
    	// 64-bit
    	AMOVV
    	AMOVVL
    	AMOVVR
    
    	ASLLV
    	ASRAV
    	ASRLV
    	AROTRV
    	ADIVV
    	ADIVVU
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top