/tools/tradefederation/core/src/com/android/tradefed/util/ |
TarUtil.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 43 * Utility to manipulate a tar file. It wraps the commons-compress in order to provide tar support. 116 GZIPInputStream in = null; local 119 in = new GZIPInputStream(new FileInputStream(inputFile)); 121 IOUtils.copy(in, out); 123 StreamUtil.close(in); 139 FileInputStream in = null; local 142 in = new FileInputStream(inputFile); 143 IOUtils.copy(in, out) [all...] |
/build/soong/python/ |
python_test.go | 4 // you may not use this file except in compliance with the License. 9 // Unless required by applicable law or agreed to in writing, software 49 " First file: in module %s at path %q." + 50 " Second file: in module %s at path %q."
|
/cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/ |
DocumentsClientTestCase.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 96 final InputStream in = getInstrumentation().getContext().getContentResolver() local 98 return readFully(in); 105 try (AutoCloseInputStream in = new AutoCloseInputStream(descriptor)) { 106 return readFully(in); 110 protected byte[] readFully(InputStream in) throws IOException { 115 while ((count = in.read(buffer)) != -1) { 120 in.close();
|
/cts/hostsidetests/os/src/android/os/cts/ |
ProcfsHostTests.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 45 // The 10th column was introduced in kernel version 2.6.33. 49 // In Linux, a process's stat file (/proc/[PID]/stat) and a thread's (/proc/[PID]/task/[TID]/stat) 51 // (a string in parentheses), and state (a character), followed by 41 or more numbers. 52 // The 44th column was introduced in kernel version 2.6.24. 56 // Interval in milliseconds between two sequential reads when checking whether a file is being 59 // Max time in milliseconds waiting for a file being update. If a file's content does not change 83 * Tests that host, as the shell user, can read /proc/stat file, the file is in a reasonable 93 * Tests that host, as the shell user, can read /proc/[PID]/stat file, the file is in a reasonabl 168 Scanner in = new Scanner(logs); local [all...] |
/cts/hostsidetests/tv/src/com/android/cts/tv/ |
TvInputManagerHostTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 113 Scanner in = new Scanner(logs); local 114 while (in.hasNextLine()) { 115 String line = in.nextLine(); 120 in.close(); 140 // Each line in the output of the command has the format "feature:{FEATURE_VALUE}".
|
/cts/tests/core/runner/src/com/android/cts/runner/ |
CtsTestRunListener.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 104 // no way to implement this in JUnit4... 132 BufferedReader in = null; local 137 in = new BufferedReader(new InputStreamReader(proc.getInputStream())); 140 while ((line = in.readLine()) != null) { 147 Log.d(TAG, "In finally"); 148 if (in != null) { 150 in.close(); 162 * Nulls all non-static reference fields in the given test class. Thi [all...] |
/cts/tests/openglperf2/src/android/opengl2/cts/reference/ |
GLGameActivity.java | 5 * in compliance with the License. You may obtain a copy of the License at 9 * Unless required by applicable law or agreed to in writing, software distributed under the License 147 InputStream in = null; local 149 in = manager.open(path); 156 Bitmap bmp = BitmapFactory.decodeStream(in, null, op); 174 in.close();
|
/cts/tests/tests/keystore/src/android/keystore/cts/ |
AESCipherNistCavpKatTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 167 BufferedReader in = null; local 170 in = new BufferedReader(new InputStreamReader( 179 while ((line = in.readLine()) != null) { 261 if (in != null) { 263 in.close(); 305 private static void readFully(InputStream in, byte[] buf) throws IOException { 309 int chunkSize = in.read(buf, offset, remaining);
|
/cts/tests/tests/security/src/android/security/cts/ |
X509CertChainBuildingTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 48 /* Certificates for tests. These are initialized in setUp. 122 // in the loop caused by the cross signed certificates. 165 InputStream in = null; local 167 in = assetManager.open(new File(CERT_ASSET_DIR, file).toString()); 168 return (X509Certificate) certFactory.generateCertificate(in); 170 if (in != null) { 171 in.close();
|
/dalvik/dx/src/com/android/dex/ |
EncodedValueReader.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 47 protected final ByteInput in; field in class:EncodedValueReader 52 public EncodedValueReader(ByteInput in) { 53 this.in = in; 56 public EncodedValueReader(EncodedValue in) { 57 this(in.asByteInput()); 66 public EncodedValueReader(ByteInput in, int knownType) { 67 this.in = in [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
ClassPathOpener.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 33 * Opens all the class files found in a class path element. Path elements 45 * classes and "package-info" occurs before all other classes in that 110 * classes and "package-info" occurs before all other classes in that 123 * classes and "package-info" occurs before all other classes in that 182 * classes and "package-info" preceeds all other classes in its package. 270 InputStream in = zip.getInputStream(one); local 274 while ((read = in.read(buf)) != -1) { 278 in.close() [all...] |
/dalvik/dx/src/com/android/dx/io/ |
DexIndexPrinter.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 96 Dex.Section in = dex.open(tableOfContents.typeLists.off); local 98 int size = in.readInt(); 101 System.out.print(" " + dex.typeNames().get((int) in.readShort())); 104 in.readShort(); // retain alignment
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
SerializedGrammar.java | 6 Redistribution and use in source and binary forms, with or without 11 2. Redistributions in binary form must reproduce the above copyright 12 notice, this list of conditions and the following disclaimer in the 20 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 24 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 44 public char type; // in {l, p, t, c} 93 DataInputStream in = new DataInputStream(bos); local 94 readFile(in); 95 in.close() [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/ |
JPDADebuggeeSynchronizer.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 59 protected DataInputStream in; field in class:JPDADebuggeeSynchronizer 112 msg = in.readUTF(); 133 msg = in.readUTF(); 152 msg = in.readUTF(); 184 "[SYNC] Exception in binding for socket sync connection", e); 208 "[SYNC] Exception in binding for socket sync connection", e); 225 in = new DataInputStream(clientSocket.getInputStream()); 228 "[SYNC] Exception in accepting socket sync connection", e) [all...] |
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/ |
UnixSocketTest.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 52 InputStream in = worker.getInputStream(); local 53 in.read(); 104 // Port 0 is not allowed to be used in connect() on some platforms,
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_Exec.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 68 InputStream in = proc.getInputStream(); local 72 while ((result = in.read(bytes)) != -1) { 79 in.close(); 119 InputStream in = proc.getInputStream(); local 123 while ((result = in.read(bytes)) != -1) { 130 in.close();
|
/external/apache-harmony/support/src/test/java/tests/support/resource/ |
Support_Resources.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 91 InputStream in = Support_Resources.getStream(src); local 94 copyLocalFileTo(dst, in); 104 public static void copyLocalFileTo(File dest, InputStream in) throws IOException { 109 while ((result = in.read(buf)) != -1) { 112 in.close(); 120 InputStream in = new URL(url).openStream(); local 122 copyLocalFileTo(temp, in);
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
FileClientSessionCache.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 49 * in the cache (see {@link #putSessionData}). Files are read on 54 * so the ordering actually ends up being least-recently-modified in some 55 * cases and even just "not accessed in this process" if the filesystem 60 /** Directory to store session files in. */ 64 * Map of name -> File. Keeps track of the order files were accessed in. 90 // cache misses in getSessionData(). 95 // File.list() will return null in error cases without throwing IOException 133 * Note: This method is only called when the in-memory cach 159 FileInputStream in; local [all...] |
/external/doclava/src/com/google/doclava/ |
ClearPage.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 161 FileInputStream in; local 167 in = new FileInputStream(from); 192 size = in.read(buf); 208 in.close(); 226 /* Setting excepted types to allow everything. Leaving it this way in in case we want to explicitly
|
/external/emma/core/java12/com/vladium/emma/rt/ |
ClassPathProcessorST.java | 75 m_log.info ("[" + m_classCount + " class(es) processed in " + (end - start) + " ms]"); 86 public void handleArchiveEntry (final JarInputStream in, final ZipEntry entry) 103 readZipEntry (in, entry); 150 // in the classpath wins" semantics: 250 // in the classpath wins" semantics: 318 InputStream in = null; local 321 in = new FileInputStream (file); 325 (totalread < length) && (read = in.read (m_readbuf, totalread, length - totalread)) >= 0; 331 if (in != null) try { in.close (); } catch (Exception ignore) {} [all...] |
InstrClassLoader.java | 53 // behavior in a few places, including URLClassLoader.getResource(): 121 // or (c) it will define 'c' itself if allowed to. In any 153 if (resolve) resolveClass (c); // this never happens in J2SE JVMs 157 // TODO: remove this in the release build 166 if (trace1 && (result != null)) m_log.trace1 ("loadClass", "[" + name + "] found in " + result); 251 if (trace1 && (classURL != null)) m_log.trace1 ("findClass", "[" + name + "] found in " + classURL); 257 InputStream in = null; local 261 in = classURL.openStream (); 266 readFully (in, baos, buf.m_buf); 267 in.close (); // don't keep the file handle across reentrant call [all...] |
/external/emma/core/java12/com/vladium/util/ |
Property.java | 219 InputStream in = null; local 222 in = ResourceLoader.getResourceAsStream (name); 223 if (in != null) 226 result.load (in); 235 if (in != null) try { in.close (); } catch (Throwable ignore) {} 236 in = null; 253 InputStream in = null; local 256 in = ResourceLoader.getResourceAsStream (name, loader); 257 if (in != null 291 InputStream in = null; local [all...] |
/external/emma/tools/java/com/vladium/tools/ |
ClassDep.java | 140 InputStream in = null; local 144 in = loader.getResourceAsStream (classVMName + ".class"); 146 if (in == null) 148 throw new IllegalArgumentException ("class [" + Descriptors.vmNameToJavaName (classVMName) + "] not found in the input classpath"); 153 for (int read; (read = in.read (readbuf)) >= 0; baos.write (readbuf, 0, read)); 158 if (in != null) try { in.close (); } catch (IOException ignore) { ignore.printStackTrace (); } 160 in = null;
|
/external/guava/guava-tests/test/com/google/common/io/ |
ByteSourceTester.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 43 * {@code slice()} views in the same way. 109 InputStream in = source.openStream(); local 111 byte[] readBytes = ByteStreams.toByteArray(in); 114 in.close(); 119 InputStream in = source.openBufferedStream(); local 121 byte[] readBytes = ByteStreams.toByteArray(in); 124 in.close();
|
CharSinkTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 76 TestReader in = new TestReader(); local 77 assertFalse(in.closed()); 78 sink.writeFrom(in); 79 assertFalse(in.closed());
|