OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:streamToBytes
(Results
1 - 4
of
4
) sorted by null
/external/apache-harmony/support/src/test/java/tests/support/
Streams.java
35
public static byte[]
streamToBytes
(InputStream source) throws IOException {
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapDecode.java
51
private static byte[]
streamToBytes
(InputStream is) {
108
byte[] array =
streamToBytes
(is);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
OutputStreamTesterTest.java
90
return Streams.
streamToBytes
(new FileInputStream(file));
189
return Streams.
streamToBytes
(new ObjectInputStream(
/frameworks/volley/src/com/android/volley/toolbox/
DiskBasedCache.java
117
byte[] data =
streamToBytes
(cis, (int) (file.length() - cis.bytesRead));
315
private static byte[]
streamToBytes
(InputStream in, int length) throws IOException {
526
byte[] b =
streamToBytes
(is, n);
Completed in 593 milliseconds