Home
last modified time | relevance | path

Searched refs:EXTERNAL_DATA_FILE_NAME (Results 1 – 2 of 2) sorted by relevance

/cts/hostsidetests/appsecurity/test-apps/AppDataIsolationTestApp/AppA/src/com/android/cts/appdataisolation/appa/
DAppATests.java23 import static com.android.cts.appdataisolation.common.FileUtils.EXTERNAL_DATA_FILE_NAME;
143 assertFileDoesNotExist(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testCreateExternalDirs()
146 touchFile(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testCreateExternalDirs()
149 assertFileExists(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testCreateExternalDirs()
155 deleteFile(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testDeleteExternalDirs()
158 assertFileDoesNotExist(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testDeleteExternalDirs()
184 assertFileExists(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testAppAExternalDirsDoExist()
190 assertFileDoesNotExist(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testAppAExternalDirsDoNotExist()
/cts/hostsidetests/appsecurity/test-apps/AppDataIsolationTestApp/common/src/com/android/cts/appdataisolation/common/
DFileUtils.java46 public final static String EXTERNAL_DATA_FILE_NAME = "external_data_file"; field in FileUtils