Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/os_windows.go

    			}
    			err = osErrToFileErr(&os.PathError{
    				Op:   "FindNextFile",
    				Path: dirPath,
    				Err:  err,
    			})
    			if err == errFileNotFound {
    				return nil
    			}
    			return err
    		}
    		name := syscall.UTF16ToString(data.FileName[0:])
    		if name == "" || name == "." || name == ".." { // Useless names
    			continue
    		}
    
    		var typ os.FileMode // regular file
    		switch {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Feb 18 16:25:55 UTC 2025
    - 5K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg syscall (windows-386), func TransmitFile(Handle, Handle, uint32, uint32, *Overlapped, *TransmitFileBuffers, uint32) error
    pkg syscall (windows-386), func UTF16ToString([]uint16) string
    pkg syscall (windows-386), func UnmapViewOfFile(uintptr) error
    pkg syscall (windows-386), func VirtualLock(uintptr, uintptr) error
    pkg syscall (windows-386), func VirtualUnlock(uintptr, uintptr) error
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top