HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2176 - 2200 of 5424) sorted by null

<<81828384858687888990>>

  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
PackageManagerHostTestUtils.java 564 String out = mDevice.executeShellCommand(String.format("dumpsys package %s", pkgName)); local
565 Matcher m = Pattern.compile("userId=(\\d+)").matcher(out);
574 String out = mDevice.executeShellCommand(String.format("dumpsys package %s", pkgName)); local
575 Matcher m = Pattern.compile("primaryCpuAbi=(.+)").matcher(out);
  /build/make/tools/signapk/src/com/android/signapk/
SignApk.java 200 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
201 System.out.flush();
308 /** Sign data and write the digital signature to 'out'. */
311 OutputStream out)
335 DEROutputStream dos = new DEROutputStream(out);
346 JarOutputStream out,
353 out.putNextEntry(outEntry);
355 out.write(entryData);
374 JarOutputStream out,
463 out.putNextEntry(outEntry)
    [all...]
  /external/conscrypt/platform/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 860 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
954 OutputStream out = new FileOutputStream(file); local
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 89 final InstrResult out)
91 out.m_instrumented = false;
92 out.m_descriptor = null;
117 out.m_descriptor = new ClassDescriptor (m_classPackageName, m_className, m_classSignature, m_classSrcFileName, m_classMethodDescriptors);
120 out.m_instrumented = m_instrument;
1438 final ByteArrayOStream out = ctx.m_out; local
1501 final ByteArrayOStream out = ctx.m_out; local
1525 final ByteArrayOStream out = ctx.m_out; local
1589 final ByteArrayOStream out = ctx.m_out; local
1621 final ByteArrayOStream out = ctx.m_out; local
1645 final ByteArrayOStream out = ctx.m_out; local
1667 final ByteArrayOStream out = ctx.m_out; local
1692 final ByteArrayOStream out = ctx.m_out; local
1742 final ByteArrayOStream out = ctx.m_out; local
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 137 HTMLWriter out = null; local
151 out = openOutFile (fullOutFile, m_settings.getOutEncoding (), true);
308 page.emit (out);
309 out.flush ();
313 if (out != null) out.close ();
314 out = null;
322 HTMLWriter out = null; local
329 out = openOutFile (Files.newFile (m_settings.getOutDir (), outFile), m_settings.getOutEncoding (), true);
425 page.emit (out);
441 HTMLWriter out = null; local
616 HTMLWriter out = null; local
744 final int [] out = m_out; local
1438 BufferedWriter out = null; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
RoundTripTest.java 319 PrintWriter out = new PrintWriter( local
324 out.println("Pinyin: " + target);
325 out.println("Pinyin-Numeric-Pinyin: " + target2);
326 out.close();
1087 PrintWriter out; field in class:RoundTripTest.TransliterationTest
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RoundTripTest.java 318 PrintWriter out = new PrintWriter( local
323 out.println("Pinyin: " + target);
324 out.println("Pinyin-Numeric-Pinyin: " + target2);
325 out.close();
1086 PrintWriter out; field in class:RoundTripTest.TransliterationTest
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
NanoWSD.java 31 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
69 private OutputStream out; field in class:NanoWSD.WebSocket
82 protected void send(OutputStream out) {
83 WebSocket.this.out = out;
85 super.send(out);
154 if (this.out != null) {
156 this.out.close();
272 frame.write(this.out);
695 public void write(OutputStream out) throws IOException
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
URLConnectionTest.java 474 OutputStream out = conn.getOutputStream(); local
477 out.write('x');
483 out.write(buf, 0, Math.min(buf.length, n - i));
486 out.close();
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
CodedOutputStream.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1953 private final ByteOutput out; field in class:CodedOutputStream.ByteOutputEncoder
2256 private final OutputStream out; field in class:CodedOutputStream.OutputStreamEncoder
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 258 OutputStream out = new FileOutputStream(mImageFilePath); local
259 image.compress(Bitmap.CompressFormat.PNG, 100, out);
260 out.flush();
261 out.close();
745 // Flash the flash view in and out quickly
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/restore/
PerformUnifiedRestoreTask.java 444 // state RUNNING_QUEUE : figure out what the next thing to be restored is,
487 // turns out not to be present. Skip it.
693 BackupDataOutput out = new BackupDataOutput(mBackupData.getFileDescriptor()); local
711 out.writeEntityHeader(key, size);
712 out.writeEntityData(buffer, size);
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ManagedServices.java 225 // rather than wiping out the setting
244 public void writeXml(XmlSerializer out, boolean forBackup) throws IOException {
245 out.startTag(null, getConfig().xmlTag);
262 out.startTag(null, TAG_MANAGED_SERVICES);
263 out.attribute(null, ATT_APPROVED_LIST, allowedItems);
264 out.attribute(null, ATT_USER_ID, Integer.toString(userId));
265 out.attribute(null, ATT_IS_PRIMARY, Boolean.toString(isPrimary));
266 out.endTag(null, TAG_MANAGED_SERVICES);
279 out.endTag(null, getConfig().xmlTag);
407 .filter(out -> out != null).collect(Collectors.toList()))
    [all...]
RankingHelper.java 358 public void writeXml(XmlSerializer out, boolean forBackup) throws IOException {
359 out.startTag(null, TAG_RANKING);
360 out.attribute(null, ATT_VERSION, Integer.toString(XML_VERSION));
375 out.startTag(null, TAG_PACKAGE);
376 out.attribute(null, ATT_NAME, r.pkg);
378 out.attribute(null, ATT_IMPORTANCE, Integer.toString(r.importance));
381 out.attribute(null, ATT_PRIORITY, Integer.toString(r.priority));
384 out.attribute(null, ATT_VISIBILITY, Integer.toString(r.visibility));
386 out.attribute(null, ATT_SHOW_BADGE, Boolean.toString(r.showBadge));
389 out.attribute(null, ATT_UID, Integer.toString(r.uid))
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest2.java 63 private void writeObject(java.io.ObjectOutputStream out)
66 out.defaultWriteObject();
67 out.writeLong(milliseconds);
119 private void writeObject(java.io.ObjectOutputStream out)
121 ObjectOutputStream.PutField fields = out.putFields();
123 out.writeFields();
147 private void writeObject(java.io.ObjectOutputStream out)
149 out.writeFields();
168 private void writeObject(java.io.ObjectOutputStream out)
170 ObjectOutputStream.PutField fields = out.putFields()
1270 ByteArrayOutputStream out; local
1298 ByteArrayOutputStream out; local
1328 ByteArrayOutputStream out; local
1361 ByteArrayOutputStream out; local
2072 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
SocketTest.java 473 // The other possibility is that the system timed us out.
842 OutputStream out = pingClient.getOutputStream(); local
843 out.write(new byte[256]);
862 out.write(new byte[256]);
869 out.close();
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
SocketTest.java 121 SocketChannel out = SocketChannel.open(); local
122 out.configureBlocking(false);
124 out.socket().setTcpNoDelay(false);
127 out.connect(addr);
128 while (!out.finishConnect()) {
138 InetSocketAddress outRemoteAddress = (InetSocketAddress) out.socket().getRemoteSocketAddress();
139 InetSocketAddress outLocalAddress = (InetSocketAddress) out.socket().getLocalSocketAddress();
161 assertTrue(out.socket().isConnected());
162 assertTrue(out.isConnected());
165 out.close()
300 OutputStream out = socket.getOutputStream(); local
    [all...]
URLConnectionTest.java 448 // detected) can be handled by the server out of order leading to test failure.
504 OutputStream out = conn.getOutputStream(); local
507 out.write('x');
513 out.write(buf, 0, Math.min(buf.length, n - i));
516 out.close();
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapFolder.java 409 * Either figure out how to make getMessage() with a date range work without this
633 * Figure out what command we are going to run:
774 // TODO: Figure out what kinds of exceptions might actually be thrown
803 OutputStream out = tempBody.getOutputStream(); local
1062 final CountingOutputStream out = new CountingOutputStream(tempOut); local
    [all...]
  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
ConfigGenerator.java 590 FileOutputStream out = new FileOutputStream(new File(dir, filename)); local
591 StreamResult result = new StreamResult(out);
593 out.flush();
594 out.close();
  /prebuilts/tools/common/m2/repository/com/braintreepayments/encryption/2.1.0/
encryption-2.1.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/javapoet/1.8.0/
javapoet-1.8.0.jar 
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java 2926 XmlSerializer out = new FastXmlSerializer(); local
4177 XmlSerializer out = new FastXmlSerializer(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
DeviceIdleController.java 156 /** Device is in the idle state, but temporarily out of idle to do regular maintenance. */
182 /** Device is in the light idle state, but temporarily out of idle to do regular maintenance. */
227 * Package names the system has white-listed to opt out of power save restrictions,
233 * Package names the user has white-listed using commandline option to opt out of
239 * Package names the system has white-listed to opt out of power save restrictions for
245 * Package names the user has white-listed to opt out of power save restrictions.
261 * App IDs that have been white-listed to opt out of power save restrictions, except
274 * App IDs that have been white-listed to opt out of power save restrictions.
285 * App IDs that have been white-listed by the user to opt out of power save restrictions.
390 // When coming out of a deep idle, we will add in some delay before we allo
2534 XmlSerializer out = new FastXmlSerializer(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkPolicyManagerService.java 2087 XmlSerializer out = new FastXmlSerializer(); local
    [all...]

Completed in 3485 milliseconds

<<81828384858687888990>>