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

1234567891011

/frameworks/base/
H A DAndroid.mk34 LOCAL_SRC_FILES := $(call find-other-java-files,$(FRAMEWORKS_BASE_SUBDIRS))
36 # EventLogTags files.
52 ## When updating this list of aidl files, consider if that aidl is
55 ## not contain any aidl files for parcelables, but the one below should
263 # AIDL files to be preprocessed and included in the SDK,
375 $(call find-other-html-files, $(html_dirs)) \
381 $(call find-other-java-files, $(dirs_to_document)) \
386 $(call find-other-java-files, $(dirs_to_check_apis)) \
389 # This is used by ide.mk as the list of source files that are
716 $(call all-java-files
[all...]
/frameworks/base/cmds/am/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/cmds/bmgr/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/cmds/bu/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/cmds/content/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/cmds/ime/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/cmds/input/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/cmds/installd/
H A Dinstalld.h124 cache_file_t** files; member in struct:__anon951
H A Dutils.c437 ALOGI("Collected cache so far: %d directories, %d files",
486 cache_file_t** newFiles = (cache_file_t**)_cache_realloc(cache, cache->files,
493 cache->files = newFiles;
496 cache->numFiles, cache->files));
497 cache->files[cache->numFiles] = file;
574 // Skip files that start with '.'; they will be deleted if
657 CACHE_NOISY(ALOGI("Adding cache files from dir: %s\n", dirname));
699 // The directory contains hidden files so we need to delete
711 // This is a root directory, but it has hidden files. Get rid of
712 // all of those files, bu
[all...]
/frameworks/base/cmds/pm/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/cmds/requestsync/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/cmds/settings/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/cmds/svc/
H A DAndroid.mk6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/core/java/android/app/backup/
H A DAbsoluteFileBackupHelper.java26 * Like FileBackupHelper, but takes absolute paths for the files instead of
39 * Construct a helper for backing up / restoring the files at the given absolute locations
43 * @param files
45 public AbsoluteFileBackupHelper(Context context, String... files) { argument
49 mFiles = files;
53 * Based on oldState, determine which of the files from the application's data directory
H A DFileBackupHelper.java28 * files. Whenever backup is performed, all files changed since the last backup
36 * used only with small configuration files, not large binary files.
47 * Construct a helper to manage backup/restore of entire files within the
51 * @param files A list of the files to be backed up or restored.
53 public FileBackupHelper(Context context, String... files) { argument
58 mFiles = files;
62 * Based on <code>oldState</code>, determine which of the files fro
[all...]
H A DFileBackupHelperBase.java54 ParcelFileDescriptor newState, String[] files, String[] keys) {
55 if (files.length == 0) {
58 // files must be all absolute paths
59 for (String f: files) {
61 throw new RuntimeException("files must have all absolute paths: " + f);
64 // the length of files and keys must be the same
65 if (files.length != keys.length) {
66 throw new RuntimeException("files.length=" + files.length
76 int err = performBackup_native(oldStateFd, data.mBackupWriter, newStateFd, files, key
53 performBackup_checked(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState, String[] files, String[] keys) argument
121 performBackup_native(FileDescriptor oldState, int data, FileDescriptor newState, String[] files, String[] keys) argument
[all...]
H A DSharedPreferencesBackupHelper.java106 String[] files = new String[N];
108 files[i] = context.getSharedPrefsFile(prefGroups[i]).getAbsolutePath();
112 performBackup_checked(oldState, data, newState, files, prefGroups);
H A DWallpaperBackupHelper.java52 "/data/data/com.android.settings/files/wallpaper";
70 * Construct a helper for backing up / restoring the files at the given absolute locations
74 * @param files
76 public WallpaperBackupHelper(Context context, String[] files, String[] keys) { argument
80 mFiles = files;
103 * Based on oldState, determine which of the files from the application's data directory
/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/core/java/android/webkit/
H A DCacheManager.java249 // This isn't actually where the real cache lives, but where we put files for the
258 * Gets the base directory in which the files used to store the contents of
340 // TODO: The files in the cache directory can be removed by the
429 * Removes all cache files.
434 // delete cache files in a separate thread to not block UI.
437 // delete all cache files
439 String[] files = mBaseDir.list();
440 // if mBaseDir doesn't exist, files can be null.
441 if (files != null) {
442 for (int i = 0; i < files
[all...]
/frameworks/base/core/jni/
H A Dandroid_backup_FileBackupHelperBase.cpp42 jobject newState, jobjectArray files, jobjectArray keys)
51 const int fileCount = env->GetArrayLength(files);
54 filesUTF[i] = env->GetStringUTFChars((jstring)env->GetObjectArrayElement(files, i), NULL);
66 env->ReleaseStringUTFChars((jstring)env->GetObjectArrayElement(files, i), filesUTF[i]);
41 performBackup_native(JNIEnv* env, jobject clazz, jobject oldState, int data, jobject newState, jobjectArray files, jobjectArray keys) argument
/frameworks/base/core/tests/ConnectivityManagerTest/
H A DAndroid.mk23 # Include all test java files.
24 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/frameworks/base/core/tests/bandwidthtests/
H A DAndroid.mk21 # Include all test java files.
23 $(call all-java-files-under, src)
/frameworks/base/core/tests/bluetoothtests/
H A DAndroid.mk7 # Include all test java files.
9 $(call all-java-files-under, src)
/frameworks/base/core/tests/coretests/
H A DAndroid.mk17 # Include all test java files.
19 $(call all-java-files-under, src) \
20 $(call all-Iaidl-files-under, src) \
21 $(call all-java-files-under, DisabledTestApp/src) \
22 $(call all-java-files-under, EnabledTestApp/src)

Completed in 5258 milliseconds

1234567891011