Home | History | Annotate | Download | only in testserver

Lines Matching refs:startup_pipe

1395   if options.startup_pipe is not None:
1401 fd = msvcrt.open_osfhandle(options.startup_pipe, 0)
1403 fd = options.startup_pipe
1404 startup_pipe = os.fdopen(fd, "w")
1408 startup_pipe.write(struct.pack('=L', server_data_len))
1409 startup_pipe.write(server_data_json)
1410 startup_pipe.close()
1461 dest='startup_pipe',