Home
last modified time | relevance | path

Searched refs:wpipe (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Ddaemon.c796 MHD_pipe spipe = con->daemon->wpipe[0]; in MHD_handle_connection()
1533 (MHD_INVALID_PIPE_ != daemon->wpipe[1]) && in internal_add_connection()
1534 (1 != MHD_pipe_write_ (daemon->wpipe[1], "n", 1)) ) in internal_add_connection()
1710 if ( (MHD_INVALID_PIPE_ != daemon->wpipe[1]) && in MHD_resume_connection()
1711 (1 != MHD_pipe_write_ (daemon->wpipe[1], "r", 1)) ) in MHD_resume_connection()
2195 if ( (MHD_INVALID_PIPE_ != daemon->wpipe[0]) && in MHD_run_from_select()
2196 (FD_ISSET (daemon->wpipe[0], read_fd_set)) ) in MHD_run_from_select()
2197 (void) MHD_pipe_read_ (daemon->wpipe[0], &tmp, sizeof (tmp)); in MHD_run_from_select()
2302 if ( (MHD_INVALID_PIPE_ != daemon->wpipe[0]) && in MHD_select()
2303 (MHD_YES != add_to_fd_set (daemon->wpipe[0], in MHD_select()
[all …]
Dinternal.h1151 MHD_pipe wpipe[2]; member
/third_party/python/Lib/test/
Dtest_builtin.py2014 with open(w, "w") as wpipe:
2015 child(wpipe)
2065 def child(wpipe): argument
2074 print("tty =", sys.stdin.isatty() and sys.stdout.isatty(), file=wpipe)
2075 print(ascii(input(prompt)), file=wpipe)
2104 def child(wpipe): argument
2105 print("stdin.isatty():", sys.stdin.isatty(), file=wpipe)
2108 print("captured:", ascii(sys.stdout.getvalue()), file=wpipe)
/third_party/python/Lib/test/test_asyncio/
Dtest_events.py1333 rpipe, wpipe = os.pipe()
1346 os.write(wpipe, b'1')
1350 os.write(wpipe, b'2345')
1355 os.close(wpipe)
1370 rpipe, wpipe = os.pipe()
1372 wpipeobj = io.open(wpipe, 'w', 1024, encoding="utf-8")
1435 rpipe, wpipe = os.pipe()
1436 pipeobj = io.open(wpipe, 'wb', 1024)