Searched defs:files (Results 1 - 11 of 11) sorted by last modified time

/frameworks/base/packages/InputDevices/
H A DAndroid.mk20 LOCAL_SRC_FILES := $(call all-subdir-java-files)
33 files := frameworks/base/packages/InputDevices/res/raw/*.kcm macro
39 validate_input_devices_keymaps: $(files)
40 $(hide) $(validatekeymaps) $(files)
/frameworks/base/tools/aapt/
H A DResource.cpp4 // Build resource files from raw assets.
202 fprintf(stderr, "warning: Multiple AndroidManifest.xml files found, using %s\n",
386 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files local
389 if (files.size() == 0) {
393 String8 resType = files.valueAt(0)->getResourceType();
414 for (size_t j=0; j<files.size(); j++) {
416 files.valueAt(j)->getSourceFile().string(),
417 files.keyAt(j).toDirName(String8()).string(),
419 status_t err = existingGroup->addFile(files.valueAt(j));
575 // Replace any base level files i
2545 const DefaultKeyedVector<AaptGroupEntry, sp<AaptFile> >& files = group->getFiles(); local
2609 writePathsToFile(const sp<FilePathStore>& files, FILE* fp) argument
[all...]
/frameworks/base/tools/aapt/tests/
H A DMockFileFinder.h18 MockFileFinder (KeyedVector<String8, KeyedVector<String8,time_t> >& files) argument
19 : mFiles(files)
49 // Virtual mapping between "directories" and the "files" contained
/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/data/keyboards/
H A DAndroid.mk15 # This makefile performs build time validation of framework keymap files.
25 files := \ macro
34 validate_framework_keymaps: $(files)
35 $(hide) $(validatekeymaps) $(files)
/frameworks/base/cmds/installd/
H A Dinstalld.h124 cache_file_t** files; member in struct:__anon951
/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 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/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

Completed in 1263 milliseconds