Searched refs:files (Results 251 - 258 of 258) sorted by relevance

<<11

/frameworks/base/libs/androidfw/
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
576 // very large files need a pax extended size header
679 // Now write the file data itself, for real files. We honor tar's convention that
699 // depends on the OS guarantee that for ordinary files, read() will never return
1500 char const* files[] = {
1523 err = back_up_files(-1, &dataStream, newSnapshotFD, files, keys, 1);
1549 char const* files[] = {
1576 err = back_up_files(-1, &dataStream, newSnapshotFD, files, key
332 back_up_files(int oldSnapshotFD, BackupDataWriter* dataStream, int newSnapshotFD, char const* const* files, char const* const* keys, int fileCount) argument
[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
424 * information about reading these files. Call stopMethodTracing() to stop
436 * information about reading trace files.
440 * If the files already exist, they will be truncated.
449 * buffer size. The trace files will be put under "/sdcard" unless an
452 * information about reading trace files.
455 * If the files already exist, they will be truncated.
466 * buffer size. The trace files wil
[all...]
/frameworks/base/data/fonts/
H A DAndroid.mk104 # Build the rest font files as prebuilt.
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java306 String[] files = path.list();
307 if (files != null) {
308 for (String file : files) {
830 // Check all the native files that need to be copied and add that to the
/frameworks/base/services/java/com/android/server/
H A DDropBoxManagerService.java84 // Accounting of all currently written log files (set in init()).
101 /** Receives events that might indicate a need to clean up files. */
593 File[] files = mDropBoxDir.listFiles();
594 if (files == null) throw new IOException("Can't list files: " + mDropBoxDir);
599 // Scan pre-existing files.
600 for (File file : files) {
627 // mFilesByTag is used for trimming, so don't list empty files.
628 // (Zero-length/lost files are trimmed by date from mAllFiles.)
685 * Trims the files o
[all...]
/frameworks/base/media/java/android/media/
H A DMediaScanner.java323 // old thumbnail files
347 // this should be set when scanning files on a case insensitive file system.
564 // we only extract metadata for audio and video files
745 // for feature parity with Donut, we force m4a files to keep the
955 // Directories need to be inserted before the files they contain, so they
1076 // accidentally deleting files that are really there (this may happen if the
1082 // Build the list of files from the content provider
1085 // First read existing files from the files table.
1086 // Because we'll be deleting entries for missing files a
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DUserManagerService.java162 // Make zeroth user directory, for services to migrate their files to that location
863 String[] files = parent.list();
864 for (String filename : files) {
H A DPackageManagerService.java269 /** The location for ASEC container files on internal storage. */
1131 // existing dexopt files to ensure we don't leave any
1133 String[] files = mDalvikCacheDir.list();
1134 if (files != null) {
1135 for (int i=0; i<files.length; i++) {
1136 String fn = files[i];
1231 //delete tmp files
1406 // Iterate over the files in the directory and scan .xml files
3143 String[] files
[all...]

Completed in 252 milliseconds

<<11