Searched defs:num_threads (Results 1 - 3 of 3) sorted by relevance

/system/extras/tests/memtest/
H A Dbandwidth.cpp56 { "num_threads", true },
257 bool runThreadedTest(thread_arg_t args[], int num_threads, int run_time) { argument
258 pthread_t threads[num_threads];
262 for (int i = 0; i < num_threads; i++) {
282 for (int i = 0; i < num_threads; i++) {
338 if (values.count("num_threads") == 0) {
339 printf("Must specify the num_threads value.\n");
342 int num_threads = values["num_threads"].int_value; local
344 thread_arg_t args[num_threads];
[all...]
/system/core/toolbox/
H A Dtop.c70 int num_threads; member in struct:proc_info
271 proc->num_threads = 0;
308 proc->num_threads++;
480 printf("%5d %2d %3ld%% %c %5d %6ldK %6ldK %3s %-8.8s %s\n", proc->pid, proc->prs, proc->delta_time * 100 / total_delta_time, proc->state, proc->num_threads,
553 return -numcmp(pa->num_threads, pb->num_threads);
/system/core/sdcard/
H A Dsdcard.c1707 static int ignite_fuse(struct fuse* fuse, int num_threads) argument
1712 handlers = malloc(num_threads * sizeof(struct fuse_handler));
1718 for (i = 0; i < num_threads; i++) {
1726 for (; i < num_threads; i++) {
1764 gid_t gid, gid_t write_gid, int num_threads, derive_t derive,
1811 res = ignite_fuse(&fuse, num_threads);
1829 int num_threads = DEFAULT_NUM_THREADS; local
1848 num_threads = strtoul(optarg, NULL, 10);
1893 if (num_threads < 1) {
1908 res = run(source_path, dest_path, uid, gid, write_gid, num_threads, deriv
1763 run(const char* source_path, const char* dest_path, uid_t uid, gid_t gid, gid_t write_gid, int num_threads, derive_t derive, bool split_perms) argument
[all...]

Completed in 121 milliseconds