Searched refs:files (Results 126 - 137 of 137) sorted by relevance

123456

/frameworks/base/services/java/com/android/server/
H A DThrottleService.java922 File[] files = dir.listFiles();
924 if (files.length <= MAX_SIMS_SUPPORTED) return;
925 if (DBG) Slog.d(TAG, "Too many data files");
928 for (File f : files) {
936 files = dir.listFiles();
937 } while (files.length > MAX_SIMS_SUPPORTED);
942 File[] files = dir.listFiles();
944 for (File f : files) {
H A DDropBoxManagerService.java83 // Accounting of all currently written log files (set in init()).
98 /** Receives events that might indicate a need to clean up files. */
544 File[] files = mDropBoxDir.listFiles();
545 if (files == null) throw new IOException("Can't list files: " + mDropBoxDir);
550 // Scan pre-existing files.
551 for (File file : files) {
578 // mFilesByTag is used for trimming, so don't list empty files.
579 // (Zero-length/lost files are trimmed by date from mAllFiles.)
635 * Trims the files o
[all...]
H A DPackageManagerService.java891 // existing dexopt files to ensure we don't leave any
893 String[] files = mDalvikCacheDir.list();
894 if (files != null) {
895 for (int i=0; i<files.length; i++) {
896 String fn = files[i];
958 //delete tmp files
1059 // Iterate over the files in the directory and scan .xml files
2470 String[] files = dir.list();
2473 for (i=0; i<files
[all...]
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java171 String[] files = path.list();
172 if (files != null) {
173 for (String file : files) {
384 // For dex files. Just ignore and fail when extracting. Max limit of 2Gig for now.
448 // For dex files. Just ignore and fail when extracting. Max limit of 2Gig for now.
/frameworks/base/core/java/android/webkit/
H A DCacheManager.java340 // the files in the cache directory can be removed by the
500 * remove all cache files
516 // delete cache files in a separate thread to not block UI.
519 // delete all cache files
521 String[] files = mBaseDir.list();
522 // if mBaseDir doesn't exist, files can be null.
523 if (files != null) {
524 for (int i = 0; i < files.length; i++) {
525 File f = new File(mBaseDir, files[i]);
557 // remove the unreferenced files i
[all...]
/frameworks/base/libs/rs/
H A DAndroid.mk53 # Generate custom source files
/frameworks/base/tests/DumpRenderTree/assets/
H A Drun_layout_tests.py67 """ Given two result files, generate diff and
69 to files.
130 files=["crashed", "failed", "passed", "nontext"]
131 for f in files:
143 args: a list of sub directories or files to test
/frameworks/base/
H A DAndroid.mk34 LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS))
36 # EventLogTags files.
50 # Include a different set of source files when building a debug build.
57 LOCAL_SRC_FILES += $(call find-other-java-files,core/config/debug)
59 LOCAL_SRC_FILES += $(call find-other-java-files,core/config/ndebug)
64 ## When updating this list of aidl files, consider if that aidl is
67 ## not contain any aidl files for parcelables, but the one below should
221 # AIDL files to be preprocessed and included in the SDK,
345 $(call find-other-java-files, $(dirs_to_document)) \
346 $(call find-other-html-files,
[all...]
/frameworks/base/libs/utils/
H A DBackupHelpers.cpp333 char const* const* files, char const* const* keys, int fileCount)
350 char const* file = files[i];
397 // both files exist, check them
1223 char const* files[] = {
1246 err = back_up_files(-1, &dataStream, newSnapshotFD, files, keys, 1);
1272 char const* files[] = {
1299 err = back_up_files(-1, &dataStream, newSnapshotFD, files, keys, 1);
332 back_up_files(int oldSnapshotFD, BackupDataWriter* dataStream, int newSnapshotFD, char const* const* files, char const* const* keys, int fileCount) argument
/frameworks/base/media/java/android/media/
H A DMediaScanner.java310 // old thumbnail files
332 // this should be set when scanning files on a case insensitive file system.
413 // ignore those ._* files created by MacOS
418 // ignore album art files created by Windows Media Player:
605 // for feature parity with Donut, we force m4a files to keep the
874 // this case, since it would cause those files to be removed if a .nomedia
904 // Build the list of files from the content provider
906 // Read existing files from the audio table
938 // Read existing files from the video table
971 // Read existing files fro
[all...]
/frameworks/base/core/java/android/os/
H A DDebug.java51 * <p>Debug can create log files that give details about an application, such as
54 * information about reading trace files. To start logging trace files, call one
384 * information about reading these files. Call stopMethodTracing() to stop
396 * information about reading trace files.
400 * If the files already exist, they will be truncated.
409 * buffer size. The trace files will be put under "/sdcard" unless an
412 * information about reading trace files.
415 * If the files already exist, they will be truncated.
426 * buffer size. The trace files wil
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp4 // Build resource files from raw assets.
178 fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n",
330 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files local
333 if (files.size() == 0) {
337 String8 resType = files.valueAt(0)->getResourceType();
352 int M = files.size();
354 existingGroup->addFile(files.valueAt(j));
507 // Replace any base level files in this category with any found from the overlay
808 // now go through any resource overlays and collect their files
817 // apply the overlay files t
2074 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files = group->getFiles(); local
[all...]

Completed in 1116 milliseconds

123456