HomeSort by relevance Sort by last modified time
    Searched defs:fileStream (Results 1 - 25 of 47) sorted by null

1 2

  /cts/tests/tests/systemui/src/android/systemui/cts/
LightBarTestBase.java 46 FileOutputStream fileStream = null;
48 fileStream = new FileOutputStream(DUMP_PATH);
49 bitmap.compress(Bitmap.CompressFormat.PNG, 85, fileStream);
50 fileStream.flush();
54 if (fileStream != null) {
56 fileStream.close();
  /packages/apps/Calendar/src/com/android/calendar/
ExtensionsFactory.java 53 InputStream fileStream = assetManager.open(EXTENSIONS_PROPERTIES);
54 sProperties.load(fileStream);
55 fileStream.close();
  /packages/apps/Contacts/src/com/android/contacts/extensions/
ExtensionsFactory.java 51 final InputStream fileStream = context.getAssets().open(EXTENSIONS_PROPERTIES);
53 sProperties.load(fileStream);
54 fileStream.close();
  /system/nfc/src/adaptation/
CrcChecksum.cpp 95 int fileStream = open(filename, O_RDONLY);
96 if (fileStream >= 0) {
99 size_t actualReadCrc = read(fileStream, &checksum, sizeof(checksum));
102 ssize_t actualReadData = read(fileStream, buffer, sizeof(buffer));
108 close(fileStream);
libmain.c 94 int fileStream = open(filename, O_RDONLY);
95 if (fileStream >= 0) {
97 size_t actualReadCrc = read(fileStream, &checksum, sizeof(checksum));
98 size_t actualReadData = read(fileStream, pBuffer, nbytes);
99 close(fileStream);
147 int fileStream = 0;
149 fileStream = open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
150 if (fileStream >= 0) {
152 size_t actualWrittenCrc = write(fileStream, &checksum, sizeof(checksum));
153 size_t actualWrittenData = write(fileStream, pBuffer, nbytes)
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
InputFile.java 34 private FileInputStream fileStream;
61 fileStream = new FileInputStream(file);
62 inputStream = new InputStreamReader(fileStream, "UTF8");
75 fileStream.close();
  /system/nfc/halimpl/bcm2079x/adaptation/
NonVolatileStore.cpp 78 int fileStream = open(filename, O_RDONLY);
79 if (fileStream >= 0) {
81 size_t actualReadCrc = read(fileStream, &checksum, sizeof(checksum));
82 size_t actualReadData = read(fileStream, p_buf, nbytes);
83 close(fileStream);
121 int fileStream = 0;
131 fileStream = open(filename, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
132 if (fileStream >= 0) {
134 size_t actualWrittenCrc = write(fileStream, &checksum, sizeof(checksum));
135 size_t actualWrittenData = write(fileStream, p_buf, nbytes)
    [all...]
  /external/deqp/framework/delibs/destream/
deFileStream.c 32 } FileStream;
37 FileStream* fileStream = (FileStream*)stream;
40 deFileResult result = deFile_read(fileStream->file, buf, bufSize, &_numRead);
50 fileStream->error = "deFile: DE_FILERESULT_ERROR";
51 fileStream->status = DE_STREAMSTATUS_ERROR;
60 fileStream->error = "Uknown: DE_FILERESULT";
61 fileStream->status = DE_STREAMSTATUS_ERROR;
70 FileStream* fileStream = (FileStream*)stream
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/tools/
ExecFileLoader.java 111 final FileOutputStream fileStream = new FileOutputStream(file, append);
113 fileStream.getChannel().lock();
114 final OutputStream bufferedStream = new BufferedOutputStream(fileStream);
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/pbapclient/
PbapParserTest.java 52 InputStream fileStream;
53 fileStream = testResources.openRawResource(
56 mAccount, fileStream, PbapClientConnectionHandler.VCARD_TYPE_30);
73 InputStream fileStream;
74 fileStream =
77 mAccount, fileStream, PbapClientConnectionHandler.VCARD_TYPE_30);
94 InputStream fileStream;
95 fileStream = testResources.openRawResource(
98 mAccount, fileStream, PbapClientConnectionHandler.VCARD_TYPE_30);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
BitmapUtils.java 121 try (FileOutputStream fileStream = new FileOutputStream(file)) {
122 bitmap.compress(Bitmap.CompressFormat.PNG, 0 /* ignored for PNG */, fileStream);
123 fileStream.flush();
  /cts/common/util/src/com/android/compatibility/common/util/
ZipUtil.java 45 FileOutputStream fileStream = new FileOutputStream(zipFile);
46 out = new ZipOutputStream(new BufferedOutputStream(fileStream));
  /system/tools/hidl/
Hash.cpp 44 std::stringstream fileStream;
45 fileStream << stream.rdbuf();
46 std::string fileContent = fileStream.str();
  /cts/tests/tests/view/src/android/view/cts/
SurfaceViewSyncTest.java 221 try (FileOutputStream fileStream = new FileOutputStream(file)) {
222 bitmap.compress(Bitmap.CompressFormat.PNG, 85, fileStream);
223 fileStream.flush();
  /tools/tradefederation/core/src/com/android/tradefed/util/
ZipUtil.java 160 FileOutputStream fileStream = new FileOutputStream(zipFile);
161 out = new ZipOutputStream(new BufferedOutputStream(fileStream));
209 FileOutputStream fileStream = new FileOutputStream(zipFile);
210 out = new ZipOutputStream(new BufferedOutputStream(fileStream));
285 FileOutputStream fileStream = new FileOutputStream(gzipFile);
286 out = new GZIPOutputStream(new BufferedOutputStream(fileStream, 64 * 1024));
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
BugreportTest.java 64 FileOutputStream fileStream = new FileOutputStream(mZipFile);
65 ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(fileStream));
167 FileOutputStream fileStream = new FileOutputStream(zipFile);
168 ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(fileStream));
  /cts/tests/camera/src/android/hardware/camera2/cts/
DngCreatorTest.java 138 FileOutputStream fileStream = null;
171 fileStream = new FileOutputStream(dngFilePath);
172 fileStream.write(outputStream.toByteArray());
173 fileStream.flush();
174 fileStream.close();
187 if (fileStream != null) {
188 fileStream.close();
215 FileOutputStream fileStream = null;
280 fileStream = new FileOutputStream(filePath);
281 fileStream.write(outputStream.toByteArray())
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/charsetdet/
DetectingViewer.java 132 FileInputStream fileStream = null;
135 fileStream = new FileInputStream(file);
141 return new BufferedInputStream(fileStream);
  /frameworks/base/services/core/java/com/android/server/storage/
CacheQuotaStrategy.java 281 FileOutputStream fileStream = null;
284 fileStream = mPreviousValuesFile.startWrite();
285 out.setOutput(fileStream, StandardCharsets.UTF_8.name());
287 mPreviousValuesFile.finishWrite(fileStream);
290 mPreviousValuesFile.failWrite(fileStream);
  /external/lzma/CPP/7zip/UI/Common/
OpenArchive.cpp     [all...]
  /prebuilts/misc/common/jacoco/lib/
org.jacoco.core-0.7.2.201409121644.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.1.201405082137/
org.jacoco.core-0.7.1.201405082137.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.3.201501221555/
org.jacoco.core-0.7.3.201501221555.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.4.201502262128/
org.jacoco.core-0.7.4.201502262128.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.core/0.7.5.201505241946/
org.jacoco.core-0.7.5.201505241946.jar 

Completed in 1043 milliseconds

1 2