HomeSort by relevance Sort by last modified time
    Searched refs:WriteConsole (Results 1 - 10 of 10) sorted by null

  /prebuilts/go/darwin-x86/src/os/
file_windows.go 319 // writeConsole writes len(b) bytes to the console File.
321 func (f *File) writeConsole(b []byte) (n int, err error) {
338 // syscall.WriteConsole seems to fail, if given large buffer.
340 // discovered by experimenting with syscall.WriteConsole.
352 err = syscall.WriteConsole(f.fd, &uint16s[0], uint32(len(uint16s)), &written, nil)
368 return f.writeConsole(b)
  /prebuilts/go/linux-x86/src/os/
file_windows.go 319 // writeConsole writes len(b) bytes to the console File.
321 func (f *File) writeConsole(b []byte) (n int, err error) {
338 // syscall.WriteConsole seems to fail, if given large buffer.
340 // discovered by experimenting with syscall.WriteConsole.
352 err = syscall.WriteConsole(f.fd, &uint16s[0], uint32(len(uint16s)), &written, nil)
368 return f.writeConsole(b)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wincon.h 199 #define WriteConsole __MINGW_NAME_AW(WriteConsole)
  /external/curl/tests/server/
sockfilt.c 326 success = WriteConsole(handle, buf, curlx_uztoul(count), &wcount, NULL);
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
os_windows.go 373 // Use the dedicated WriteConsole call to ensure unicode is printed correctly.
375 return int32(writeConsole(handle, buf, n))
388 // writeConsole writes bufLen bytes from buf to the console File.
390 func writeConsole(handle uintptr, buf unsafe.Pointer, bufLen int32) int {
  /prebuilts/go/linux-x86/src/runtime/
os_windows.go 373 // Use the dedicated WriteConsole call to ensure unicode is printed correctly.
375 return int32(writeConsole(handle, buf, n))
388 // writeConsole writes bufLen bytes from buf to the console File.
390 func writeConsole(handle uintptr, buf unsafe.Pointer, bufLen int32) int {
  /prebuilts/go/darwin-x86/src/syscall/
syscall_windows.go 227 //sys WriteConsole(console Handle, buf *uint16, towrite uint32, written *uint32, reserved *byte) (err error) = kernel32.WriteConsoleW
    [all...]
zsyscall_windows.go     [all...]
  /prebuilts/go/linux-x86/src/syscall/
syscall_windows.go 227 //sys WriteConsole(console Handle, buf *uint16, towrite uint32, written *uint32, reserved *byte) (err error) = kernel32.WriteConsoleW
    [all...]
zsyscall_windows.go     [all...]

Completed in 183 milliseconds