Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for DeleteProcThreadAttributeList (0.36 sec)

  1. src/syscall/export_windows_test.go

    // license that can be found in the LICENSE file.
    
    package syscall
    
    var NewProcThreadAttributeList = newProcThreadAttributeList
    var UpdateProcThreadAttribute = updateProcThreadAttribute
    var DeleteProcThreadAttributeList = deleteProcThreadAttributeList
    
    const PROC_THREAD_ATTRIBUTE_HANDLE_LIST = _PROC_THREAD_ATTRIBUTE_HANDLE_LIST
    
    var EncodeWTF16 = encodeWTF16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 500 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    	return updateProcThreadAttribute(al.data, 0, attribute, value, size, nil, nil)
    }
    
    // Delete frees ProcThreadAttributeList's resources.
    func (al *ProcThreadAttributeListContainer) Delete() {
    	deleteProcThreadAttributeList(al.data)
    	LocalFree(Handle(unsafe.Pointer(al.data)))
    	al.data = nil
    	al.pointers = nil
    }
    
    // List returns the actual ProcThreadAttributeList to be passed to StartupInfoEx.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. src/syscall/exec_windows.go

    		}
    	}
    	si := new(_STARTUPINFOEXW)
    	si.ProcThreadAttributeList, err = newProcThreadAttributeList(2)
    	if err != nil {
    		return 0, 0, err
    	}
    	defer deleteProcThreadAttributeList(si.ProcThreadAttributeList)
    	si.Cb = uint32(unsafe.Sizeof(*si))
    	si.Flags = STARTF_USESTDHANDLES
    	if sys.HideWindow {
    		si.Flags |= STARTF_USESHOWWINDOW
    		si.ShowWindow = SW_HIDE
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    //sys	initializeProcThreadAttributeList(attrlist *_PROC_THREAD_ATTRIBUTE_LIST, attrcount uint32, flags uint32, size *uintptr) (err error) = InitializeProcThreadAttributeList
    //sys	deleteProcThreadAttributeList(attrlist *_PROC_THREAD_ATTRIBUTE_LIST) = DeleteProcThreadAttributeList
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_windows.go

    	procDeleteFileW                        = modkernel32.NewProc("DeleteFileW")
    	procDeleteProcThreadAttributeList      = modkernel32.NewProc("DeleteProcThreadAttributeList")
    	procDeviceIoControl                    = modkernel32.NewProc("DeviceIoControl")
    	procDuplicateHandle                    = modkernel32.NewProc("DuplicateHandle")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys   initializeProcThreadAttributeList(attrlist *ProcThreadAttributeList, attrcount uint32, flags uint32, size *uintptr) (err error) = InitializeProcThreadAttributeList
    //sys   deleteProcThreadAttributeList(attrlist *ProcThreadAttributeList) = DeleteProcThreadAttributeList
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procDeleteFileW                                          = modkernel32.NewProc("DeleteFileW")
    	procDeleteProcThreadAttributeList                        = modkernel32.NewProc("DeleteProcThreadAttributeList")
    	procDeleteVolumeMountPointW                              = modkernel32.NewProc("DeleteVolumeMountPointW")
    	procDeviceIoControl                                      = modkernel32.NewProc("DeviceIoControl")
    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