MCPcopy Create free account
hub / github.com/rabbitstack/fibratus / GetDeviceDriverFileName

Function GetDeviceDriverFileName

pkg/sys/zsyscall_windows.go:257–261  ·  view source on GitHub ↗
(imageBase uintptr, filename *uint16, size uint32)

Source from the content-addressed store, hash-verified

255}
256
257func GetDeviceDriverFileName(imageBase uintptr, filename *uint16, size uint32) (n uint32) {
258 r0, _, _ := syscall.Syscall(procGetDeviceDriverFileNameW.Addr(), 3, uintptr(imageBase), uintptr(unsafe.Pointer(filename)), uintptr(size))
259 n = uint32(r0)
260 return
261}
262
263func GetMappedFileName(handle windows.Handle, addr uintptr, filename *uint16, size uint32) (n uint32) {
264 r0, _, _ := syscall.Syscall6(procGetMappedFileNameW.Addr(), 4, uintptr(handle), uintptr(addr), uintptr(unsafe.Pointer(filename)), uintptr(size), 0, 0)

Callers 1

EnumDevicesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected