/system/core/fastboot/ |
usb_linux.cpp | 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 55 * under 2 seconds) but we'll time out after 3 seconds just in case. 145 int in, out; local 218 out = -1; 245 out = ept->bEndpointAddress; 257 info.has_bulk_out = (out != -1); 261 *ept_out_id = out; 334 int n, in, out, ifc; local 362 if (filter_usb_device(de->d_name, desc, n, writable, callback, &in, &out, &ifc) == 0) { 366 usb->ep_out = out; [all...] |
/system/core/init/ |
bootchart.cpp | 88 FILE* out = fopen(LOG_HEADER, "we"); local 89 if (out == NULL) { 92 fprintf(out, "version = Android init 0.8\n"); 93 fprintf(out, "title = Boot chart for Android (%s)\n", date); 94 fprintf(out, "system.uname = %s %s %s %s\n", uts.sysname, uts.release, uts.version, uts.machine); 95 fprintf(out, "system.release = %s\n", fingerprint.c_str()); 97 fprintf(out, "system.cpu = %s\n", uts.machine); 98 fprintf(out, "system.kernel.options = %s\n", kernel_cmdline.c_str()); 99 fclose(out);
|
/system/core/libcutils/ |
str_parms.c | 323 float out; local 331 out = strtof(value, &end); 335 *val = out;
|
/system/core/toolbox/upstream-netbsd/bin/dd/ |
dd.c | 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 78 IO in, out; /* input/output state */ variable 179 if (out.name == NULL) { 181 out.fd = STDOUT_FILENO; 182 out.name = "stdout"; 183 out.ops = &ddfops_stdfd; 185 out.ops = prog_ops; 188 out.fd = ddop_open(out, out.name, O_RDWR | OFLAGS, DEFFILEMODE) [all...] |
/frameworks/base/services/core/java/com/android/server/ |
AppOpsService.java | 1547 XmlSerializer out = new FastXmlSerializer(); local [all...] |
MountService.java | 1624 XmlSerializer out = new FastXmlSerializer(); local [all...] |
/frameworks/base/services/core/java/com/android/server/wallpaper/ |
WallpaperManagerService.java | 441 Slog.v(TAG, " out: w=" + finalCrop.getWidth() 621 Slog.w(TAG, "Wallpaper reconnect timed out, " 1837 XmlSerializer out = new FastXmlSerializer(); local [all...] |
/dalvik/dx/etc/ |
jasmin.jar | |
/prebuilts/tools/common/jasmin/ |
jasmin.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-jsch.jar | |
/prebuilts/tools/common/m2/repository/jdom/jdom/1.0/ |
jdom-1.0.jar | |
/cts/hostsidetests/net/app/src/com/android/cts/net/hostside/ |
VpnTest.java | 319 // Find out what the kernel set the ICMP ID to. 331 // Zero out the checksum in the reply so it matches the uninitialized checksum in packet. 336 // Writes data to out and checks that it appears identically on in. 338 OutputStream out, InputStream in, byte[] data) throws IOException { 339 out.write(data, 0, data.length); 340 out.flush(); 406 // Make sure our writes don't block or time out, because we're single-threaded and can't
|
/cts/tests/tests/content/src/android/content/cts/ |
IntentFilterTest.java | 577 ByteArrayOutputStream out; local 580 out = new ByteArrayOutputStream(); 581 xml.setOutput(out, "utf-8"); 591 final InputStream in = new ByteArrayInputStream(out.toByteArray()); [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
BitmapDrawableTest.java | 609 FileOutputStream out = null; local 623 out = new FileOutputStream(goldenFile, false); 624 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out); 628 if (out != null) { 630 out.close();
|
VectorDrawableTest.java | 277 FileOutputStream out = null; local 295 out = new FileOutputStream(outputFile, false); 296 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out); 301 if (out != null) { 302 out.close();
|
/cts/tests/tests/media/src/android/media/cts/ |
NativeDecoderTest.java | 285 // we ran out of samples without ever signaling EOS to the codec, 479 ParcelFileDescriptor out = ParcelFileDescriptor.open(new File(tmpFile), local 484 out.getFd(), webm)); 492 remux.setDataSource(out.getFileDescriptor()); 582 int out, boolean webm);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
ScenarioData.java | 247 stream = System.out; 324 if (stream != System.out) 418 if (stream == null) stream = System.out; 451 OutputStream out = null; local 453 out = new BufferedOutputStream(new FileOutputStream(outputFile)); 454 il.save(out, SWT.IMAGE_GIF); 460 if (out != null) { 462 out.close();
|
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessorST.java | 111 final OutputStream out = new FileOutputStream (getFullOutFile (parentDir, archive, IN_LIB)); local 113 m_archiveOut = outManifest != null ? new JarOutputStream (out, outManifest) : new JarOutputStream (out); 137 final OutputStream out = new FileOutputStream (m_tempArchiveFile); local 139 m_archiveOut = outManifest != null ? new JarOutputStream (out, outManifest) : new JarOutputStream (out); 277 fnfe.printStackTrace (System.out); 448 // otherwise, instrument only if the dest file is out of date 481 // System.out.println (clsDef.getName () + " metadata:"); 482 // System.out.println (profile.root ().dump (0.2)) [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
BreakIteratorTest.java | 340 StringBuffer out = new StringBuffer(); local 344 out.append(c); 346 out.append("\\u"); 348 out.append(zeros.substring(0, 4 - temp.length())); 349 out.append(temp); 352 logln(out.toString()); [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/text/ |
SpoofCheckerTest.java | 706 StringBuilder out = new StringBuilder(); local 710 out.append((char) c); 712 out.append(String.format("\\u%04x", c)); 714 out.append(String.format("\\U%06x", c)); 718 return out.toString(); [all...] |
/external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
TestConversion.java | 325 // testing by steps using charset.encoder(in,out,flush) 343 ex.printStackTrace(System.out); 348 // testing by whole buffer using out = charset.encoder(in) 352 ByteBuffer out = null; local 355 out = encoder.encode(CharBuffer.wrap(cc.unicode.toCharArray())); 356 out.position(out.limit()); 357 if (out.limit() != out.capacity() || cc.finalFlush) { 358 int pos = out.position() 671 CharBuffer out = null; local [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
BreakIteratorTest.java | 336 StringBuffer out = new StringBuffer(); local 340 out.append(c); 342 out.append("\\u"); 344 out.append(zeros.substring(0, 4 - temp.length())); 345 out.append(temp); 348 logln(out.toString()); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/ |
SpoofCheckerTest.java | 702 StringBuilder out = new StringBuilder(); local 706 out.append((char) c); 708 out.append(String.format("\\u%04x", c)); 710 out.append(String.format("\\U%06x", c)); 714 return out.toString(); [all...] |
/external/javassist/src/main/javassist/ |
CtClass.java | 65 System.out.println("Javassist version " + CtClass.version); 66 System.out.println("Copyright (C) 1999-2010 Shigeru Chiba." 258 * Returns true if the class has been loaded or written out 289 * written out. This method should be called only in a case 290 * that the class will be reloaded or written out later again. 1277 DataOutputStream out = new DataOutputStream(barray); local 1324 DataOutputStream out local [all...] |
/external/jetty/src/java/org/eclipse/jetty/util/ajax/ |
JSON.java | 373 public void toJSON(Output out) 375 convertor.toJSON(object,out); 388 ConvertableOutput out=new ConvertableOutput(buffer); local 389 converter.toJSON(out); 390 out.complete(); [all...] |