OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputstream
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Browser/src/com/android/browser/
WallpaperHandler.java
33
import java.io.
InputStream
;
87
InputStream
inputstream
= null;
local
95
inputstream
= openStream();
96
if (
inputstream
!= null) {
97
if (!
inputstream
.markSupported()) {
98
inputstream
= new BufferedInputStream(
inputstream
, BUFFER_SIZE);
100
inputstream
.mark(BUFFER_SIZE);
106
new BufferedInputStream(
inputstream
), null, options)
[
all
...]
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceDetailFragment.java
44
import java.io.
InputStream
;
241
InputStream
inputstream
= client.getInputStream();
local
242
copyFile(
inputstream
, new FileOutputStream(f));
278
public static boolean copyFile(
InputStream
inputStream
, OutputStream out) {
282
while ((len =
inputStream
.read(buf)) != -1) {
287
inputStream
.close();
Completed in 723 milliseconds