Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 733) sorted by relevance

12345678910>>...30

/frameworks/support/v4/
DAndroid.mk21 LOCAL_SRC_FILES := $(call all-java-files-under, donut)
31 LOCAL_SRC_FILES := $(call all-java-files-under, eclair)
41 LOCAL_SRC_FILES := $(call all-java-files-under, eclair-mr1)
51 LOCAL_SRC_FILES := $(call all-java-files-under, froyo)
61 LOCAL_SRC_FILES := $(call all-java-files-under, gingerbread)
71 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb)
81 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr1)
91 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr2)
101 LOCAL_SRC_FILES := $(call all-java-files-under, ics)
111 LOCAL_SRC_FILES := $(call all-java-files-under, ics-mr1)
[all …]
/frameworks/base/core/tests/coretests/apks/keyset/
DAndroid.mk5 LOCAL_SRC_FILES := $(call all-subdir-java-files)
12 LOCAL_SRC_FILES := $(call all-subdir-java-files)
19 LOCAL_SRC_FILES := $(call all-subdir-java-files)
26 LOCAL_SRC_FILES := $(call all-subdir-java-files)
33 LOCAL_SRC_FILES := $(call all-subdir-java-files)
40 LOCAL_SRC_FILES := $(call all-subdir-java-files)
47 LOCAL_SRC_FILES := $(call all-subdir-java-files)
55 LOCAL_SRC_FILES := $(call all-subdir-java-files)
62 LOCAL_SRC_FILES := $(call all-subdir-java-files)
69 LOCAL_SRC_FILES := $(call all-subdir-java-files)
[all …]
/frameworks/base/tests/backup/
Dtest_restore.sh52 echo --- Previous files
58 echo --- Erased files and shared_prefs
82 check_file files/file.txt "first file" || need_bug=1
83 check_file files/another_file.txt "asdf" || need_bug=1
85 check_file files/empty.txt "" || need_bug=1
89 check_exists files/file_doesnt_exist.txt && need_bug=1
90 check_exists files/no_files_here.txt && need_bug=1
100 echo --- Restored files
108 a shell cat /data/data/com.android.backuptest/files/3.txt | tail -n 3
/frameworks/base/services/usage/java/com/android/server/usage/
DUsageStatsDatabase.java80 for (TimeSparseArray<AtomicFile> files : mSortedStatFiles) { in init()
81 final int startIndex = files.closestIndexOnOrAfter(currentTimeMillis); in init()
86 final int fileCount = files.size(); in init()
88 files.valueAt(i).delete(); in init()
94 files.removeAt(i); in init()
115 final TimeSparseArray<AtomicFile> files = in checkinDailyFiles() local
117 final int fileCount = files.size(); in checkinDailyFiles()
123 if (files.valueAt(i).getBaseFile().getPath().endsWith(CHECKED_IN_SUFFIX)) { in checkinDailyFiles()
136 UsageStatsXml.read(files.valueAt(i), stats); in checkinDailyFiles()
149 final AtomicFile file = files.valueAt(i); in checkinDailyFiles()
[all …]
/frameworks/base/core/java/android/app/backup/
DFileBackupHelper.java53 public FileBackupHelper(Context context, String... files) { in FileBackupHelper() argument
58 mFiles = files; in FileBackupHelper()
76 String[] files = mFiles; in performBackup() local
78 final int N = files.length; in performBackup()
81 fullPaths[i] = (new File(base, files[i])).getAbsolutePath(); in performBackup()
85 performBackup_checked(oldState, data, newState, fullPaths, files); in performBackup()
DFileBackupHelperBase.java54 ParcelFileDescriptor newState, String[] files, String[] keys) { in performBackup_checked() argument
55 if (files.length == 0) { in performBackup_checked()
59 for (String f: files) { in performBackup_checked()
65 if (files.length != keys.length) { in performBackup_checked()
66 throw new RuntimeException("files.length=" + files.length in performBackup_checked()
76 int err = performBackup_native(oldStateFd, data.mBackupWriter, newStateFd, files, keys); in performBackup_checked()
122 long data, FileDescriptor newState, String[] files, String[] keys); in performBackup_native() argument
/frameworks/multidex/library/src/android/support/multidex/
DMultiDex.java159 List<File> files = MultiDexExtractor.load(context, applicationInfo, dexDir, false); in install() local
160 if (checkValidZipFiles(files)) { in install()
161 installSecondaryDexes(loader, dexDir, files); in install()
165 files = MultiDexExtractor.load(context, applicationInfo, dexDir, true); in install()
167 if (checkValidZipFiles(files)) { in install()
168 installSecondaryDexes(loader, dexDir, files); in install()
237 private static void installSecondaryDexes(ClassLoader loader, File dexDir, List<File> files) in installSecondaryDexes() argument
240 if (!files.isEmpty()) { in installSecondaryDexes()
242 V19.install(loader, files, dexDir); in installSecondaryDexes()
244 V14.install(loader, files, dexDir); in installSecondaryDexes()
[all …]
DMultiDexExtractor.java89 List<File> files; in load() local
92 files = loadExistingExtractions(context, sourceApk, dexDir); in load()
96 files = performExtractions(sourceApk, dexDir); in load()
97 putStoredApkInfo(context, getTimeStamp(sourceApk), currentCrc, files.size() + 1); in load()
102 files = performExtractions(sourceApk, dexDir); in load()
103 putStoredApkInfo(context, getTimeStamp(sourceApk), currentCrc, files.size() + 1); in load()
106 Log.i(TAG, "load found " + files.size() + " secondary dex files"); in load()
107 return files; in load()
116 final List<File> files = new ArrayList<File>(totalDexNumber); in loadExistingExtractions() local
122 files.add(extractedFile); in loadExistingExtractions()
[all …]
/frameworks/opt/photoviewer/
DAndroid.mk32 $(call all-java-files-under, src) \
33 $(call all-java-files-under, appcompat/src) \
34 $(call all-logtags-files-under, src)
53 $(call all-java-files-under, src) \
54 $(call all-java-files-under, activity/src) \
55 $(call all-logtags-files-under, src)
/frameworks/base/core/tests/coretests/apks/version/
DAndroid.mk4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
11 LOCAL_SRC_FILES := $(call all-subdir-java-files)
18 LOCAL_SRC_FILES := $(call all-subdir-java-files)
25 LOCAL_SRC_FILES := $(call all-subdir-java-files)
32 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/frameworks/base/services/core/java/com/android/server/am/
DProcessStatsService.java350 File[] files = mBaseDir.listFiles(); in getCommittedFiles() local
351 if (files == null || files.length <= minNum) { in getCommittedFiles()
354 ArrayList<String> filesArray = new ArrayList<String>(files.length); in getCommittedFiles()
356 if (DEBUG) Slog.d(TAG, "Collecting " + files.length + " files except: " + currentFile); in getCommittedFiles()
357 for (int i=0; i<files.length; i++) { in getCommittedFiles()
358 File file = files[i]; in getCommittedFiles()
457 ArrayList<String> files = getCommittedFiles(0, false, true);
458 if (files != null) {
459 for (int i=files.size()-1; i>=0; i--) {
462 new File(files.get(i)), ParcelFileDescriptor.MODE_READ_ONLY);
[all …]
/frameworks/support/v7/cardview/
DAndroid.mk24 LOCAL_SRC_FILES := $(call all-java-files-under, dummy)
34 LOCAL_SRC_FILES := $(call all-java-files-under, base)
41 LOCAL_SRC_FILES := $(call all-java-files-under, eclair-mr1)
50 LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr1)
59 LOCAL_SRC_FILES := $(call all-java-files-under, api21)
72 LOCAL_SRC_FILES := $(call all-java-files-under,src)
/frameworks/base/docs/html/sdk/installing/
Dstudio-androidview.jd7 that provides quick access to the key source files of Android projects and helps you work with
12 <li>Groups the build files for all modules at the top level of the project hierarchy.</li>
14 <li>Groups all the manifest files for each module.</li>
15 <li>Shows resource files from all Gradle source sets.</li>
16 <li>Groups resource files for different locales, orientations, and screen types in a single group
34 <p>The Android project view shows all the build files at the top level of the project hierarchy
39 <li><code>java/</code> - Source files for the module.</li>
40 <li><code>manifests/</code> - Manifest files for the module.</li>
41 <li><code>res/</code> - Resource files for the module.</li>
49 used files while developing Android applications. However, the project structure on disk differs
/frameworks/base/docs/html/training/basics/data-storage/
Dfiles.jd36 how to work with the Android file system to read and write files with the {@link java.io.File}
40 start-to-finish order without skipping around. For example, it's good for image files or
63 <li>When the user uninstalls your app, the system removes all your app's files from
67 access your files.</p>
76 files saved here may be read outside of your control.</li>
77 <li>When the user uninstalls your app, the system removes your app's files from here
82 place for files that don't require access restrictions and for files that you want to share
127 <p>You don’t need any permissions to save files on the internal
129 write files in its internal storage directory.</p>
145 cache files. Be sure to delete each file once it is no
[all …]
/frameworks/base/docs/html/google/play/
Dexpansion-files.jd2 page.metaDescription=If your app needs more than the 50MB APK max, use free APK expansion files fro…
13 <li>Google Play hosts and serves the expansion files at no charge</li>
14 <li>The files can be any file type you want and are saved to the device's shared storage</li>
68 However, some apps need more space for high-fidelity graphics, media files, or other large assets.
70 yourself when the user opens the app. Hosting and serving the extra files can be costly, and the
72 for users, Google Play allows you to attach two large expansion files that supplement your
75 <p>Google Play hosts the expansion files for your application and serves them to the device at
76 no cost to you. The expansion files are saved to the device's shared storage location (the
80 first time. In some cases, however, your application must download the files from Google Play
88 add one or two expansion files to the APK. Each file can be up to 2GB and it can be any format you
[all …]
/frameworks/support/v7/mediarouter/
DAndroid.mk24 LOCAL_SRC_FILES := $(call all-java-files-under, dummy)
37 LOCAL_SRC_FILES := $(call all-java-files-under, jellybean)
44 LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr1)
52 LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr2)
63 LOCAL_SRC_FILES := $(call all-java-files-under,src)
/frameworks/base/docs/html/google/play-services/
Ddrive.jd2 page.tags="storage","files","cloud"
18 Give your users access to their files, wherever they are, on any device.
20 store and sync user’s files between their mobile devices and the cloud.
47 edit, and open files, then syncs them automatically when the device
51 <a href="http://developers.google.com/drive/android/files" class=
60 Building your own user interface for selecting or creating files is a
62 of the most common user activities: opening files and creating
63 files.<br>
69 Easily search for files
75 allows you to easily display only relevant files, such as files
[all …]
/frameworks/support/v4/java/android/support/v4/provider/
DRawDocumentFile.java125 final File[] files = mFile.listFiles(); in listFiles() local
126 if (files != null) { in listFiles()
127 for (File file : files) { in listFiles()
159 File[] files = dir.listFiles(); in deleteContents() local
161 if (files != null) { in deleteContents()
162 for (File file : files) { in deleteContents()
/frameworks/support/v17/leanback/
DAndroid.mk24 LOCAL_SRC_FILES := $(call all-java-files-under, dummy)
38 LOCAL_SRC_FILES := $(call all-java-files-under, common)
47 LOCAL_SRC_FILES := $(call all-java-files-under, api21)
57 LOCAL_SRC_FILES := $(call all-java-files-under, kitkat)
67 LOCAL_SRC_FILES := $(call all-java-files-under, jbmr2)
80 LOCAL_SRC_FILES := $(call all-java-files-under, src)
93 $(call all-java-files-under, src) \
94 $(call all-html-files-under, src)
/frameworks/opt/net/ethernet/
DAndroid.mk23 LOCAL_SRC_FILES := $(call all-java-files-under, java) \
24 $(call all-Iaidl-files-under, java) \
25 $(call all-logtags-files-under, java)
/frameworks/base/core/tests/coretests/
DAndroid.mk19 $(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)
/frameworks/opt/photoviewer/sample/
DAndroid.mk32 LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) \
33 $(call all-logtags-files-under, $(src_dirs))
56 LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) \
57 $(call all-logtags-files-under, $(src_dirs))
/frameworks/opt/net/voip/
DAndroid.mk20 LOCAL_SRC_FILES := $(call all-java-files-under, src/java) \
21 $(call all-Iaidl-files-under, src/java) \
22 $(call all-logtags-files-under, src/java)
/frameworks/base/docs/html/training/secure-file-sharing/
Dsetup-sharing.jd19 <li><a href="{@docRoot}training/basics/data-storage/files.html">Saving Files</a>
29 files, based on specifications you provide in XML. This lesson shows you how to add the default
31 specify the files you want to offer to other apps.
97 you need to specify the directories that contain the files you want to share. To specify the
102 of the <code>files/</code> directory in your internal storage area:
106 &lt;files-path path="images/" name="myimages" /&gt;
109 In this example, the <code>&lt;files-path&gt;</code> tag shares directories within the
110 <code>files/</code> directory of your app's internal storage. The <code>path</code> attribute
111 shares the <code>images/</code> subdirectory of <code>files/</code>. The <code>name</code>
113 <code>myimages</code> to content URIs for files in the <code>files/images/</code> subdirectory.
[all …]
/frameworks/opt/telephony/
DAndroid.mk23 LOCAL_SRC_FILES := $(call all-java-files-under, src/java) \
24 $(call all-Iaidl-files-under, src/java) \
25 $(call all-logtags-files-under, src/java)

12345678910>>...30