Searched refs:max_threads (Results 1 – 9 of 9) sorted by relevance
/system/extras/memory_replay/ |
D | main.cpp | 112 static void ProcessDump(const AllocEntry* entries, size_t num_entries, size_t max_threads) { in ProcessDump() argument 118 Threads threads(&pointers, max_threads); in ProcessDump() 120 dprintf(STDOUT_FILENO, "Maximum threads available: %zu\n", threads.max_threads()); in ProcessDump() 221 size_t max_threads = kDefaultMaxThreads; in main() local 223 max_threads = atoi(argv[2]); in main() 232 ProcessDump(entries, num_entries, max_threads); in main()
|
D | Threads.h | 28 Threads(Pointers* pointers, size_t max_threads); 38 size_t max_threads() { return max_threads_; } in max_threads() function
|
D | Threads.cpp | 49 Threads::Threads(Pointers* pointers, size_t max_threads) in Threads() argument 50 : pointers_(pointers), max_threads_(max_threads) { in Threads()
|
/system/update_engine/payload_generator/ |
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()
|
D | payload_generation_config.h | 269 uint32_t max_threads = 0; member
|
D | delta_diff_utils.cc | 678 size_t max_threads = GetMaxThreads(); in DeltaReadPartition() local 680 if (config.max_threads > 0) { in DeltaReadPartition() 681 max_threads = config.max_threads; in DeltaReadPartition() 686 if (file_delta_processors.size() > max_threads) { in DeltaReadPartition() 691 max_threads); in DeltaReadPartition()
|
D | generate_delta_main.cc | 463 DEFINE_int64(max_threads, 767 payload_config.max_threads = FLAGS_max_threads; in Main()
|
/system/extras/memory_replay/tests/ |
D | ThreadsTest.cpp | 127 for (size_t i = 0; i <= threads.max_threads(); i++) { in TestTooManyThreads()
|
/system/update_engine/scripts/ |
D | brillo_update_payload | 225 DEFINE_string max_threads "" \ 768 --max_threads="${FLAGS_max_threads}" )
|