Home
last modified time | relevance | path

Searched refs:directory (Results 1 – 18 of 18) sorted by relevance

/cts/hostsidetests/backup/includeexcludeapp/src/android/cts/backup/includeexcludeapp/
DIncludeExcludeTest.java115 private void setupFileTree(File directory) { in setupFileTree() argument
116 setupFilesInDirectory(directory); in setupFileTree()
118 setupFilesInDirectory(new File(directory, "include_folder")); in setupFileTree()
119 setupFilesInDirectory(new File(directory, "exclude_folder")); in setupFileTree()
122 private void setupFilesInDirectory(File directory) { in setupFilesInDirectory() argument
123 mIncludeFiles.add(new File(directory, "file_to_include")); in setupFilesInDirectory()
124 mExcludeFiles.add(new File(directory, "file_to_exclude")); in setupFilesInDirectory()
/cts/tests/tests/uirendering27/src/android/uirendering/cts/util/
DBitmapDumper.java45 File directory = new File(CAPTURE_SUB_DIRECTORY + className); in deleteFileInClassFolder() local
47 String[] children = directory.list(); in deleteFileInClassFolder()
53 new File(directory, file).delete(); in deleteFileInClassFolder()
/cts/hostsidetests/compilation/src/android/compilation/cts/
DAdbRootDependentCompilationTest.java59 private String directory; field in AdbRootDependentCompilationTest.ProfileLocation
61 ProfileLocation(String directory) { in ProfileLocation() argument
62 this.directory = directory; in ProfileLocation()
66 return directory; in getDirectory()
70 return directory + "/primary.prof"; in getPath()
/cts/tests/tests/resourcesloader/assets/
Dasset.txt1 In assets directory
/cts/hostsidetests/appsecurity/test-apps/AppDataIsolationTestApp/common/src/com/android/cts/appdataisolation/common/
DFileUtils.java100 File directory = new File(path); in assertFileDoesNotExist() local
101 assertTrue(directory.exists()); in assertFileDoesNotExist()
/cts/tests/tests/security/src/android/security/cts/
DPackageSignatureTest.java201 File directory = mContext.getExternalFilesDir(null); in writeSignature() local
203 Log.i(TAG, "Will dump " + numSignatures + " signatures to " + directory); in writeSignature()
207 File signatureFile = new File(directory, fileName + "." + i); in writeSignature()
/cts/helpers/default/
DOWNERS1 # Individual files are owned by the test module owners, so this directory
/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/
DREADME.txt1 This directory contains ContactsProvider2.apk related CTS tests.
/cts/hostsidetests/appsecurity/res/pkgsigverify/
DREADME.md5 APKs in this directory are used by `PkgInstallSignatureVerificationTest`.
33 Some of the APKs in this directory were generated by modifying the apksig library (see
/cts/hostsidetests/appsecurity/test-apps/SplitApp/
DREADME2 The entire libs/ directory is built and constructed automatically with
/cts/tests/tests/bionic_app/
DREADME.md7 This directory is just a place to test libc functions in an app context.
/cts/hostsidetests/jdwptunnel/
DAndroid.bp28 // Include the JDI classes in the testcases directory.
/cts/tests/accessibility/common/src/android/accessibility/cts/common/
DAccessibilityDumper.java124 private File getDumpRoot(String directory) { in getDumpRoot() argument
125 return new File(Environment.getExternalStorageDirectory(), directory); in getDumpRoot()
/cts/tests/tests/hardware/src/android/hardware/input/cts/tests/
DREADME.md8 Just print the /sys/kernel/debug/hid directory to see what it is for you.
/cts/hostsidetests/appsecurity/test-apps/ApkVerityTestAppPrebuilt/
DREADME.md31 to a temporary directory, e.g.
/cts/hostsidetests/sustainedperf/dhrystone/
DLICENSE.TXT49 have its own individual LICENSE.TXT file in the directory in which it appears.
/cts/hostsidetests/theme/
DREADME134 in the "diffs" directory of the CTS results indicated by "Test Result:" in the
/cts/tests/tests/permission/src/android/permission/cts/
DFileSystemPermissionTest.java625 private static boolean isDirectoryWritable(File directory) { in isDirectoryWritable() argument
626 File toCreate = new File(directory, "hello"); in isDirectoryWritable()