Lines Matching refs:thread
354 thread = threading.Thread(target=run_server)
355 thread.start()
356 self.addCleanup(thread.join)
785 # start server thread to handle requests
787 thread = threading.Thread(target=self.threadFunc, args=serv_args)
788 thread.start()
789 self.addCleanup(thread.join)
796 # wait on the server thread to terminate
1110 #due to thread scheduling)
1330 # start server thread to handle requests
1332 thread = threading.Thread(target=http_server, args=serv_args)
1333 thread.start()
1334 self.addCleanup(thread.join)
1341 # wait on the server thread to terminate