Searched refs:files (Results 1 - 8 of 8) sorted by relevance
/system/core/libsparse/ |
H A D | simg2simg.c | 51 int files; local 73 files = sparse_file_resparse(s, max_size, NULL, 0); 74 if (files < 0) { 79 out_s = calloc(sizeof(struct sparse_file *), files); 85 files = sparse_file_resparse(s, max_size, out_s, files); 86 if (files < 0) { 91 for (i = 0; i < files; i++) {
|
/system/core/toolbox/ |
H A D | ls.c | 341 strlist_t files = STRLIST_INITIALIZER; local 357 strlist_append_dup(&files, de->d_name); 360 strlist_sort(&files); 361 STRLIST_FOREACH(&files, filename, listfile(name, filename, flags)); 362 strlist_done(&files); 450 strlist_t files = STRLIST_INITIALIZER; local 475 strlist_append_dup(&files, argv[i]); 479 if (files.count > 0) { 480 STRLIST_FOREACH(&files, path, { 485 strlist_done(&files); [all...] |
H A D | Android.mk | 262 # We need this so that the installed files could be picked up based on the
|
/system/core/init/ |
H A D | Android.mk | 68 # We need this so that the installed files could be picked up based on the
|
/system/extras/tests/sdcard/ |
H A D | sdcard_perf_test.cpp | 196 // Remove all the files under kTestDir and clear the caches. 353 // Setup the testcase by writting some dummy files. 620 // Create some files at this depth 644 // Count discovered files 645 int dirs = 0, files = 0; local 654 files++; 670 if (expectedFiles != files) { 671 fprintf(stderr, "expected %d files, but found %d\n", expectedFiles, files);
|
/system/core/healthd/ |
H A D | Android.mk | 69 $(foreach _img, $(call find-subdir-subdir-files, "images", "*.png"), \
|
/system/core/fastboot/ |
H A D | fastboot.c | 322 " -S <size>[K|M|G] automatically sparse files greater\n" 555 int files; local 563 files = sparse_file_resparse(s, max_size, NULL, 0); 564 if (files < 0) { 568 out_s = calloc(sizeof(struct sparse_file *), files + 1); 573 files = sparse_file_resparse(s, max_size, out_s, files); 574 if (files < 0) {
|
/system/core/sdcard/ |
H A D | sdcard.c | 51 * directory permissions (all files are given fixed owner, group, and 72 * - Apps can access their own files in /Android/data/com.example/ without 557 /* Always block security-sensitive files at root */ 1330 out.st.files = stat.f_files;
|
Completed in 267 milliseconds