HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2126 - 2150 of 4560) sorted by null

<<81828384858687888990>>

  /prebuilts/devtools/tools/lib/
gson-2.2.4.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.2.4/
gson-2.2.4.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.3/
gson-2.3.jar 
  /prebuilts/tools/common/offline-m2/com/google/code/gson/gson/2.2.4/
gson-2.2.4.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.2/
dexmaker-1.2.jar 
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
NinePatchDrawableTest.java 659 FileOutputStream out = null; local
677 out = new FileOutputStream(outputFile, false);
678 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
682 if (out != null) {
684 out.close();
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 203 File file = getContext().getFileStreamPath("dump.out");
207 FileOutputStream out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE); local
208 assertFalse(Debug.dumpService("xyzzy -- not a valid service name", out.getFD(), null));
209 out.close();
215 out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE);
216 assertTrue(Debug.dumpService(Context.POWER_SERVICE, out.getFD(), null));
217 out.close();
  /external/jmdns/src/javax/jmdns/impl/
ServiceInfoImpl.java 131 ByteArrayOutputStream out = new ByteArrayOutputStream(text.length()); local
132 writeUTF(out, text);
133 this._text = out.toByteArray();
177 ByteArrayOutputStream out = new ByteArrayOutputStream(text.length()); local
178 writeUTF(out, text);
179 this._text = out.toByteArray();
750 static void writeUTF(OutputStream out, String str) throws IOException {
754 out.write(c);
757 out.write(0xE0 | ((c >> 12) & 0x0F));
758 out.write(0x80 | ((c >> 6) & 0x3F))
1235 ByteArrayOutputStream out = new ByteArrayOutputStream(256); local
    [all...]
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 296 FileDescriptor.in, FileDescriptor.out, FileDescriptor.err,
408 System.out.println("Success");
434 System.out.println("Success: created install session [" + sessionId + "]");
571 OutputStream out = null; local
581 out = session.openWrite(splitName, 0, sizeBytes);
588 out.write(buffer, 0, c);
595 session.fsync(out);
598 System.out.println("Success: streamed " + total + " bytes");
605 IoUtils.closeQuietly(out);
625 System.out.println("Success")
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 267 StringBuilder out = new StringBuilder(); local
268 withinHtml(out, text, option);
269 return out.toString();
276 StringBuilder out = new StringBuilder(); local
277 withinStyle(out, text, 0, text.length());
278 return out.toString();
281 private static void withinHtml(StringBuilder out, Spanned text, int option) {
283 encodeTextAlignmentByDiv(out, text, option);
287 withinDiv(out, text, 0, text.length(), option);
290 private static void encodeTextAlignmentByDiv(StringBuilder out, Spanned text, int option)
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
RemotePrintDocument.java 358 OutputStream out = null; local
362 out = contentResolver.openOutputStream(uri);
369 out.write(buffer, 0, readByteCount);
375 IoUtils.closeQuietly(out);
1014 OutputStream out = null; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 1648 OutputStream out = mSockets[i].getOutputStream(); local
    [all...]
  /frameworks/base/services/tests/servicestests/src/android/net/apf/
ApfTest.java 347 // Test out of bounds load.
372 // Test out of bounds indexed load.
562 * over packet traces and verify both programs filter out the same packets.
1130 OutputStream out = null; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ServerSocketChannelTest.java 471 OutputStream out = socket.getOutputStream(); local
472 out.write(writeContent);
473 out.flush();
492 OutputStream out = clientSocket.getOutputStream(); local
493 out.write(writeContent);
603 OutputStream out = socket.getOutputStream(); local
604 out.write(buffer);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PropertiesTest.java 621 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
622 myProps.save(out, "A Header");
623 out.close();
624 ByteArrayInputStream in = new ByteArrayInputStream(out
674 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
675 myProps.store(out, "A Header");
676 out.close();
677 ByteArrayInputStream in = new ByteArrayInputStream(out
708 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
709 myProps.store(new OutputStreamWriter(out), "A Header")
828 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
853 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
879 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
ScannerTest.java 382 // Write out a int before the scanner is closed, should be OK.
388 // Write out a int after the scanner is closed, IOException should be
389 // thrown out.
954 // If the number is out of range
974 // If exception is thrown out, input will not be advanced.
989 // If exception is thrown out, input will not be advanced.
1017 // If exception is thrown out, input will not be advanced.
1128 // If the number is out of rang
5588 BufferedWriter out = new BufferedWriter(new OutputStreamWriter(baos)); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTest.java 2095 OutputStream out = null; local
    [all...]
OldURLTest.java 237 URL gamelanFalse = new URL("file:///pages/out/index.html");
539 BufferedWriter out = new BufferedWriter(fstream, 32); local
540 out.write(helloWorldString);
542 out.close();
574 System.out.println("connection failed");
757 // test for relative file and out of bound "/../" processing
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CertificateTest.java 242 PrintStream out = new PrintStream(errBuffer); local
299 out.append("Error encountered checking " + p.getName() + "\n");
300 e.printStackTrace(out);
304 out.flush();
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CertImpl.java 338 * @param out an input stream to which the certificate is appended.
341 public void encode(OutputStream out)
347 out.write(signedCert.clone());
357 * @param out the output stream on which to write the DER encoding.
361 public void derEncode(OutputStream out) throws IOException {
364 out.write(signedCert.clone());
585 DerOutputStream out = new DerOutputStream(); local
601 out.write(DerValue.tag_Sequence, tmp);
602 signedCert = out.toByteArray();
1449 DerOutputStream out = new DerOutputStream(); local
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 18 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/sap/
SapMessage.java 704 private void writeLength(int length, CodedOutputStreamMicro out) throws IOException {
709 out.writeRawBytes(dataLength);
717 public void writeReqToStream(CodedOutputStreamMicro out) throws IOException {
733 writeLength(msg.getSerializedSize(), out); local
734 msg.writeTo(out);
742 writeLength(msg.getSerializedSize(), out); local
743 msg.writeTo(out);
761 writeLength(msg.getSerializedSize(), out); local
762 msg.writeTo(out);
781 writeLength(msg.getSerializedSize(), out); local
790 writeLength(msg.getSerializedSize(), out); local
800 writeLength(msg.getSerializedSize(), out); local
810 writeLength(msg.getSerializedSize(), out); local
819 writeLength(msg.getSerializedSize(), out); local
829 writeLength(msg.getSerializedSize(), out); local
    [all...]
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
AuptTestCase.java 525 * Writes out condensed memory data about the running processes.
543 PrintWriter out = new PrintWriter(new BufferedWriter( local
545 out.println("Foreground");
569 out.println(record.getKey());
570 out.printf("Average Native Heap: %d\n", MemHealthRecord.getAverage(nativeHeap));
571 out.printf("Average Dalvik Heap: %d\n", MemHealthRecord.getAverage(dalvikHeap));
572 out.printf("Average PSS: %d\n", MemHealthRecord.getAverage(pss));
573 out.printf("Peak Native Heap: %d\n", MemHealthRecord.getMax(nativeHeap));
574 out.printf("Peak Dalvik Heap: %d\n", MemHealthRecord.getMax(dalvikHeap));
575 out.printf("Peak PSS: %d\n", MemHealthRecord.getMax(pss))
644 PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter( local
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/javawriter/2.1.1/
javawriter-2.1.1.jar 

Completed in 859 milliseconds

<<81828384858687888990>>