Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for notString (0.12 sec)

  1. src/crypto/tls/notboring.go

    Filippo Valsorda <******@****.***> 1716375063 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 237 bytes
    - Viewed (0)
  2. src/crypto/internal/boring/notboring.go

    Filippo Valsorda <******@****.***> 1706307765 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	return UTF16ToString(s.Slice())
    }
    
    // NewNTString returns a new NTString structure for use with native
    // NT APIs that work over the NTString type. Note that most Windows APIs
    // do not use NTString, and instead UTF16PtrFromString should be used for
    // the more common *uint16 string type.
    func NewNTString(s string) (*NTString, error) {
    	var nts NTString
    	s8, err := BytePtrFromString(s)
    	if err != nil {
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/internal/trace/internal/testgen/go122/trace.go

    	}
    	return raw.Event{
    		Version: version.Go122,
    		Ev:      ev,
    		Args:    args,
    		Data:    data,
    	}
    }
    
    type stack struct {
    	stk [32]trace.StackFrame
    	len int
    }
    
    var (
    	NoString = ""
    	NoStack  = []trace.StackFrame{}
    )
    
    // Generation represents a single generation in the trace.
    type Generation struct {
    	trace   *Trace
    	gen     uint64
    	batches []*Batch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    type NTUnicodeString struct {
    	Length        uint16
    	MaximumLength uint16
    	Buffer        *uint16
    }
    
    // NTString is an ANSI string for NT native APIs, corresponding to STRING.
    type NTString struct {
    	Length        uint16
    	MaximumLength uint16
    	Buffer        *byte
    }
    
    type LIST_ENTRY struct {
    	Flink *LIST_ENTRY
    	Blink *LIST_ENTRY
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall(procRtlGetVersion.Addr(), 1, uintptr(unsafe.Pointer(info)), 0, 0)
    	if r0 != 0 {
    		ntstatus = NTStatus(r0)
    	}
    	return
    }
    
    func RtlInitString(destinationString *NTString, sourceString *byte) {
    	syscall.Syscall(procRtlInitString.Addr(), 2, uintptr(unsafe.Pointer(destinationString)), uintptr(unsafe.Pointer(sourceString)), 0)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top