Home
last modified time | relevance | path

Searched refs:ServerThread (Results 1 – 13 of 13) sorted by relevance

/external/llvm-project/llvm/unittests/ExecutionEngine/Orc/
DRPCUtilsTest.cpp181 std::thread ServerThread([&]() { in TEST() local
217 ServerThread.join(); in TEST()
236 std::thread ServerThread([&]() { in TEST() local
273 ServerThread.join(); in TEST()
281 std::thread ServerThread([&]() { in TEST() local
318 ServerThread.join(); in TEST()
326 std::thread ServerThread([&]() { in TEST() local
364 ServerThread.join(); in TEST()
381 std::thread ServerThread([&]() { in TEST() local
415 ServerThread.join(); in TEST()
[all …]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DSocketHandlerTest.java170 ServerThread thread = new ServerThread(); in testConstructor_NoProperties()
204 ServerThread thread = new ServerThread(); in testConstructor_NoBasicProperties()
241 ServerThread thread = new ServerThread(); in testConstructor_ValidProperties()
255 thread = new ServerThread(); in testConstructor_ValidProperties()
285 ServerThread thread = new ServerThread(); in testConstructor_InvalidBasicProperties()
301 thread = new ServerThread(); in testConstructor_InvalidBasicProperties()
420 ServerThread thread = new ServerThread(); in testClose_SufficientPrivilege_NormalClose()
448 ServerThread thread = new ServerThread(); in testClose_SufficientPrivilege_DirectClose()
473 ServerThread thread = new ServerThread(); in testPublish_NoFilter()
512 ServerThread thread = new ServerThread(); in testPublish_WithFilter()
[all …]
/external/deqp/framework/platform/ios/
DtcuIOSApp.mm223 class ServerThread : public de::Thread
226 ServerThread (xs::TestProcess* testProcess, int port);
227 ~ServerThread (void);
237 ServerThread::ServerThread (xs::TestProcess* testProcess, int port)
243 ServerThread::~ServerThread (void)
248 void ServerThread::run (void)
254 void ServerThread::stop (void)
297 ServerThread m_server;
/external/grpc-grpc/test/cpp/client/
Dclient_channel_stress_test.cc165 struct ServerThread { struct in grpc::testing::__anonec6241e80111::ClientChannelStressTest
166 explicit ServerThread(const grpc::string& type, in ServerThread() function
177 std::bind(&ServerThread::Start, this, server_host, &mu, &cond))); in ServerThread()
272 backend_servers_.emplace_back(ServerThread<BackendServiceImpl>( in Start()
279 balancer_servers_.emplace_back(ServerThread<BalancerServiceImpl>( in Start()
311 std::vector<ServerThread<BackendServiceImpl>> backend_servers_;
312 std::vector<ServerThread<BalancerServiceImpl>> balancer_servers_;
/external/deqp/framework/platform/android/
DtcuAndroidExecService.hpp96 class ServerThread : public de::Thread class
99 ServerThread (JavaVM* vm, xs::TestProcess* testProcess, deSocketFamily family, int port);
122 ServerThread m_thread;
DtcuAndroidExecService.cpp328 ServerThread::ServerThread (JavaVM* vm, xs::TestProcess* process, deSocketFamily family, int port) in ServerThread() function in tcu::Android::ServerThread
333 void ServerThread::run (void) in run()
345 void ServerThread::stop (void) in stop()
/external/llvm-project/clang-tools-extra/clangd/unittests/
DClangdLSPServerTests.cpp47 ServerThread.emplace([&] { EXPECT_TRUE(Server->run()); }); in start()
57 ServerThread->join(); in stop()
59 ServerThread.reset(); in stop()
93 llvm::Optional<std::thread> ServerThread; member in clang::clangd::__anonad048cf60111::LSPTest
/external/grpc-grpc/test/core/transport/chttp2/
Dsettings_timeout_test.cc46 class ServerThread { class
48 explicit ServerThread(const char* address) : address_(address) {} in ServerThread() function in grpc_core::test::__anon93793cbd0111::ServerThread
62 thread_.reset(new std::thread(std::bind(&ServerThread::Serve, this))); in Start()
224 ServerThread server_thread(server_address_string); in TEST()
/external/apache-harmony/support/src/test/java/tests/support/
DSupport_HttpServer.java116 Thread thread = new Thread(new ServerThread(socket)); in startServer()
176 class ServerThread implements Runnable { class in Support_HttpServer
180 ServerThread(Support_Socket s) { in ServerThread() method in Support_HttpServer.ServerThread
/external/grpc-grpc/test/cpp/end2end/
Dgrpclb_end2end_test.cc365 backend_servers_.emplace_back(ServerThread<BackendService>( in SetUp()
372 balancer_servers_.emplace_back(ServerThread<BalancerService>( in SetUp()
570 struct ServerThread { struct in grpc::testing::__anon8b08f2880111::GrpclbEnd2endTest
571 explicit ServerThread(const grpc::string& type, in ServerThread() function
582 std::bind(&ServerThread::Start, this, server_host, &mu, &cond))); in ServerThread()
625 std::vector<ServerThread<BackendService>> backend_servers_;
626 std::vector<ServerThread<BalancerService>> balancer_servers_;
952 backend_servers_.emplace_back(ServerThread<BackendService>( in TEST_F()
/external/python/cpython3/Misc/NEWS.d/
D3.6.6rc1.rst489 pydoc: the stop() method of the private ServerThread class now waits until
D3.7.0a1.rst1847 pydoc: the stop() method of the private ServerThread class now waits until
/external/python/cpython3/Lib/
Dpydoc.py2388 class ServerThread(threading.Thread): class
2427 thread = ServerThread(urlhandler, hostname, port)