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

<<21222324252627282930>>

  /frameworks/base/sax/tests/saxtests/src/android/sax/
ExpatPerformanceTest.java 46 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
50 out.write(buffer, 0, length);
52 mXmlBytes = out.toByteArray();
  /frameworks/base/services/core/java/com/android/server/pm/
PackageUsage.java 60 BufferedOutputStream out = new BufferedOutputStream(f); local
67 out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
80 out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
82 out.flush();
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
Owners.java 504 final XmlSerializer out = new FastXmlSerializer(); local
505 out.setOutput(outputStream, StandardCharsets.UTF_8.name());
508 out.startDocument(null, true);
509 out.startTag(null, TAG_ROOT);
512 writeInner(out);
515 out.endTag(null, TAG_ROOT);
516 out.endDocument();
517 out.flush();
582 abstract void writeInner(XmlSerializer out) throws IOException;
599 void writeInner(XmlSerializer out) throws IOException
    [all...]
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
ComputeThresholdAction.java 142 PrintWriter out = new PrintWriter(f); local
144 out.println(s);
146 out.close();
  /frameworks/base/wifi/java/android/net/wifi/
WifiSsid.java 174 CharBuffer out = CharBuffer.allocate(32); local
176 CoderResult result = decoder.decode(ByteBuffer.wrap(ssidBytes), out, true);
177 out.flip();
181 return out.toString();
203 String out = "0x"; local
206 out += String.format(Locale.US, "%02x", ssidbytes[i]);
208 return (octets.size() > 0) ? out : null;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedCharacterIteratorAttributeTest.java 72 ObjectOutputStream out = null; local
76 out = new ObjectOutputStream(bytes);
87 out.writeObject(dattribute);
89 out.writeObject(attribute);
109 if (out != null)
110 out.close();