HomeSort by relevance Sort by last modified time
    Searched refs:compfn (Results 1 - 5 of 5) sorted by null

  /system/extras/procmem/
procmem.c 70 int (*compfn)(const void *a, const void *b);
84 compfn = NULL;
89 if (!strcmp(argv[i], "-m")) { compfn = NULL; continue; }
90 if (!strcmp(argv[i], "-p")) { compfn = &comp_pss; continue; }
234 /* sort the array, if requested (compfn == NULL for original order) */
235 if (compfn)
236 qsort(mis, num_maps, sizeof(mis[0]), compfn);
  /system/extras/librank/
librank.c 202 int (*compfn)(const void *a, const void *b);
228 compfn = &sort_by_pss;
284 compfn = &sort_by_pss;
291 compfn = &sort_by_uss;
294 compfn = &sort_by_vss;
297 compfn = &sort_by_rss;
300 compfn = &sort_by_swap;
401 qsort(li->mappings, li->mappings_count, sizeof(li->mappings[0]), compfn);
478 #define create_sort(field, compfn) \
480 return order * compfn( \
    [all...]
  /system/extras/procrank/
procrank.cpp 57 int (*compfn)(const void *a, const void *b); variable
215 compfn = &sort_by_pss;
221 if (!strcmp(argv[arg], "-v")) { compfn = &sort_by_vss; continue; }
222 if (!strcmp(argv[arg], "-r")) { compfn = &sort_by_rss; continue; }
223 if (!strcmp(argv[arg], "-p")) { compfn = &sort_by_pss; continue; }
224 if (!strcmp(argv[arg], "-u")) { compfn = &sort_by_uss; continue; }
225 if (!strcmp(argv[arg], "-s")) { compfn = &sort_by_swap; continue; }
226 if (!strcmp(argv[arg], "-o")) { compfn = &sort_by_oomadj; oomadj = true; continue; }
302 qsort(procs.data(), procs.size(), sizeof(procs[0]), compfn);
593 #define create_sort(field, compfn) \
    [all...]
  /prebuilts/go/darwin-x86/src/html/
entity.go     [all...]
  /prebuilts/go/linux-x86/src/html/
entity.go     [all...]

Completed in 787 milliseconds