/libcore/luni/src/test/java/libcore/java/io/ |
OldPipedOutputStreamTest.java | 33 public PReader(PipedOutputStream out) { 35 reader = new PipedInputStream(out); 37 System.out.println("Exception setting up reader: " 66 System.out.println("Exception reading (" 83 PipedOutputStream out; field in class:OldPipedOutputStreamTest 86 out = new PipedOutputStream(); 87 assertNotNull(out); 89 out.close(); 99 out = new PipedOutputStream(new PipedInputStream()); 100 out.write('b') [all...] |
/libcore/luni/src/test/java/libcore/java/lang/annotation/ |
AnnotationTypeMismatchExceptionTest.java | 37 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 41 new ObjectOutputStream(out).writeObject(original);
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidZipFileTest.java | 78 ZipOutputStream out = new ZipOutputStream(bytesOut); local 89 out.putNextEntry(newEntry); 90 out.write(input, 0, input.length); 91 out.closeEntry(); 94 out.setComment("This is a lovely compressed archive!"); 96 out.close(); 105 // System.out.println("Contents of " + zipFile + ":"); 108 // System.out.println(" " + entry.getName());
|
ZipEntryTest.java | 60 ZipOutputStream out = new ZipOutputStream(new FileOutputStream(f)); local 62 out.putNextEntry(new ZipEntry(filename)); 63 out.closeEntry(); // Empty files are fine. 65 out.close(); 109 ZipOutputStream out = createZipOutputStream(f); local 110 out.putNextEntry(new ZipEntry(maxLengthName)); 111 out.closeEntry(); 112 out.close(); 134 ZipOutputStream out = createZipOutputStream(f); local 138 out.putNextEntry(ze) 186 ZipOutputStream out = createZipOutputStream(f); local 204 ZipOutputStream out = createZipOutputStream(f); local [all...] |
/libcore/ojluni/src/main/java/java/io/ |
FileDescriptor.java | 77 * known as <code>System.out</code>. 78 * @see java.lang.System#out 80 public static final FileDescriptor out = dupFd(1); field in class:FileDescriptor
|
PrintWriter.java | 64 protected Writer out; field in class:PrintWriter 97 * @param out A character-output stream 99 public PrintWriter (Writer out) { 100 this(out, false); 106 * @param out A character-output stream 111 public PrintWriter(Writer out, 113 super(out); 114 this.out = out; 126 * @param out An output strea [all...] |
/libcore/ojluni/src/main/java/java/security/ |
DigestOutputStream.java | 118 out.write(b); 148 out.write(b, off, len);
|
/libcore/ojluni/src/main/java/java/util/zip/ |
CheckedOutputStream.java | 46 * @param out the output stream 49 public CheckedOutputStream(OutputStream out, Checksum cksum) { 50 super(out); 60 out.write(b); 73 out.write(b, off, len);
|
/libcore/ojluni/src/main/java/javax/crypto/ |
CipherOutputStream.java | 32 * that write() methods first process the data before writing them out 37 * CipherOutputStream will attempt to encrypt data before writing out the 74 // the buffer holding data ready to be written out 165 * to be written out. 168 * and waiting to be processed by it will not be written out. For example, 171 * the cipher's block size, no bytes will be written out. 190 * cipher to be processed. The result is written out by calling the 211 out.close();
|
/libcore/ojluni/src/main/java/sun/misc/ |
MessageUtils.java | 124 public static void out(String s) { method in class:MessageUtils 127 System.out.println(s);
|
/libcore/ojluni/src/main/java/sun/net/www/http/ |
HttpCaptureOutputStream.java | 38 public HttpCaptureOutputStream(OutputStream out, HttpCapture cap) { 39 super(out); 46 out.write(b); 54 out.write(ba); 62 out.write(b, off, len);
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
RandomCookie.java | 66 void send(HandshakeOutStream out) throws IOException { 67 out.write(random_bytes, 0, 32);
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
CertificatePolicyMap.java | 96 * @param out the DerOutputStream to write the object to. 99 public void encode(DerOutputStream out) throws IOException { 104 out.write(DerValue.tag_Sequence,tmp);
|
CertificatePolicySet.java | 84 * @param out the DerOutputStream to encode the data to. 86 public void encode(DerOutputStream out) throws IOException { 92 out.write(DerValue.tag_Sequence,tmp);
|
/libcore/support/src/test/java/tests/support/resource/ |
Support_Resources.java | 129 FileOutputStream out = new FileOutputStream(dest); local 130 copy(in, out); 131 out.close(); 137 private static int copy(InputStream in, OutputStream out) throws IOException { 143 out.write(buffer, 0, c); 181 File f = File.createTempFile("out", ".xml"); 183 FileOutputStream out = new FileOutputStream(f); local 188 out.write(b); 190 out.flush(); 191 out.close() 198 FileOutputStream out = new FileOutputStream(dest); local [all...] |
/packages/apps/Camera2/jni/ |
jpegutilnative.cpp | 91 jbyte* out = (jbyte*)env->GetDirectBufferAddress(outBuf); local 97 (unsigned char*)out, (size_t)outBufCapacity, //
|
/packages/apps/Email/src/com/android/email/mail/internet/ |
EmailHtmlUtil.java | 39 StringBuilder out = new StringBuilder(); local 43 out.append(text.substring(end, start)); 49 out.append(" "); 51 out.append(' '); 53 out.append("<br>"); 55 out.append("<"); 57 out.append(">"); 59 out.append("&"); 62 out.append(text.substring(end)); 63 text = out.toString() [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/ |
DomainList.java | 67 StringBuffer out = new StringBuffer(); local 69 out.append("@"); 70 out.append(get(i)); 72 out.append(","); 74 return out.toString();
|
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/ |
DomainList.java | 67 StringBuffer out = new StringBuffer(); local 69 out.append("@"); 70 out.append(get(i)); 72 out.append(","); 74 return out.toString();
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
CaptureLoader.java | 44 BufferedWriter out = null; local 52 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())); 55 out.write("CAPTURE_LAYERS " + window.encode()); 56 out.newLine(); 57 out.flush(); 74 if (out != null) { 75 out.close(); 94 System.out.println("Found end of layers list"); 98 System.out.println("name = " + name); 132 BufferedWriter out = null local [all...] |
ViewHierarchyLoader.java | 44 BufferedWriter out = null; local 49 System.out.println("==> Starting client"); 55 out = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())); 58 System.out.println("==> DUMP"); 60 out.write("DUMP " + window.encode()); 61 out.newLine(); 62 out.flush(); 119 if (out != null) { 120 out.close(); 131 System.out.println("==> DONE") [all...] |
/system/core/libsparse/ |
img2simg.c | 49 int out; local 80 out = STDOUT_FILENO; 82 out = open(argv[2], O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664); 83 if (out < 0) { 105 ret = sparse_file_write(s, out, false, true, false); 112 close(out);
|
simg2simg.c | 45 int out; local 98 out = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664); 99 if (out < 0) { 104 ret = sparse_file_write(out_s[i], out, false, true, false); 109 close(out);
|
/system/media/audio_utils/ |
channels.c | 48 uint8x3_t out; local 50 out.c[2] = in; 51 out.c[1] = in >> 8; 52 out.c[0] = in >> 16; 54 out.c[0] = in; 55 out.c[1] = in >> 8; 56 out.c[2] = in >> 16; 58 return out; 224 * The out and sums buffers must either be completely separate (non-overlapping), or 295 * The out and sums buffers must either be completely separate (non-overlapping), o [all...] |
limiter.c | 42 float out; local 47 out = crossover + atan_approximation((in_abs - crossover)*factor)*ratio; 48 if (out > 1.0) { 49 out = 1.0; 60 out = ((A*in_abs + B)*in_abs + C)*in_abs + D; 62 out = 1.0; 66 out = -out; 68 return out;
|