Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/os/dir_windows.go

    				nextEntryOffset = info.NextEntryOffset
    				nameslice = unsafe.Slice(&info.FileName[0], info.FileNameLength/2)
    			}
    			d.bufp += int(nextEntryOffset)
    			islast = nextEntryOffset == 0
    			if islast {
    				d.bufp = 0
    			}
    			if (len(nameslice) == 1 && nameslice[0] == '.') ||
    				(len(nameslice) == 2 && nameslice[0] == '.' && nameslice[1] == '.') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/syscall_windows.go

    //sys	ProcessPrng(buf []byte) (err error) = bcryptprimitives.ProcessPrng
    
    type FILE_ID_BOTH_DIR_INFO struct {
    	NextEntryOffset uint32
    	FileIndex       uint32
    	CreationTime    syscall.Filetime
    	LastAccessTime  syscall.Filetime
    	LastWriteTime   syscall.Filetime
    	ChangeTime      syscall.Filetime
    	EndOfFile       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    }
    
    type Overlapped struct {
    	Internal     uintptr
    	InternalHigh uintptr
    	Offset       uint32
    	OffsetHigh   uint32
    	HEvent       Handle
    }
    
    type FileNotifyInformation struct {
    	NextEntryOffset uint32
    	Action          uint32
    	FileNameLength  uint32
    	FileName        uint16
    }
    
    type Filetime struct {
    	LowDateTime  uint32
    	HighDateTime uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"FileNotifyInformation", Type, 0},
    		{"FileNotifyInformation.Action", Field, 0},
    		{"FileNotifyInformation.FileName", Field, 0},
    		{"FileNotifyInformation.FileNameLength", Field, 0},
    		{"FileNotifyInformation.NextEntryOffset", Field, 0},
    		{"Filetime", Type, 0},
    		{"Filetime.HighDateTime", Field, 0},
    		{"Filetime.LowDateTime", Field, 0},
    		{"FindClose", Func, 0},
    		{"FindFirstFile", Func, 0},
    		{"FindNextFile", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top