Home
last modified time | relevance | path

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

/system/extras/memory_replay/
Dmain.cpp69 void ProcessDump(int fd, size_t max_allocs, size_t max_threads) { in ProcessDump() argument
72 Threads threads(&pointers, max_threads); in ProcessDump()
74 printf("Maximum threads available: %zu\n", threads.max_threads()); in ProcessDump()
169 size_t max_threads = DEFAULT_MAX_THREADS; in main() local
171 max_threads = atoi(argv[2]); in main()
186 ProcessDump(dump_fd, max_allocs, 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.cpp48 Threads::Threads(Pointers* pointers, size_t max_threads) in Threads() argument
49 : pointers_(pointers), max_threads_(max_threads) { in Threads()
/system/extras/libfec/
Dfec_process.cpp66 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()
/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()
Ddelta_diff_utils.cc500 size_t max_threads = GetMaxThreads(); in DeltaReadPartition() local
504 if (file_delta_processors.size() > max_threads) { in DeltaReadPartition()
509 max_threads); in DeltaReadPartition()
/system/extras/memory_replay/tests/
DThreadsTest.cpp116 for (size_t i = 0; i <= threads.max_threads(); i++) { in TestTooManyThreads()