Home
last modified time | relevance | path

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

/system/extras/ext4_utils/
Dcanned_fs_config.c33 } Path; typedef
35 static Path* canned_data = NULL;
40 return strcmp(((Path*)a)->path, ((Path*)b)->path); in path_compare()
54 canned_data = (Path*) realloc(canned_data, canned_alloc * sizeof(Path)); in load_canned_fs_config()
56 Path* p = canned_data + canned_used; in load_canned_fs_config()
77 qsort(canned_data, canned_used, sizeof(Path), path_compare); in load_canned_fs_config()
85 Path key; in canned_fs_config()
87 Path* p = (Path*) bsearch(&key, canned_data, canned_used, sizeof(Path), path_compare); in canned_fs_config()