Searched refs:write (Results 176 - 200 of 204) sorted by relevance

123456789

/libcore/luni/src/test/java/tests/api/javax/net/ssl/
H A DSSLSessionTest.java520 ostream.write(testData.getBytes());
585 ostream.write(testData.getBytes());
/libcore/luni/src/main/java/libcore/net/url/
H A DJarURLConnectionImpl.java153 fos.write(buf, 0, nbytes);
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DFileClientSessionCache.java198 // We can't write to the file.
213 out.write(sessionData);
H A DOpenSSLSocketImpl.java96 * write for non-wrapped sockets. Note that
673 * write data according to the encryption parameters given in SSL context.
686 * @see java.io.OutputStream#write(int)
689 public void write(int oneByte) throws IOException { method in class:OpenSSLSocketImpl.SSLOutputStream
695 * @see java.io.OutputStream#write(byte[],int,int)
698 public void write(byte[] buf, int offset, int byteCount) throws IOException { method in class:OpenSSLSocketImpl.SSLOutputStream
848 * Note write timeouts are not part of the javax.net.ssl.SSLSocket API
862 * Note write timeouts are not part of the javax.net.ssl.SSLSocket API
966 * and will write the close notify to some unsuspecting
H A DTrustedCertificateStore.java204 os.write(cert.getEncoded());
504 // write knows what the next available has
602 // write copy of system cert to marked as deleted
/libcore/luni/src/main/native/
H A Djava_lang_ProcessManager.cpp148 write(statusOut, &error, sizeof(int));
/libcore/luni/src/test/java/libcore/java/io/
H A DOldFilterInputStreamTest.java306 fos.write(testString.getBytes());
H A DOldInputStreamReaderTest.java55 osw.write(buf);
/libcore/luni/src/test/java/libcore/java/net/
H A DConcurrentCloseTest.java184 System.err.println("write...");
190 s.getOutputStream().write(buf);
199 // This server accepts connections, but doesn't read or write anything.
H A DOldJarURLConnectionTest.java298 out.write(new byte[] { 'a', 'b', 'c' });
H A DOldURLTest.java540 out.write(helloWorldString);
H A DCookiesTest.java335 connection.getOutputStream().write(5);
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarFileTest.java55 if (iRead > 0) bs.write(buf, 0, iRead);
467 manifest.write(manOut);
480 jarOut.write(manBytes);
484 jarOut.write(65);
/libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
H A DTrustManagerImplTest.java48 fstream.write(text);
172 // write it to a pinfile
H A DTrustedCertificateStoreTest.java253 os.write(0);
634 out.write(x.getEncoded());
/libcore/luni/src/main/java/libcore/io/
H A DIoBridge.java402 // Posix open(2) fails with EISDIR only if you ask for write permission.
450 public static void write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws IOException { method in class:IoBridge
457 int bytesWritten = Libcore.os.write(fd, bytes, byteOffset, byteCount);
501 // We were asked to write to a non-blocking socket, but were told
/libcore/luni/src/main/java/java/nio/
H A DSelectorImpl.java75 * The wakeup pipe. To trigger a wakeup, write a byte to wakeupOut. Each
316 Libcore.os.write(wakeupOut, new byte[] { 1 }, 0, 1);
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
H A DSHA1PRNG_SecureRandomImpl.java474 oos.write(nextBytes, nextBIndex, HASHBYTES_TO_USE - nextBIndex);
/libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
H A DCertBlacklistTest.java138 out.write(blacklist.toString().getBytes());
165 // write the blacklist
176 // write that to the test blacklist
190 // write that to the test blacklist
205 // write the blacklist
218 // write the blacklist
231 // write the blacklist
245 // write the blacklist
261 // write the blacklist
283 // write th
[all...]
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
H A DURLConnectionTest.java295 writer.write("hello");
863 w.write(posted);
1325 out.write(testString);
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldRuntimeTest.java505 lcOut.write(simpleString.getBytes("UTF-8"));
/libcore/luni/src/main/java/java/util/
H A DSimpleTimeZone.java896 stream.write(values);
/libcore/luni/src/main/java/libcore/net/http/
H A DHttpEngine.java85 * body. When the headers and body can be sent in a single write, the
336 throw new IllegalStateException("No socket to write to; was a POST cached?");
659 requestOut.write(bytes);
/libcore/luni/src/test/java/libcore/xml/
H A DXsltXPathConformanceTestSuite.java607 out.write(buffer, 0, count);
/libcore/luni/src/test/java/libcore/net/http/
H A DHttpResponseCacheTest.java1483 Deque<InvocationHandler> writeHandlers = mockOs.getHandlers("write");
1487 mockOs.enqueueNormal("write", i++);
1488 mockOs.enqueueFault("write");
1673 requestBody.write('x');
1860 gzippedOut.write(bytes);

Completed in 774 milliseconds

123456789