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

<<919293949596979899100>>

  /system/extras/ANRdaemon/
ANRdaemon.cpp 27 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
288 uint8_t *in, *out; local
302 out = (uint8_t*)malloc(bufSize);
305 zs.next_out = out;
324 result = write(output_fd, out, bufSize);
331 zs.next_out = out;
343 result = write(output_fd, out, bytes);
355 free(out);
  /system/security/keystore/
keystore.cpp 108 static int encode_key(char* out, const android::String8& keyName) {
111 for (int i = length; i > 0; --i, ++in, ++out) {
113 *out = '+' + (*in >> 6);
114 *++out = '0' + (*in & 0x3F);
117 *out = *in;
120 *out = '\0';
403 static void decode_key(char* out, const char* in, size_t length) {
411 *out = (*in++ - '+') << 6;
412 *out++ |= (*in - '0') & 0x3F;
414 *out++ = *in
720 int out = local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
ar.c 442 char **out; /* cursor into rearranged argv */
456 out = new_argv;
457 *out++ = *in++;
464 *out++ = xstrdup (buffer);
470 *out++ = *in++;
471 *out = NULL;
897 /* If the target isn't set, try to figure out the target to use
1239 /* In a.out systems, the armap is optional. It's also calle
439 char **out; \/* cursor into rearranged argv *\/ local
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/apk/v1/
V1SchemeSigner.java 434 // contain a signature for the signature scheme the verifier prefers out of this set.
452 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
454 SignatureFileWriter.writeMainSection(out, mainAttrs);
470 SignatureFileWriter.writeIndividualSection(out, sectionName, attrs);
479 if ((out.size() > 0) && ((out.size() % 1024) == 0)) {
481 SignatureFileWriter.writeSectionDelimiter(out);
487 return out.toByteArray();
  /tools/tradefederation/core/src/com/android/tradefed/command/remote/
RemoteManager.java 217 PrintWriter out = null; local
221 out = new PrintWriter(clientSocket.getOutputStream(), true);
222 processClientOperations(in, out);
230 closeWriter(out);
240 * @param out the {@link PrintWriter} to write to the client socket.
244 void processClientOperations(BufferedReader in, PrintWriter out) throws IOException {
297 sendAck(result, out);
475 private void sendAck(JSONObject result, PrintWriter out) {
476 out.println(result.toString());
513 private void closeWriter(PrintWriter out) {
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/config/
GlobalConfiguration.java 142 System.out.format("Success! Using global config \"%s\"\n", globalConfigPath);
167 // a java resource rather than a filename. Even so, this can help the user figure out
169 System.out.format(
178 System.out.format("Attempting to use autodetected global config \"%s\".\n", path);
592 * @param out the {@link PrintStream} to use.
595 public void printCommandUsage(boolean importantOnly, PrintStream out)
597 out.println(String.format("'%s' configuration: %s", getName(), getDescription()));
598 out.println();
600 out.println("Printing help for only the important options. " +
602 out.println()
    [all...]
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/
netty-codec-socks-4.1.6.Final.jar 
  /external/caliper/lib/
gson-2.2.2.jar 
  /prebuilts/devtools/tools/lib/
gson-2.2.4.jar 
  /prebuilts/gradle-plugin/com/google/code/gson/gson/2.3/
gson-2.3.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/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.6.6/
jackson-dataformat-cbor-2.6.6.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 686 FileOutputStream out = null; local
704 out = new FileOutputStream(outputFile, false);
705 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
709 if (out != null) {
711 out.close();
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 205 File file = getContext().getFileStreamPath("dump.out");
209 FileOutputStream out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE); local
210 assertFalse(Debug.dumpService("xyzzy -- not a valid service name", out.getFD(), null));
211 out.close();
217 out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE);
218 assertTrue(Debug.dumpService(Context.POWER_SERVICE, out.getFD(), null));
219 out.close();
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestClz.java 49 public byte out; field in class:TestClz.ArgumentsCharChar
55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
56 script.forEach_testClzCharChar(inValue, out);
57 verifyResultsClzCharChar(inValue, out, false);
58 out.destroy();
63 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTSIZE); local
64 scriptRelaxed.forEach_testClzCharChar(inValue, out);
65 verifyResultsClzCharChar(inValue, out, true);
66 out.destroy();
73 private void verifyResultsClzCharChar(Allocation inValue, Allocation out, boolean relaxed)
126 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
134 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTSIZE); local
197 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
205 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTSIZE); local
268 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
276 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 4), INPUTSIZE); local
338 public byte out; field in class:TestClz.ArgumentsUcharUchar
344 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
352 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
415 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
423 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
486 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
494 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
557 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
565 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
627 public short out; field in class:TestClz.ArgumentsShortShort
633 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
641 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 1), INPUTSIZE); local
704 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
712 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 2), INPUTSIZE); local
775 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
783 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 3), INPUTSIZE); local
846 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
854 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_16, 4), INPUTSIZE); local
916 public short out; field in class:TestClz.ArgumentsUshortUshort
922 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
930 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
993 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
1001 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
1064 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
1072 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
1135 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
1143 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
1205 public int out; field in class:TestClz.ArgumentsIntInt
1211 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
1219 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
1282 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1290 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
1353 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
1361 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
1424 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
1432 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
1494 public int out; field in class:TestClz.ArgumentsUintUint
1500 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
1508 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
1571 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
1579 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
1642 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
1650 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
1713 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
1721 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
    [all...]
TestStep.java 50 public Target.Floaty out; field in class:TestStep.ArgumentsFloatFloatFloat
57 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
59 script.forEach_testStepFloatFloatFloat(inEdge, out);
60 verifyResultsStepFloatFloatFloat(inEdge, inV, out, false);
61 out.destroy();
66 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
68 scriptRelaxed.forEach_testStepFloatFloatFloat(inEdge, out);
69 verifyResultsStepFloatFloatFloat(inEdge, inV, out, true);
70 out.destroy();
78 private void verifyResultsStepFloatFloatFloat(Allocation inEdge, Allocation inV, Allocation out, boolean relaxed)
140 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
149 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
223 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
232 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
306 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
315 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
390 public Target.Floaty out; field in class:TestStep.ArgumentsHalfHalfHalf
397 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 1), INPUTSIZE); local
406 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 1), INPUTSIZE); local
485 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 2), INPUTSIZE); local
494 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 2), INPUTSIZE); local
573 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 3), INPUTSIZE); local
582 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 3), INPUTSIZE); local
661 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 4), INPUTSIZE); local
670 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 4), INPUTSIZE); local
749 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
758 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
832 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
841 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
915 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
924 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
998 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 2), INPUTSIZE); local
1007 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 2), INPUTSIZE); local
1086 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 3), INPUTSIZE); local
1095 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 3), INPUTSIZE); local
1174 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 4), INPUTSIZE); local
1183 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 4), INPUTSIZE); local
1262 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
1271 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
1345 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
1354 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
1428 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
1437 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
1511 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 2), INPUTSIZE); local
1520 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 2), INPUTSIZE); local
1599 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 3), INPUTSIZE); local
1608 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 3), INPUTSIZE); local
1687 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 4), INPUTSIZE); local
1696 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_16, 4), INPUTSIZE); local
    [all...]
  /external/jline/src/src/main/java/jline/
ConsoleReader.java 124 final Writer out; field in class:ConsoleReader
153 * {@link System#out} for output. {@link FileDescriptor#in} is used because
159 new OutputStreamWriter(System.out,
167 public ConsoleReader(final InputStream in, final Writer out)
169 this(in, out, null);
172 public ConsoleReader(final InputStream in, final Writer out,
174 this(in, out, bindings, Terminal.getTerminal());
182 * @param out
189 public ConsoleReader(InputStream in, Writer out, InputStream bindings,
193 this.out = out
    [all...]
  /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 335 FileDescriptor.in, FileDescriptor.out, FileDescriptor.err,
449 System.out.println("Success");
475 System.out.println("Success: created install session [" + sessionId + "]");
626 OutputStream out = null; local
636 out = session.openWrite(splitName, 0, sizeBytes);
643 out.write(buffer, 0, c);
650 session.fsync(out);
653 System.out.println("Success: streamed " + total + " bytes");
660 IoUtils.closeQuietly(out);
681 System.out.println("Success")
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 264 StringBuilder out = new StringBuilder(); local
265 withinHtml(out, text, option);
266 return out.toString();
273 StringBuilder out = new StringBuilder(); local
274 withinStyle(out, text, 0, text.length());
275 return out.toString();
278 private static void withinHtml(StringBuilder out, Spanned text, int option) {
280 encodeTextAlignmentByDiv(out, text, option);
284 withinDiv(out, text, 0, text.length(), option);
287 private static void encodeTextAlignmentByDiv(StringBuilder out, Spanned text, int option)
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
RemotePrintDocument.java 363 OutputStream out = null; local
367 out = contentResolver.openOutputStream(uri);
374 out.write(buffer, 0, readByteCount);
380 IoUtils.closeQuietly(out);
524 * Which pages out of the ones written to the file to print. This is not indexed by the
1040 OutputStream out = null; local
    [all...]

Completed in 658 milliseconds

<<919293949596979899100>>