Home
last modified time | relevance | path

Searched refs:max_threads (Results 1 – 9 of 9) sorted by relevance

/system/extras/memory_replay/
Dmain.cpp112 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()
DThreads.h28 Threads(Pointers* pointers, size_t max_threads);
38 size_t max_threads() { return max_threads_; } in max_threads() function
DThreads.cpp49 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/
Dfull_update_generator.cc139 size_t max_threads = diff_utils::GetMaxThreads(); in GenerateOperations() local
143 << max_threads << " threads"; in GenerateOperations()
184 max_threads); in GenerateOperations()
Dpayload_generation_config.h269 uint32_t max_threads = 0; member
Ddelta_diff_utils.cc678 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()
Dgenerate_delta_main.cc463 DEFINE_int64(max_threads,
767 payload_config.max_threads = FLAGS_max_threads; in Main()
/system/extras/memory_replay/tests/
DThreadsTest.cpp127 for (size_t i = 0; i <= threads.max_threads(); i++) { in TestTooManyThreads()
/system/update_engine/scripts/
Dbrillo_update_payload225 DEFINE_string max_threads "" \
768 --max_threads="${FLAGS_max_threads}" )