Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
DRPCUtilsTest.cpp182 std::thread ServerThread([&]() { in TEST() local
218 ServerThread.join(); in TEST()
226 std::thread ServerThread([&]() { in TEST() local
263 ServerThread.join(); in TEST()
271 std::thread ServerThread([&]() { in TEST() local
308 ServerThread.join(); in TEST()
316 std::thread ServerThread([&]() { in TEST() local
354 ServerThread.join(); in TEST()
371 std::thread ServerThread([&]() { in TEST() local
405 ServerThread.join(); in TEST()
[all …]
DRemoteObjectLayerTest.cpp153 auto ServerThread = in TEST() local
162 ServerThread.join(); in TEST()
200 auto ServerThread = in TEST() local
216 ServerThread.join(); in TEST()
253 auto ServerThread = in TEST() local
265 ServerThread.join(); in TEST()
304 auto ServerThread = in TEST() local
321 ServerThread.join(); in TEST()
368 auto ServerThread = in TEST() local
403 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::__anondb2f344a0111::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/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::__anon707ef09f0111::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::__anonf0b0436a0111::GrpclbEnd2endTest
571 explicit ServerThread(const grpc::string& type, in ServerThread() argument
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.rst1848 pydoc: the stop() method of the private ServerThread class now waits until
/external/python/cpython3/Lib/
Dpydoc.py2280 class ServerThread(threading.Thread): class
2319 thread = ServerThread(urlhandler, hostname, port)