Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CreateProcess (0.67 sec)

  1. src/syscall/exec_windows.go

    		if len(b) > 0 {
    			b = append(b, ' ')
    		}
    		b = appendEscapeArg(b, v)
    	}
    	return string(b)
    }
    
    // createEnvBlock converts an array of environment strings into
    // the representation required by CreateProcess: a sequence of NUL
    // terminated strings followed by a nil.
    // Last bytes are two UCS-2 NULs, or four NUL bytes.
    // If any string contains a NUL, it returns (nil, EINVAL).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    //sys	CancelIo(s Handle) (err error)
    //sys	CancelIoEx(s Handle, o *Overlapped) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	PostQueuedCompletionStatus(cphandle Handle, qty uint32, key uintptr, overlapped *Overlapped) (err error)
    //sys	CancelIo(s Handle) (err error)
    //sys	CancelIoEx(s Handle, o *Overlapped) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	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)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CreateDirectory", Func, 0},
    		{"CreateFile", Func, 0},
    		{"CreateFileMapping", Func, 0},
    		{"CreateHardLink", Func, 4},
    		{"CreateIoCompletionPort", Func, 0},
    		{"CreatePipe", Func, 0},
    		{"CreateProcess", Func, 0},
    		{"CreateProcessAsUser", Func, 10},
    		{"CreateSymbolicLink", Func, 4},
    		{"CreateToolhelp32Snapshot", Func, 4},
    		{"Credential", Type, 0},
    		{"Credential.Gid", Field, 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)
  7. api/go1.txt

    pkg syscall (windows-386), func CreateIoCompletionPort(Handle, Handle, uint32, uint32) (Handle, error)
    pkg syscall (windows-386), func CreatePipe(*Handle, *Handle, *SecurityAttributes, uint32) error
    pkg syscall (windows-386), func CreateProcess(*uint16, *uint16, *SecurityAttributes, *SecurityAttributes, bool, uint32, *uint16, *uint16, *StartupInfo, *ProcessInformation) error
    pkg syscall (windows-386), func CryptAcquireContext(*Handle, *uint16, *uint16, uint32, uint32) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top