/external/squashfs-tools/squashfs-tools/ |
read_fs.c | 130 int byte, files = 0; local 225 for(cur_ptr = *inode_table; cur_ptr < *inode_table + bytes; files ++) { 485 printf("Read existing filesystem, %d inodes scanned\n", files);
|
/external/zopfli/src/zopflipng/ |
zopflipng_bin.cc | 65 " zopflipng [options]... --prefix=[fileprefix] [files.png]...\n" 74 " contain a directory path. When using a prefix, multiple input files" 81 "-y: do not ask about overwriting files.\n" 86 "-d: dry run: don't save any files, just see the console output" 95 " small files, 5 for large files.\n" 121 "Optimize multiple files: zopflipng --prefix a.png b.png c.png\n" 146 bool yes = false; // do not ask to overwrite files 153 std::vector<std::string> files; local 242 files.push_back(argv[i]) [all...] |
/frameworks/base/core/java/com/android/server/backup/ |
SystemBackupAgent.java | 75 String[] files = new String[] { WALLPAPER_IMAGE, WALLPAPER_INFO }; local 84 files = new String[] { WALLPAPER_INFO }; 91 addHelper(WALLPAPER_HELPER, new WallpaperBackupHelper(this, files, keys)); 106 // Back up the data files directly. We do them in this specific order -- 109 // files are restored piecemeal. 161 // Various domain+files we understand a priori
|
/frameworks/base/core/tests/coretests/src/android/os/ |
MemoryFileTest.java | 41 * Keep allocating new files till the system purges them. 46 List<MemoryFile> files = new ArrayList<MemoryFile>(); local 54 files.add(newFile); 55 for (MemoryFile file : files) { 65 for (MemoryFile fileToClose : files) { 248 // open enough memory files that we should run out of [all...] |
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/ |
DefaultContainerService.java | 62 * Service that offers to inspect and copy files that may reside on removable 64 * open files that cause the kernel to kill it when the underlying device is 298 String[] files = path.list(); local 299 if (files != null) { 300 for (String file : files) {
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
PackageManagerSettingsTests.java | 154 File[] files = folder.listFiles(); local 155 if (files != null) { 156 for (File file : files) { 244 /* write out files and read */ 256 /* write out files and read */ 269 // Write the package files and make sure they're parsed properly the first time 288 // Write the package files and make sure they're parsed properly the first time 295 // Create Settings again to make it read from the new files 305 // Write the package files and make sure they're parsed properly the first time
|
/frameworks/base/test-runner/src/android/test/ |
ClassPathPackageInfoSource.java | 122 // scan the directories that contain apk files. 141 File[] files = source.listFiles(); local 142 if (files != null) { 143 for (File file : files) { 260 // the directory that the class is in. Used to quickly skip jar files 266 // JAR files that contains subpackages of a given package, even if
|
/frameworks/native/cmds/installd/ |
installd.h | 136 cache_file_t** files; member in struct:__anon22897
|
/libcore/luni/src/main/java/java/util/jar/ |
StrictJarFile.java | 62 // Read the MANIFEST and signature files up front and try to 68 Set<String> files = this.manifest.getEntries().keySet(); local 69 for (String file : files) {
|
/libcore/luni/src/main/java/java/util/logging/ |
FileHandler.java | 33 * rotating set of files. 35 * When a set of files is used and a given amount of data has been written to 37 * these files are generated by given name pattern, see below for details. 38 * When the files have all been filled the Handler returns to the first and goes 51 * {@code FileHandler} should append onto existing files, defaults to 53 * <li>java.util.logging.FileHandler.count specifies how many output files to 66 * output files. See below for details. Defaults to "%h/java%u.log".</li> 70 * be replaced to generate output files: 110 // the count of files which the output cycle through 130 private File[] files; field in class:FileHandler [all...] |
/libcore/luni/src/main/java/libcore/io/ |
IoUtils.java | 127 File[] files = dir.listFiles(); local 128 if (files != null) { 129 for (File file : files) { 185 * For the case where we know the "true" length of a file (most ordinary files)
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldFileTest.java | 35 // Delete all old temporary files 37 String[] files = tempDir.list(); typedefs 38 for (int i = 0; i < files.length; i++) { 39 File f = new File(tempDir, files[i]); 41 if (files[i].startsWith("hyts_resources")) 44 if (files[i].startsWith("hyts_") || files[i].startsWith("hyjar_")) 45 new File(tempDir, files[i]).delete(); 50 String files[] = dir.list(); local 51 for (int i = 0; i < files.length; i++) [all...] |
/ndk/tests/abcc/src/compiler/abcc/ |
AbccService.java | 176 String[] files = null; local 178 files = assetManager.list(asset_dir); 182 for(String filename : files) {
|
/packages/apps/Browser/src/com/android/browser/homepages/ |
RequestHandler.java | 160 final File[] files = f.listFiles();
local 161 Arrays.sort(files, sFileComparator);
165 t.assignLoop("files", new ListEntityIterator() {
170 File f = files[index];
210 return (++index) < files.length;
|
/packages/apps/Email/provider_src/com/android/email/provider/ |
AttachmentProvider.java | 81 * on startup we'll clean up any .tmp files from the last run. 84 final File[] files = getContext().getCacheDir().listFiles(); local 85 if (files != null) { 86 for (File file : files) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/ |
GalleryWidgetMigrator.java | 133 File[] files = root.listFiles(); local 134 if (files != null) { 135 for (File file : files) {
|
/packages/experimental/BugReportSender/src/com/android/bugreportsender/ |
BugReportListActivity.java | 154 File[] files = REPORT_DIR.listFiles(); local 155 if (files == null) return; 158 Arrays.sort(files, Collections.reverseOrder()); 159 for (int i = 0; i < files.length; i++) { 160 String name = files[i].getName(); 163 Log.w(TAG, "Ignoring non-bugreport: " + files[i]); 169 mFiles.add(files[i]);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
PhotoStore.java | 37 * Photo storage system that stores the files directly onto the hard disk 61 /** The database to use for storing metadata for the photo files. */ 85 * Clears the photo storage. Deletes all files from disk. 88 File[] files = mStorePath.listFiles(); local 89 if (files != null) { 90 for (File file : files) { 115 * Initializes the PhotoStore by scanning for all files currently in the 119 File[] files = mStorePath.listFiles(); local 120 if (files == null) { 123 for (File file : files) { [all...] |
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
StorageUtils.java | 129 // Try removing old files on cache partition 142 * Free requested space on cache partition, deleting oldest files first. 148 final List<ConcreteFile> files = listFilesRecursive( local 152 Slog.d(TAG, "Found " + files.size() + " downloads on cache"); 154 Collections.sort(files, new Comparator<ConcreteFile>() { 162 for (ConcreteFile file : files) { 199 * Return list of all normal files under the given directory, traversing 203 * @param uid only return files owned by this UID, or {@code -1} to ignore. 206 final ArrayList<ConcreteFile> files = Lists.newArrayList(); local 223 files.add(file) [all...] |
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
wagon-file-2.6.jar | |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/ |
Standard_Suite.py | 284 class files(aetools.ComponentItem): class in inherits:aetools.ComponentItem 285 """files - Every file """ 288 file = files 365 files._superclassnames = [] 366 files._privpropdict = { 368 files._privelemdict = { 383 'file' : files,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
Disk_Folder_File_Suite.py | 1 """Suite Disk-Folder-File Suite: Terms and Events for controlling Disks, Folders, and Files 211 files = file variable
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
ProjectClassLoader.java | 215 File[] files = parent.listFiles(); local 221 if (files != null) { 222 for (File file : files) { 235 if (files != null) { 236 for (File file : files) { 291 * Returns an array of external jar files used by the project.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateManager.java | 32 import com.google.common.io.Files; 156 File[] files = new File(root, folder).listFiles(); local 157 if (files != null) { 158 for (File file : files) { 169 File[] files = new File(extra, folder).listFiles(); local 170 if (files != null) { 171 for (File file : files) { 206 * Compare two files, and return the one with the HIGHEST revision, and if 243 String xml = Files.toString(templateFile, Charsets.UTF_8);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/layoutRendering/ |
ApiDemosRenderingTest.java | 186 File[] files = samples.listFiles(); local 187 for (File file : files) {
|