Searched defs:files (Results 1 - 5 of 5) sorted by relevance

/system/core/libsparse/
H A Dsimg2simg.c51 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 Dls.c340 strlist_t files = STRLIST_INITIALIZER; local
356 strlist_append_dup(&files, de->d_name);
359 strlist_sort(&files);
360 STRLIST_FOREACH(&files, filename, listfile(name, filename, flags));
361 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...]
/system/extras/tests/sdcard/
H A Dsdcard_perf_test.cpp196 // 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/fastboot/
H A Dfastboot.c325 " -S <size>[K|M|G] automatically sparse files greater than\n"
543 int files; local
551 files = sparse_file_resparse(s, max_size, NULL, 0);
552 if (files < 0) {
556 out_s = calloc(sizeof(struct sparse_file *), files + 1);
561 files = sparse_file_resparse(s, max_size, out_s, files);
562 if (files < 0) {
/system/core/sdcard/
H A Dfuse.h109 __u64 files; member in struct:fuse_kstatfs

Completed in 133 milliseconds