Home
last modified time | relevance | path

Searched refs:sendFileInfo (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppManager.java272 BluetoothOppSendFileInfo sendFileInfo = in saveSendingFileInfo() local
275 uri = BluetoothOppUtility.generateUri(uri, sendFileInfo); in saveSendingFileInfo()
276 BluetoothOppUtility.putSendFileInfo(uri, sendFileInfo); in saveSendingFileInfo()
291 BluetoothOppSendFileInfo sendFileInfo = in saveSendingFileInfo() local
294 uri = BluetoothOppUtility.generateUri(uri, sendFileInfo); in saveSendingFileInfo()
296 BluetoothOppUtility.putSendFileInfo(uri, sendFileInfo); in saveSendingFileInfo()
DBluetoothOppUtility.java445 static Uri generateUri(Uri uri, BluetoothOppSendFileInfo sendFileInfo) { in generateUri() argument
446 String fileInfo = sendFileInfo.toString(); in generateUri()
454 static void putSendFileInfo(Uri uri, BluetoothOppSendFileInfo sendFileInfo) { in putSendFileInfo() argument
455 Log.d(TAG, "putSendFileInfo: uri=" + uri + " sendFileInfo=" + sendFileInfo); in putSendFileInfo()
456 if (sendFileInfo == BluetoothOppSendFileInfo.SEND_FILE_INFO_ERROR) { in putSendFileInfo()
464 sSendFileMap.put(uri, sendFileInfo); in putSendFileInfo()
DBluetoothOppLauncherActivity.java133 sendFileInfo( in onCreate()
159 sendFileInfo( in onCreate()
490 void sendFileInfo(String mimeType, String uriString, boolean isHandover, boolean fromExternal) { in sendFileInfo() method in BluetoothOppLauncherActivity
DBluetoothOppService.java903 BluetoothOppSendFileInfo sendFileInfo = in insertShare() local
905 if (sendFileInfo == null || sendFileInfo.mInputStream == null) { in insertShare()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/opp/
DBluetoothOppObexClientSessionTest.java121 BluetoothOppSendFileInfo sendFileInfo = in startThenStop_startsAndStopsClientThread() local
124 BluetoothOppUtility.putSendFileInfo(uri, sendFileInfo); in startThenStop_startsAndStopsClientThread()
189 BluetoothOppSendFileInfo sendFileInfo = in clientThreadSendFile_clientSessionDisconnected_returnsObexDataError() local
204 assertThat(thread.sendFile(sendFileInfo)).isEqualTo(BluetoothShare.STATUS_OBEX_DATA_ERROR); in clientThreadSendFile_clientSessionDisconnected_returnsObexDataError()
DBluetoothOppLauncherActivityTest.java210 activity.sendFileInfo("text/plain", "content:///abc.txt", false, false); in sendFileInfo_finishImmediately()