Home
last modified time | relevance | path

Searched refs:std_handle (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/rich/
D_win32_console.py94 def GetConsoleMode(std_handle: wintypes.HANDLE) -> int:
110 success = bool(_GetConsoleMode(std_handle, console_mode))
128 std_handle: wintypes.HANDLE,
148 std_handle,
169 std_handle: wintypes.HANDLE,
190 std_handle, style_attrs, num_cells, start, byref(num_written)
204 std_handle: wintypes.HANDLE, attributes: wintypes.WORD
216 return bool(_SetConsoleTextAttribute(std_handle, attributes))
228 std_handle: wintypes.HANDLE,
239 _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info))
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/rich/
D_win32_console.py94 def GetConsoleMode(std_handle: wintypes.HANDLE) -> int:
110 success = bool(_GetConsoleMode(std_handle, console_mode))
128 std_handle: wintypes.HANDLE,
148 std_handle,
169 std_handle: wintypes.HANDLE,
190 std_handle, style_attrs, num_cells, start, byref(num_written)
204 std_handle: wintypes.HANDLE, attributes: wintypes.WORD
216 return bool(_SetConsoleTextAttribute(std_handle, attributes))
228 std_handle: wintypes.HANDLE,
239 _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info))
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/rich/
D_win32_console.py94 def GetConsoleMode(std_handle: wintypes.HANDLE) -> int:
110 success = bool(_GetConsoleMode(std_handle, console_mode))
128 std_handle: wintypes.HANDLE,
148 std_handle,
169 std_handle: wintypes.HANDLE,
190 std_handle, style_attrs, num_cells, start, byref(num_written)
204 std_handle: wintypes.HANDLE, attributes: wintypes.WORD
216 return bool(_SetConsoleTextAttribute(std_handle, attributes))
228 std_handle: wintypes.HANDLE,
239 _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info))
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/rich/
D_win32_console.py94 def GetConsoleMode(std_handle: wintypes.HANDLE) -> int:
110 success = bool(_GetConsoleMode(std_handle, console_mode))
128 std_handle: wintypes.HANDLE,
148 std_handle,
169 std_handle: wintypes.HANDLE,
190 std_handle, style_attrs, num_cells, start, byref(num_written)
204 std_handle: wintypes.HANDLE, attributes: wintypes.WORD
216 return bool(_SetConsoleTextAttribute(std_handle, attributes))
228 std_handle: wintypes.HANDLE,
239 _GetConsoleScreenBufferInfo(std_handle, byref(console_screen_buffer_info))
[all …]
/aosp_15_r20/external/gmmlib/Source/GmmLib/Utility/GmmLog/spdlog/sinks/
H A Dwincolor_sink.h34 wincolor_sink(HANDLE std_handle): out_handle_(std_handle) in wincolor_sink() argument
/aosp_15_r20/external/python/cpython2/PC/
D_subprocess.c168 int std_handle; in sp_GetStdHandle() local
170 if (! PyArg_ParseTuple(args, "i:GetStdHandle", &std_handle)) in sp_GetStdHandle()
174 handle = GetStdHandle((DWORD) std_handle); in sp_GetStdHandle()
/aosp_15_r20/external/python/cpython3/Modules/clinic/
D_winapi.c.h642 _winapi_GetStdHandle_impl(PyObject *module, DWORD std_handle);
648 DWORD std_handle; in _winapi_GetStdHandle() local
651 if (!PyArg_Parse(arg, "k:GetStdHandle", &std_handle)) { in _winapi_GetStdHandle()
654 _return_value = _winapi_GetStdHandle_impl(module, std_handle); in _winapi_GetStdHandle()
/aosp_15_r20/external/python/cpython3/Modules/
D_winapi.c1339 _winapi_GetStdHandle_impl(PyObject *module, DWORD std_handle) in _winapi_GetStdHandle_impl() argument
1345 handle = GetStdHandle(std_handle); in _winapi_GetStdHandle_impl()