Searched refs:max_threads (Results 1 – 8 of 8) sorted by relevance
/aosp12/system/extras/memory_replay/ |
H A D | main.cpp | 73 static void ProcessDump(const AllocEntry* entries, size_t num_entries, size_t max_threads) { in ProcessDump() argument 79 Threads threads(&pointers, max_threads); in ProcessDump() 81 NativePrintf("Maximum threads available: %zu\n", threads.max_threads()); in ProcessDump() 174 size_t max_threads = kDefaultMaxThreads; in main() local 176 max_threads = atoi(argv[2]); in main() 185 ProcessDump(entries, num_entries, max_threads); in main()
|
H A D | Threads.h | 28 Threads(Pointers* pointers, size_t max_threads); 38 size_t max_threads() { return max_threads_; } in max_threads() function
|
H A D | Threads.cpp | 49 Threads::Threads(Pointers* pointers, size_t max_threads) in Threads() argument 50 : pointers_(pointers), max_threads_(max_threads) { in Threads()
|
/aosp12/system/extras/libfec/ |
H A D | fec_process.cpp | 66 size_t max_threads = fec_div_round_up(count, count_per_thread); in process() local 68 if ((size_t)threads > max_threads) { in process() 69 threads = (int)max_threads; in process()
|
/aosp12/system/update_engine/payload_generator/ |
H A D | full_update_generator.cc | 139 size_t max_threads = diff_utils::GetMaxThreads(); in GenerateOperations() local 143 << max_threads << " threads"; in GenerateOperations() 184 max_threads); in GenerateOperations()
|
H A D | delta_diff_utils.cc | 398 size_t max_threads = GetMaxThreads(); in DeltaReadPartition() local 402 if (file_delta_processors.size() > max_threads) { in DeltaReadPartition() 407 max_threads); in DeltaReadPartition()
|
/aosp12/frameworks/native/libs/binder/tests/ |
H A D | binderDriverInterfaceTest.cpp | 37 uint32_t max_threads = 0; in SetUp() local 43 ret = ioctl(m_binderFd, BINDER_SET_MAX_THREADS, &max_threads); in SetUp() 186 uint32_t max_threads = 0; in TEST_F() local 187 binderTestIoctl(BINDER_SET_MAX_THREADS, &max_threads); in TEST_F()
|
/aosp12/system/extras/memory_replay/tests/ |
H A D | ThreadsTest.cpp | 127 for (size_t i = 0; i <= threads.max_threads(); i++) { in TestTooManyThreads()
|