Searched refs:stdioConnection (Results 1 – 2 of 2) sorted by relevance
/haiku/build/scripts/ |
H A D | bootstrap_client.py | 31 stdioConnection = socket.socket(socket.AF_INET, socket.SOCK_STREAM) variable 36 stdioConnection.connect((address, port)) 47 connections = [controlConnection, stdioConnection, stderrConnection, sys.stdin] 56 stdioConnection.send(data) 59 stdioConnection.shutdown(socket.SHUT_WR) 61 if stdioConnection in readable: 62 data = stdioConnection.recv(bufferSize) 66 connections.remove(stdioConnection)
|
H A D | bootstrap_daemon.py | 25 (stdioConnection, stdioAddress) = listenerSocket.accept() 36 exitCode = subprocess.call(commandToRun, stdin=stdioConnection, 37 stdout=stdioConnection, stderr=stderrConnection, shell=True) 42 stdioConnection.close()
|