/system/extras/ANRdaemon/ |
ANRdaemon.cpp | 27 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 373 uint8_t *in, *out; local 387 out = (uint8_t*)malloc(bufSize); 390 zs.next_out = out; 409 result = write(output_fd, out, bufSize); 416 zs.next_out = out; 428 result = write(output_fd, out, bytes); 440 free(out);
|
/system/security/keystore/ |
keystore.cpp | 102 static int encode_key(char* out, const android::String8& keyName) { 105 for (int i = length; i > 0; --i, ++in, ++out) { 107 *out = '+' + (*in >> 6); 108 *++out = '0' + (*in & 0x3F); 111 *out = *in; 114 *out = '\0'; 330 static void decode_key(char* out, const char* in, size_t length) { 338 *out = (*in++ - '+') << 6; 339 *out++ |= (*in - '0') & 0x3F; 341 *out++ = *in 671 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...] |
/external/caliper/lib/ |
gson-2.2.2.jar | |
/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 | 292 FileDescriptor.in, FileDescriptor.out, FileDescriptor.err, 382 System.out.println("Success"); 408 System.out.println("Success: created install session [" + sessionId + "]"); 545 OutputStream out = null; local 555 out = session.openWrite(splitName, 0, sizeBytes); 562 out.write(buffer, 0, c); 569 session.fsync(out); 572 System.out.println("Success: streamed " + total + " bytes"); 579 IoUtils.closeQuietly(out); 599 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 | 322 // Test out of bounds load. 347 // Test out of bounds indexed load. 537 * over packet traces and verify both programs filter out the same packets. 1060 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...] |