Searched refs:files (Results 1 - 11 of 11) sorted by path

/system/core/charger/
H A DAndroid.mk42 $(foreach _img, $(call find-subdir-subdir-files, "images", "*.png"), \
/system/core/fastboot/
H A Dfastboot.c302 " -S <size>[K|M|G] automatically sparse files greater than\n"
494 int files; local
507 files = sparse_file_resparse(s, max_size, NULL, 0);
508 if (files < 0) {
512 out_s = calloc(sizeof(struct sparse_file *), files + 1);
517 files = sparse_file_resparse(s, max_size, out_s, files);
518 if (files < 0) {
/system/core/init/
H A DAndroid.mk60 # We need this so that the installed files could be picked up based on the
/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/rootdir/
H A DAndroid.mk4 # files that live under /system/etc/...
40 # files that live under /...
/system/core/sdcard/
H A Dfuse.h109 __u64 files; member in struct:fuse_kstatfs
H A Dsdcard.c41 * directory permissions (all files are given fixed owner, group, and
298 /* all files owned by root.sdcard */
902 out.st.files = stat.f_files;
/system/core/toolbox/
H A DAndroid.mk132 # We need this so that the installed files could be picked up based on the
H A Dls.c339 strlist_t files = STRLIST_INITIALIZER; local
355 strlist_append_dup(&files, de->d_name);
358 strlist_sort(&files);
359 STRLIST_FOREACH(&files, filename, listfile(name, filename, flags));
360 strlist_done(&files);
449 strlist_t files = STRLIST_INITIALIZER; local
473 strlist_append_dup(&files, argv[i]);
477 if (files.count > 0) {
478 STRLIST_FOREACH(&files, path, {
483 strlist_done(&files);
[all...]
/system/extras/bugmailer/
H A DAndroid.mk8 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/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);

Completed in 826 milliseconds