/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/obex/ |
D | FakeObexServer.java | 142 outStream = op.openOutputStream(); in sendResponse() 197 return new DataOutputStream(openOutputStream()); in openDataOutputStream() 206 public OutputStream openOutputStream() throws IOException { in openOutputStream() method in FakeObexServer.TestObexTransport
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbapclient/obex/ |
D | PbapClientObexTransport.java | 55 return new DataOutputStream(openOutputStream()); in openDataOutputStream() 64 public OutputStream openOutputStream() throws IOException { in openOutputStream() method in PbapClientObexTransport
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/ |
D | BluetoothObexTransport.java | 63 return new DataOutputStream(openOutputStream()); in openDataOutputStream() 72 public OutputStream openOutputStream() throws IOException { in openOutputStream() method in BluetoothObexTransport
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/opp/ |
D | BluetoothOppObexClientSessionTest.java | 88 doReturn(output).when(mTransport).openOutputStream(); in setUp() 135 doThrow(new IOException()).when(mTransport).openOutputStream(); in startThenStop_startsAndStopsClientThread() 205 doReturn(os).when(mTransport).openOutputStream(); in clientThreadSendFile_clientSessionDisconnected_returnsObexDataError()
|
D | TestActivity.java | 664 return new DataOutputStream(openOutputStream()); in openDataOutputStream() 673 public OutputStream openOutputStream() throws IOException { in openOutputStream() method in TestTcpTransport
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/pbap/ |
D | HandlerForStringBufferTest.java | 56 when(mOperation.openOutputStream()).thenReturn(mOutputStream); in setUp() 79 doThrow(new IOException()).when(mOperation).openOutputStream(); in init_withIOExceptionWhenOpeningOutputStream_returnsFalse()
|
D | BluetoothPbapObexServerTest.java | 461 when(operation.openOutputStream()).thenReturn(outputStream); in testOnGet_whenNameIsNotSet_andTypeIsListing_success() 493 when(operation.openOutputStream()).thenReturn(outputStream); in testOnGet_whenNameIsNotSet_andTypeIsPb_success() 559 when(operation.openOutputStream()).thenReturn(outputStream); in testOnGet_whenNameIsSet_andTypeIsListing_success() 591 when(operation.openOutputStream()).thenReturn(outputStream); in testOnGet_whenNameIsSet_andTypeIsPb_success() 747 when(op.openOutputStream()).thenReturn(os); in pushHeader_returnsObexHttpOk() 759 when(op.openOutputStream()).thenThrow(new IOException()); in pushHeader_withExceptionWhenOpeningOutputStream_returnsObexHttpInternalError() 771 when(op.openOutputStream()).thenReturn(os); in pushHeader_withExceptionWhenClosingOutputStream_returnsObexHttpInternalError()
|
D | BluetoothPbapSimVcardManagerTest.java | 474 when(operation.openOutputStream()).thenReturn(outputStream); in testComposeAndSendSIMPhonebookVcards_success() 517 when(operation.openOutputStream()).thenReturn(outputStream); in testComposeAndSendSIMPhonebookOneVcard_success()
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/mapclient/ |
D | RequestTest.java | 196 outputStream = op.openOutputStream(); in onGet() 206 outputStream = op.openOutputStream(); in onGet()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbap/ |
D | HandlerForStringBuffer.java | 48 mOutputStream = mOperation.openOutputStream(); in init()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/soap/ |
D | HttpsServiceConnection.java | 106 public OutputStream openOutputStream() throws IOException { in openOutputStream() method in HttpsServiceConnection
|
/packages/apps/AvatarPicker/src/main/java/com/android/avatarpicker/ui/details/items/media/ |
D | PhotoPickerIcon.kt | 59 contentResolver.openOutputStream(contentUri)?.use { outputStream -> in <lambda>()
|
/packages/apps/Dialer/java/com/android/voicemail/impl/fetch/ |
D | VoicemailFetchedCallback.java | 81 outputStream = contentResolver.openOutputStream(uri); in setVoicemailContent()
|
/packages/apps/Camera2/src/com/android/camera/captureintent/state/ |
D | StateSavingPicture.java | 85 .openOutputStream(saveUri.get()); in onEnter()
|
/packages/providers/MediaProvider/tests/client/src/com/android/providers/media/client/ |
D | PublicVolumeTest.java | 82 try (OutputStream out = contentResolver.openOutputStream(targetUri)) { in testIncludeRecentlyUnmountedVolumes()
|
D | DelegatorTest.java | 122 try (OutputStream out = mResolver.openOutputStream(uri)) { in createAudio()
|
D | PublicVolumePlaylistTest.java | 102 try (OutputStream out = contentResolver.openOutputStream(audioUri)) { in testEjectedVolume()
|
/packages/apps/TvFeedbackConsent/src/com/android/tv/feedbackconsent/ |
D | TvFeedbackBugreportHelper.java | 145 .openOutputStream(bugreportUri, "w")) { in copyBugreportToUri()
|
/packages/modules/Permission/tests/cts/permissionui/src/android/permissionui/cts/ |
D | PhotoPickerUtils.kt | 128 session.openOutputStream().use { target -> FileUtils.copy(source, target) } in <lambda>()
|
/packages/apps/PrivateSpace/src/com/android/privatespace/filetransfer/ |
D | FileTransferManagerImpl.kt | 163 contentResolver.openOutputStream(destinationUri)?.use { outputStream -> in <lambda>()
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
D | ImagePersistTask.java | 79 mContext.getContentResolver().openOutputStream(mOutputUri); in doInBackgroundTimed()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/ |
D | HttpsServiceConnectionTest.java | 163 assertEquals(testOutputStream, mHttpsServiceConnection.openOutputStream()); in verifyOpenOutputStream()
|
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/ |
D | ReadWriteDraftMessageActionTest.java | 347 outputStream = mContext.getContentResolver().openOutputStream(mOutputUri); in testBugleDatabaseDraftOperations() 393 outputStream = mContext.getContentResolver().openOutputStream(mAnotherUri); in testBugleDatabaseDraftOperations()
|
/packages/apps/TV/src/com/android/tv/data/ |
D | ChannelLogoFetcher.java | 157 try (OutputStream os = mContext.getContentResolver().openOutputStream(dstLogoUri)) { in doInBackground()
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/pbapclient/ |
D | PbapClientObexTransportTest.java | 110 OutputStream out = transport.openOutputStream(); in testOpenOutputStream_containsSocketStream()
|