Home
last modified time | relevance | path

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

/external/f2fs-tools/tools/
Df2fstat.c57 struct mm_table { struct
65 dbg("[COMPARE] %s, %s\n", ((struct mm_table *)a)->name, ((struct mm_table *)b)->name); in compare_mm_table() argument
66 return strcmp(((struct mm_table *)a)->name, ((struct mm_table *)b)->name); in compare_mm_table()
84 struct mm_table key = { keyname, NULL }; in f2fstat()
85 struct mm_table *found; in f2fstat()
90 static struct mm_table f2fstat_table[] = { in f2fstat()
111 f2fstat_table_cnt = sizeof(f2fstat_table)/sizeof(struct mm_table); in f2fstat()
150 …found = bsearch(&key, f2fstat_table, f2fstat_table_cnt, sizeof(struct mm_table), compare_mm_table); in f2fstat()