Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for msanread (0.12 sec)

  1. src/runtime/map.go

    		pc := abi.FuncPCABIInternal(mapaccess1)
    		racereadpc(unsafe.Pointer(h), callerpc, pc)
    		raceReadObjectPC(t.Key, key, callerpc, pc)
    	}
    	if msanenabled && h != nil {
    		msanread(key, t.Key.Size_)
    	}
    	if asanenabled && h != nil {
    		asanread(key, t.Key.Size_)
    	}
    	if h == nil || h.count == 0 {
    		if err := mapKeyError(t, key); err != nil {
    			panic(err) // see issue 23734
    		}
    		return unsafe.Pointer(&zeroVal[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    type mSpanState uint8
    
    const (
    	mSpanDead   mSpanState = iota
    	mSpanInUse             // allocated for garbage collected heap
    	mSpanManual            // allocated for manual management (e.g., stack allocator)
    )
    
    // mSpanStateNames are the names of the span states, indexed by
    // mSpanState.
    var mSpanStateNames = []string{
    	"mSpanDead",
    	"mSpanInUse",
    	"mSpanManual",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	// There might be extra input waiting on the wire. Make a best effort
    	// attempt to fetch it so that it can be used in (*Conn).Read to
    	// "predict" closeNotify alerts.
    	c.rawInput.Grow(needs + bytes.MinRead)
    	_, err := c.rawInput.ReadFrom(&atLeastReader{r, int64(needs)})
    	return err
    }
    
    // sendAlertLocked sends a TLS alert message.
    func (c *Conn) sendAlertLocked(err alert) error {
    	if c.quic != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                }
                return new SmbWatchHandleImpl(openUnshared(O_RDONLY, READ_CONTROL | GENERIC_READ, DEFAULT_SHARING, 0, 1), filter, recursive);
            }
        }
    
    
        @Override
        public boolean canRead () throws SmbException {
            if ( getType() == TYPE_NAMED_PIPE ) { // try opening the pipe for reading?
                return true;
            }
            return exists(); // try opening and catch sharing violation?
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top