HomeSort by relevance Sort by last modified time
    Searched refs:writeBytes (Results 1 - 25 of 208) sorted by null

1 2 3 4 5 6 7 8 9

  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidPipedStreamTest.java 157 byte writeBytes[] = new byte[5];
160 writeBytes[0] = (byte) (toWrite >> 24);
161 writeBytes[1] = (byte) (toWrite >> 16);
162 writeBytes[2] = (byte) (toWrite >> 8);
163 writeBytes[3] = (byte) (toWrite);
164 writeBytes[4] = 0;
165 out.write(writeBytes, 0, writeBytes.length);
228 byte writeBytes[] = new byte[1024 * 2];
229 for (int i = 0; i < (writeBytes.length - 4); i += 4)
    [all...]
OldAndroidDataOutputStreamTest.java 42 a.writeBytes("BYTES");
  /hardware/bsp/intel/peripheral/libupm/src/mpr121/
mpr121.cxx 51 mraa::Result MPR121::writeBytes(uint8_t reg, uint8_t *buffer, int len)
95 if ((rv = writeBytes(0x5e, &eleConf, 1)) != mraa::SUCCESS)
98 ": writeBytes(0x5e) failed");
106 if ((rv = writeBytes(0x2b, sectA, 4)) != mraa::SUCCESS)
109 ": writeBytes(0x2b) failed");
117 if ((rv = writeBytes(0x2f, sectB, 4)) != mraa::SUCCESS)
120 ": writeBytes(0x2f) failed");
140 if ((rv = writeBytes(0x41, sectC, 24)) != mraa::SUCCESS)
143 ": writeBytes(0x41) failed");
151 if ((rv = writeBytes(0x5d, &filterConf, 1)) != mraa::SUCCESS
    [all...]
mpr121.h 96 mraa::Result writeBytes(uint8_t reg, uint8_t *buffer, int len);
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 43 mMemoryFile.writeBytes(data, 0, 0, 512);
57 mMemoryFile.writeBytes(data, srcOffset, destOffset, count);
86 mMemoryFile.writeBytes(data, 0, 0, 512);
93 mMemoryFile.writeBytes(data, 0, 0, 512);
119 mMemoryFile.writeBytes(data, 0, 0, data.length);
154 mMemoryFile.writeBytes(data, 0, 0, 128);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
DataOutput.java 30 public void writeBytes (String s) throws IOException;
  /libcore/ojluni/src/main/java/java/io/
DataOutput.java 279 void writeBytes(String s) throws IOException;
RandomAccessFile.java 477 private void writeBytes(byte b[], int off, int len) throws IOException {
493 writeBytes(b, 0, b.length);
506 writeBytes(b, off, len);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
MemoryFileTest.java 35 throw new Exception("readBytes did not read back what writeBytes wrote");
53 newFile.writeBytes(testString, 0, 0, testString.length);
78 file.writeBytes(testString, 0, 2000, testString.length);
127 file.writeBytes(testString, 0, 0, testString.length);
172 file.writeBytes(testString, 0, 0, testString.length);
194 file.writeBytes(data, 0, 0, 128);
222 file.writeBytes(data, 0, 0, 128);
223 fail("writeBytes() after close() did not throw IOException.");
234 file.writeBytes(data, 0, 0, 128);
252 file.writeBytes(testString, 0, 0, testString.length)
    [all...]
  /external/guava/guava/src/com/google/common/io/
ByteArrayDataOutput.java 48 @Deprecated @Override void writeBytes(String s);
LittleEndianDataOutputStream.java 69 * @deprecated The semantics of {@code writeBytes(String s)} are considered
74 @Override public void writeBytes(String s) throws IOException {
75 ((DataOutputStream) out).writeBytes(s);
  /hardware/bsp/intel/peripheral/libupm/src/ds1307/
ds1307.cxx 49 mraa::Result DS1307::writeBytes(uint8_t reg, uint8_t *buffer, int len)
172 return writeBytes(0, buffer, 7);
185 return writeBytes(0, &buf, 1);
198 return writeBytes(0, &buf, 1);
ds1307.h 118 mraa::Result writeBytes(uint8_t reg, uint8_t *buffer, int len);
  /external/proguard/src/proguard/classfile/io/
RuntimeDataOutput.java 109 public void writeBytes(String s)
113 dataOutput.writeBytes(s);
  /external/sonic/
wave.c 29 static void writeBytes(
52 writeBytes(file, string, strlen(string));
67 writeBytes(file, bytes, 4);
82 writeBytes(file, bytes, 2);
362 writeBytes(file, bytes, bytePos);
370 writeBytes(file, bytes, bytePos);
  /libcore/ojluni/src/main/java/sun/nio/cs/
StreamEncoder.java 209 private void writeBytes() throws IOException {
254 writeBytes();
282 writeBytes();
291 writeBytes();
309 writeBytes();
316 writeBytes();
  /external/llvm/include/llvm/MC/
MCObjectWriter.h 182 void writeBytes(const SmallVectorImpl<char> &ByteVec,
184 writeBytes(StringRef(ByteVec.data(), ByteVec.size()), ZeroFillSize);
187 void writeBytes(StringRef Str, unsigned ZeroFillSize = 0) {
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.0.CR3/
netty-buffer-4.1.0.CR3.jar 
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/files/
FileHandle.java 203 public void writeBytes (byte[] bytes, boolean append) {
211 public void writeBytes (byte[] bytes, int offset, int length, boolean append) {
  /external/parameter-framework/upstream/parameter/
ParameterBlackboard.h 67 void writeBytes(const std::vector<uint8_t> &bytes, size_t offset);
  /libcore/ojluni/src/main/java/java/sql/
SQLOutput.java 184 void writeBytes(byte[] x) throws SQLException;
  /libcore/ojluni/src/main/java/java/util/zip/
ZipOutputStream.java 415 writeBytes(nameBytes, 0, nameBytes.length);
423 writeBytes(e.extra, 0, e.extra.length);
506 writeBytes(nameBytes, 0, nameBytes.length);
518 writeBytes(e.extra, 0, e.extra.length);
521 writeBytes(commentBytes, 0, Math.min(commentBytes.length, 0xffff));
574 writeBytes(comment, 0, comment.length);
621 private void writeBytes(byte[] b, int off, int len) throws IOException {
  /libcore/ojluni/src/main/java/java/util/jar/
Attributes.java 316 os.writeBytes(buffer.toString());
318 os.writeBytes("\r\n");
339 out.writeBytes(vername+": "+version+"\r\n");
362 out.writeBytes(buffer.toString());
365 out.writeBytes("\r\n");
  /hardware/bsp/intel/peripheral/libupm/src/nrf24l01/
nrf24l01.cxx 101 writeBytes (value, NULL, m_payload); // Write payload
186 writeBytes (data, data, m_payload);
392 writeBytes (m_bleBuffer, NULL, 32); // Write payload
409 NRF24L01::writeBytes (uint8_t * dataout, uint8_t * datain, uint8_t len) {
446 writeBytes (value, value, len);
454 writeBytes (value, NULL, len);
  /external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataOutputStreamTest.java 87 out.writeBytes("r\u00C9sum\u00C9");
104 out.writeBytes("\uAAAA\uAABB\uAACC");

Completed in 971 milliseconds

1 2 3 4 5 6 7 8 9