Lines Matching defs:handle
97 ASSERT(GetConsoleScreenBufferInfo(tty_out->handle, &(si->csbi)));
106 HANDLE handle = tty_out->handle;
108 ASSERT(GetConsoleScreenBufferInfo(handle, &info));
111 ASSERT(SetConsoleCursorPosition(handle, pos));
115 HANDLE handle = tty_out->handle;
117 ASSERT(GetConsoleScreenBufferInfo(handle, &info));
128 HANDLE handle = tty_out->handle;
130 ASSERT(GetConsoleCursorInfo(handle, &info));
137 ASSERT(SetConsoleCursorInfo(tty_out->handle, &info));
147 ASSERT(SetConsoleCursorInfo(tty_out->handle, &info));
156 ASSERT(GetConsoleScreenBufferInfo(tty_out->handle, &info));
176 ASSERT(GetConsoleScreenBufferInfo(tty_out->handle, &info));
181 tty_out->handle, '.', length, origin, &number_of_written));
189 ASSERT(GetConsoleScreenBufferInfo(tty_out->handle, &info));
194 tty_out->handle, ' ', length, origin, &number_of_written);
197 tty_out->handle, si->default_attr, length, origin, &number_of_written);
219 tty_out->handle, cs->text, cs->si.length, origin, &length));
222 tty_out->handle, cs->attributes, cs->si.length, origin, &length));
354 HANDLE handle;
358 handle = CreateConsoleScreenBuffer(GENERIC_READ | GENERIC_WRITE,
363 ASSERT_PTR_NE(handle, INVALID_HANDLE_VALUE);
365 ttyout_fd = _open_osfhandle((intptr_t) handle, 0);