HomeSort by relevance Sort by last modified time
    Searched full:gzout (Results 1 - 5 of 5) sorted by null

  /external/smack/src/com/kenai/jbosh/
GZIPCodec.java 63 GZIPOutputStream gzOut = null;
65 gzOut = new GZIPOutputStream(byteOut);
66 gzOut.write(data);
67 gzOut.close();
71 gzOut.close();
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 356 GzipOutputStream gzout(&output, options);
357 WriteStuff(&gzout);
358 gzout.Close();
391 GzipOutputStream gzout(&output, options);
392 WriteStuff(&gzout);
393 EXPECT_TRUE(gzout.Flush());
394 gzout.Close();
423 GzipOutputStream gzout(&output, options);
424 WriteStuff(&gzout);
425 EXPECT_TRUE(gzout.Flush())
607 GzipOutputStream* gzout = new GzipOutputStream(output); local
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/
BinaryDictOffdeviceUtilsTests.java 97 final OutputStream gzOut =
100 gzOut.write(0x12345678);
102 gzOut.close();
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 299 GzipOutputStream gzout(
301 WriteStuff(&gzout);
302 gzout.Close();
327 GzipOutputStream gzout(
329 WriteStuff(&gzout);
330 gzout.Close();
351 GzipOutputStream gzout(&output, GzipOutputStream::ZLIB);
352 WriteStuff(&gzout);
353 gzout.Close();
363 GzipOutputStream gzout(&output, GzipOutputStream::GZIP)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 607 GZIPOutputStream gzout = new GZIPOutputStream(new FileOutputStream(gz)); local
608 gzout.write("Gzip File Value".getBytes());
609 gzout.close();

Completed in 221 milliseconds