Searched refs:maxThreads (Results 1 – 8 of 8) sorted by relevance
/system/libhidl/transport/include/hidl/ |
D | LegacySupport.h | 67 const std::string& name, size_t maxThreads = 1) { 68 configureRpcThreadpool(maxThreads, true); 80 size_t maxThreads = 1) { 82 maxThreads); 113 const std::string& name, size_t maxThreads = 1) { 114 configureRpcThreadpool(maxThreads, true); 127 size_t maxThreads = 1) { 129 maxThreads);
|
D | HidlTransportSupport.h | 46 void configureRpcThreadpool(size_t maxThreads, bool callerWillJoin);
|
D | HidlBinderSupport.h | 225 void configureBinderRpcThreadpool(size_t maxThreads, bool callerWillJoin);
|
/system/libhwbinder/ |
D | ProcessState.cpp | 361 status_t ProcessState::setThreadPoolConfiguration(size_t maxThreads, bool callerJoinsPool) { in setThreadPoolConfiguration() argument 363 LOG_ALWAYS_FATAL_IF(maxThreads == 0 && callerJoinsPool, in setThreadPoolConfiguration() 366 size_t threadsToAllocate = maxThreads; in setThreadPoolConfiguration() 389 mMaxThreads = maxThreads; in setThreadPoolConfiguration() 419 size_t maxThreads = DEFAULT_MAX_BINDER_THREADS; in open_driver() local 420 result = ioctl(fd, BINDER_SET_MAX_THREADS, &maxThreads); in open_driver()
|
/system/libhidl/transport/ |
D | HidlTransportSupport.cpp | 31 void configureRpcThreadpool(size_t maxThreads, bool callerWillJoin) { in configureRpcThreadpool() argument 33 configureBinderRpcThreadpool(maxThreads, callerWillJoin); in configureRpcThreadpool()
|
D | HidlBinderSupport.cpp | 276 void configureBinderRpcThreadpool(size_t maxThreads, bool callerWillJoin) { in configureBinderRpcThreadpool() argument 278 maxThreads, callerWillJoin /*callerJoinsPool*/); in configureBinderRpcThreadpool()
|
/system/libhwbinder/include/hwbinder/ |
D | ProcessState.h | 68 status_t setThreadPoolConfiguration(size_t maxThreads, bool callerJoinsPool);
|
/system/tools/hidl/test/hidl_test/ |
D | hidl_test_client.cpp | 2564 void test_multithread(int maxThreads, int numThreads) { in test_multithread() argument 2566 << maxThreads << ", " << numThreads << ")"; in test_multithread() 2567 EXPECT_OK(multithreadInterface->setNumThreads(maxThreads, numThreads)); in test_multithread() 2579 EXPECT_EQ(noTimeout, maxThreads >= numThreads || mode == PASSTHROUGH); in test_multithread()
|