/frameworks/av/media/mtp/ |
MtpRequestPacket.cpp | 49 // write our buffer to the given endpoint (host mode) 50 int MtpRequestPacket::write(struct usb_request *request) function in class:android::MtpRequestPacket
|
MtpResponsePacket.cpp | 38 int MtpResponsePacket::write(int fd) { function in class:android::MtpResponsePacket 41 int ret = ::write(fd, mBuffer, mPacketSize);
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/ |
Durable.java | 26 public void write(DataOutputStream out) throws IOException; method in interface:Durable
|
/libcore/crypto/src/main/java/org/conscrypt/ |
SSLSocketOutputStream.java | 37 @Override public void write(int b) throws IOException { method in class:SSLSocketOutputStream 42 public void write(byte[] b, int off, int len) throws IOException { method in class:SSLSocketOutputStream
|
/libcore/luni/src/main/java/java/io/ |
OutputStream.java | 25 * <p>Most clients will use output streams that write data to the file system 42 * #write(int)} and {@link #write(byte[],int,int) write(byte[],int,int)}. The 79 * Equivalent to {@code write(buffer, 0, buffer.length)}. 81 public void write(byte[] buffer) throws IOException { method in class:OutputStream 82 write(buffer, 0, buffer.length); method 94 * the number of bytes from {@code buffer} to write to this 103 public void write(byte[] buffer, int offset, int count) throws IOException { method in class:OutputStream 106 write(buffer[i]) 119 public abstract void write(int oneByte) throws IOException; method in class:OutputStream [all...] |
/libcore/luni/src/test/java/libcore/java/io/ |
CharArrayWriterTest.java | 28 a.write(str, 0, 26); 29 a.write('X'); 35 b.write("alphabravodelta", 5, 5);
|
OldAndroidStringWriterTest.java | 28 a.write(str, 0, 26); 29 a.write('X'); 33 a.write("alphabravodelta", 5, 5);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
CountingOutputStream.java | 37 public void write(int oneByte) throws IOException { method in class:CountingOutputStream
|
EOLConvertingOutputStream.java | 31 public void write(int oneByte) throws IOException { method in class:EOLConvertingOutputStream 34 super.write('\r'); 37 super.write(oneByte); 44 super.write('\n');
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
StatusOutputStream.java | 34 public void write(int oneByte) throws IOException { method in class:StatusOutputStream 35 super.write(oneByte);
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
ClosedOutputStream.java | 24 * write something to the stream.
46 public void write(int b) throws IOException {
method in class:ClosedOutputStream 47 throw new IOException("write(" + b + ") failed: stream is closed");
|
NullOutputStream.java | 40 * @param b The bytes to write
42 * @param len The number of bytes to write
44 public void write(byte[] b, int off, int len) {
method in class:NullOutputStream 50 * @param b The byte to write
52 public void write(int b) {
method in class:NullOutputStream 58 * @param b The bytes to write
61 public void write(byte[] b) throws IOException {
method in class:NullOutputStream
|
NullWriter.java | 44 * @param idx The character to write
46 public void write(int idx) {
method in class:NullWriter 52 * @param chr The characters to write
54 public void write(char[] chr) {
method in class:NullWriter 60 * @param chr The characters to write
62 * @param end The number of characters to write
64 public void write(char[] chr, int st, int end) {
method in class:NullWriter 70 * @param str The string to write
72 public void write(String str) {
method in class:NullWriter 78 * @param str The string to write
82 public void write(String str, int st, int end) { method in class:NullWriter [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
af_vfs.h | 16 License along with this library; if not, write to the 37 ssize_t (*write) (AFvirtualfile *vfile, const void *data, size_t nbytes); member in struct:_AFvirtualfile
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
af_vfs.h | 16 License along with this library; if not, write to the 37 ssize_t (*write) (AFvirtualfile *vfile, const void *data, size_t nbytes); member in struct:_AFvirtualfile
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
af_vfs.h | 16 License along with this library; if not, write to the 37 ssize_t (*write) (AFvirtualfile *vfile, const void *data, size_t nbytes); member in struct:_AFvirtualfile
|
/system/core/fastbootd/ |
transport.h | 32 ssize_t (*write)(struct transport_handle *thandle, const void *data, size_t len); member in struct:transport
|
/system/media/audio_utils/include/audio_utils/ |
echo_reference.h | 25 /* Buffer descriptor used by read() and write() methods, including the time stamp and delay. */ 51 int (*write)(struct echo_reference_itfe *echo_reference, struct echo_reference_buffer *buffer); member in struct:echo_reference_itfe
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/ |
FsFile.java | 16 * along with this library; If not, write to the Free Software Foundation, Inc., 65 * Writes to this file taking the data to write from the specified 74 * @throws IOException on write error 76 public void write(long offset, ByteBuffer src) method in interface:FsFile
|
/external/apache-http/src/org/apache/http/impl/io/ |
IdentityOutputStream.java | 82 public void write(byte[] b, int off, int len) throws IOException { method in class:IdentityOutputStream 84 throw new IOException("Attempted write to closed stream."); 86 this.out.write(b, off, len); 89 public void write(byte[] b) throws IOException { method in class:IdentityOutputStream 90 write(b, 0, b.length); method 93 public void write(int b) throws IOException { method in class:IdentityOutputStream 95 throw new IOException("Attempted write to closed stream."); 97 this.out.write(b);
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
CapsuleCollisionShape.java | 90 public void write(JmeExporter ex) throws IOException { method in class:CapsuleCollisionShape 91 super.write(ex); 93 capsule.write(radius, "radius", 0.5f); 94 capsule.write(height, "height", 1); 95 capsule.write(axis, "axis", 1);
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/ |
ConeJoint.java | 102 public void write(JmeExporter ex) throws IOException { method in class:ConeJoint 103 super.write(ex); 105 capsule.write(rotA, "rotA", new Matrix3f()); 106 capsule.write(rotB, "rotB", new Matrix3f()); 108 capsule.write(angularOnly, "angularOnly", false); 109 capsule.write(swingSpan1, "swingSpan1", 1e30f); 110 capsule.write(swingSpan2, "swingSpan2", 1e30f); 111 capsule.write(twistSpan, "twistSpan", 1e30f);
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
CompactQuaternionArray.java | 71 public void write(JmeExporter ex) throws IOException {
method in class:CompactQuaternionArray 74 out.write(array, "array", null);
75 out.write(index, "index", null);
|
CompactVector3Array.java | 71 public void write(JmeExporter ex) throws IOException {
method in class:CompactVector3Array 74 out.write(array, "array", null);
75 out.write(index, "index", null);
|
/external/jmonkeyengine/engine/src/core/com/jme3/audio/ |
LowPassFilter.java | 80 public void write(JmeExporter ex) throws IOException{ method in class:LowPassFilter 81 super.write(ex); 83 oc.write(volume, "volume", 0); 84 oc.write(highFreqVolume, "hf_volume", 0);
|