Home
last modified time | relevance | path

Searched refs:getInputStream (Results 1 – 25 of 90) sorted by relevance

1234

/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/archives/
DArchiveHandleTest.java343 InputStream inputStream = archiveHandle.getInputStream( in closeInputStream_zipFile_shouldBeSuccess()
378 InputStream inputStream = archiveHandle.getInputStream( in getInputStream_zipFile_shouldHaveTheSameContent()
395 archiveHandle.getInputStream(archiveEntry); in getInputStream_zipFileNotExistEntry_shouldFail()
411 archiveHandle.getInputStream(archiveEntry); in getInputStream_directoryEntry_shouldFail()
428 archiveHandle.getInputStream(archiveEntry); in getInputStream_negativeSizeEntry_shouldFail()
446 archiveHandle.getInputStream(archiveEntry); in getInputStream_emptyStringEntry_shouldFail()
464 InputStream inputStream = archiveHandle.getInputStream( in getInputStream_sevenZFile_shouldHaveTheSameContent()
483 InputStream inputStream = archiveHandle.getInputStream( in getInputStream_tarGzFile_shouldHaveTheSameContent()
503 archiveHandle.getInputStream(null); in getInputStream_tarGzFileNullEntry_getNullInputStream()
525 archiveHandle.getInputStream(archiveEntry); in getInputStream_tarGzFileInvalidEntry_getNullInputStream()
[all …]
DWriteableArchiveTest.java262 final InputStream inputStream = zip.getInputStream(entry); in testAddFile()
291 final InputStream inputStream = zip.getInputStream(entry); in testAddFile_empty()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/
DMailTransport.java143 in = new BufferedInputStream(socket.getInputStream(), 1024); in open()
216 in = new BufferedInputStream(socket.getInputStream(), 1024); in reopenTls()
299 public InputStream getInputStream() { in getInputStream() method in MailTransport
328 InputStream in = getInputStream(); in readLine()
DBody.java23 public InputStream getInputStream() throws MessagingException; in getInputStream() method
DBase64Body.java35 public InputStream getInputStream() throws MessagingException { in getInputStream() method in Base64Body
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DLocalServerSocketTest.java47 InputStream serverInStream = serverSocket.getInputStream(); in testLocalServerSocket()
53 InputStream clientInStream = clientSocket.getInputStream(); in testLocalServerSocket()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
DBinaryTempFileBody.java58 public InputStream getInputStream() throws MessagingException { in getInputStream() method in BinaryTempFileBody
68 InputStream in = getInputStream(); in writeTo()
DTextBody.java51 public InputStream getInputStream() throws MessagingException { in getInputStream() method in TextBody
/packages/services/Car/obd2-lib/src/com/android/car/obd2/connections/
DBluetoothConnection.java103 public InputStream getInputStream() { in getInputStream() method in BluetoothConnection
106 return mSocket.getInputStream(); in getInputStream()
/packages/modules/Connectivity/nearby/tests/robotests/src/com/android/libraries/testing/deviceshadower/shadows/bluetooth/
DShadowBluetoothSocket.java66 public InputStream getInputStream() throws IOException { in getInputStream() method in ShadowBluetoothSocket
68 return socket.getInputStream(); in getInputStream()
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothSocket.java259 bluetoothSocket.mSocketIS = bluetoothSocket.mSocket.getInputStream(); in createSocketFromOpenFd()
297 as.mSocketIS = as.mSocket.getInputStream(); in acceptSocket()
370 public InputStream getInputStream() throws IOException { in getInputStream() method in BluetoothSocket
439 mSocketIS = mSocket.getInputStream(); in connect()
505 mSocketIS = mSocket.getInputStream(); in bindListen()
/packages/apps/Camera2/src/com/android/camera/ui/
DZoomView.java67 InputStream isForDimensions = getInputStream(); in doInBackground()
139 InputStream is = getInputStream(); in doInBackground()
271 private InputStream getInputStream() { in getInputStream() method in ZoomView
/packages/apps/Gallery/src/com/android/camera/gallery/
DUriImage.java53 private InputStream getInputStream() { in getInputStream() method in UriImage
108 return getInputStream(); in fullSizeImageData()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/network/
DBlockingHttpClientTests.java116 when(mMockHttpConnection.getInputStream()).thenReturn(new ByteArrayInputStream(response)); in testSuccess_emptyRequest()
133 when(mMockHttpConnection.getInputStream()).thenReturn(new ByteArrayInputStream(response)); in testSuccess()
/packages/modules/Bluetooth/android/pandora/server/src/com/android/pandora/
DL2cap.kt93 connectionInStreamMap[connection] = bluetoothSocket.getInputStream()!! in acceptL2CAPChannel()
125 connectionInStreamMap[connection] = bluetoothSocket.getInputStream()!! in createLECreditBasedChannel()
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
DTinyPlanetFragment.java262 InputStream is = getInputStream(sourceImageUri); in createPaddedSourceImage()
269 is = getInputStream(sourceImageUri); in createPaddedSourceImage()
432 private InputStream getInputStream(Uri uri) { in getInputStream() method in TinyPlanetFragment
/packages/apps/RemoteProvisioner/src/com/android/remoteprovisioner/
DServerInterface.java98 BufferedInputStream inputStream = new BufferedInputStream(con.getInputStream()); in requestSignedCertificates()
166 BufferedInputStream inputStream = new BufferedInputStream(con.getInputStream()); in fetchGeek()
/packages/services/Car/obd2-lib/src/com/android/car/obd2/
DObd2Connection.java46 InputStream getInputStream(); in getInputStream() method
122 try (InputStream in = Objects.requireNonNull(mConnection.getInputStream())) { in runImpl()
/packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
DHttpFetcher.java77 is = conn.getInputStream(); in sendRequestAsByteArray()
139 InputStream is = httpUrlConnection.getInputStream(); in sendRequestAsInputStream()
/packages/apps/TV/src/com/android/tv/util/images/
DBitmapUtils.java127 inputStream = urlConnection.getInputStream(); in decodeSampledBitmapFromUriString()
149 inputStream = urlConnection.getInputStream(); in decodeSampledBitmapFromUriString()
/packages/modules/adb/fastdeploy/deployagent/src/com/android/fastdeploy/
DDeployAgent.java158 BufferedReader reader = new BufferedReader(new InputStreamReader(p.getInputStream())); in getFilenameFromPackageName()
204 BufferedReader reader = new BufferedReader(new InputStreamReader(p.getInputStream())); in createInstallSession()
/packages/services/Telephony/testapps/TestSliceApp/app/src/main/java/com/google/android/sample/testsliceapp/
DRequestTask.java49 InputStream inputStream = connection.getInputStream(); in httpGet()
/packages/services/Car/tests/obd2_test/src/com/android/car/obd2/test/
DMockObd2UnderlyingTransport.java83 public InputStream getInputStream() { in getInputStream() method in MockObd2UnderlyingTransport
/packages/services/Car/service/src/com/android/car/
DCarBugreportManagerService.java313 new BufferedReader(new InputStreamReader(localSocket.getInputStream()))) { in processBugreportSockets()
347 DataInputStream in = new DataInputStream(localSocket.getInputStream()); in copySocketToPfd()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/network/
DBlockingHttpClient.java92 return responseProcessor.onSuccess(mConnection.getInputStream()); in execute()

1234