Home
last modified time | relevance | path

Searched refs:fileOutput (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/display/
DPersistentDataStore.java503 OutputStream fileOutput = null; in save() local
505 fileOutput = mInjector.startWrite(); in save()
506 os.writeTo(fileOutput); in save()
507 fileOutput.flush(); in save()
511 if (fileOutput != null) { in save()
512 mInjector.finishWrite(fileOutput, true); in save()
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DDownloadManagerTestApp.java128 FileOutputStream fileOutput = mContext.openFileOutput(DOWNLOAD_STARTED_FLAG, 0); in initiateDownload() local
146 outputFile = new DataOutputStream(fileOutput); in initiateDownload()
/frameworks/native/cmds/lshal/
DListCommand.cpp502 std::ofstream fileOutput(mFileOutputPath); in dump() local
503 if (!fileOutput.is_open()) { in dump()
509 (*this.*dump)(NullableOStream<std::ostream>(fileOutput)); in dump()
511 fileOutput.flush(); in dump()
512 fileOutput.close(); in dump()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/app/
DGameManagerServiceTests.java1765 List<String> fileOutput = readGameModeInterventionList(); in testVerifyInterventionList() local
1766 assertEquals(fileOutput.size(), 3); in testVerifyInterventionList()
1768 String[] splitLine = fileOutput.get(0).split("\\s+"); in testVerifyInterventionList()
1775 splitLine = fileOutput.get(1).split("\\s+"); in testVerifyInterventionList()
1782 splitLine = fileOutput.get(2).split("\\s+"); in testVerifyInterventionList()
1795 fileOutput = readGameModeInterventionList(); in testVerifyInterventionList()
1796 assertEquals(fileOutput.size(), 3); in testVerifyInterventionList()
1798 splitLine = fileOutput.get(0).split("\\s+"); in testVerifyInterventionList()
1805 splitLine = fileOutput.get(1).split("\\s+"); in testVerifyInterventionList()
1812 splitLine = fileOutput.get(2).split("\\s+"); in testVerifyInterventionList()