Home
last modified time | relevance | path

Searched refs:socketInfo (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothAdapter.java3310 IncomingRfcommSocketInfo socketInfo; in retrieveConnectedRfcommSocket() local
3317 socketInfo = recv.awaitResultNoInterrupt(getSyncTimeout()).getValue(null); in retrieveConnectedRfcommSocket()
3322 if (socketInfo == null) { in retrieveConnectedRfcommSocket()
3326 switch (socketInfo.status) { in retrieveConnectedRfcommSocket()
3330 socketInfo.pfd, in retrieveConnectedRfcommSocket()
3331 socketInfo.bluetoothDevice, in retrieveConnectedRfcommSocket()
3348 socketInfo.status)); in retrieveConnectedRfcommSocket()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/
DAdapterService.java1393 IncomingRfcommSocketInfo socketInfo = new IncomingRfcommSocketInfo(); in retrievePendingSocketForServiceRecord() local
1398 socketInfo.status = in retrievePendingSocketForServiceRecord()
1401 return socketInfo; in retrievePendingSocketForServiceRecord()
1405 socketInfo.status = BluetoothStatusCodes.RFCOMM_LISTENER_OPERATION_FAILED_DIFFERENT_APP; in retrievePendingSocketForServiceRecord()
1406 return socketInfo; in retrievePendingSocketForServiceRecord()
1412 socketInfo.status = BluetoothStatusCodes.RFCOMM_LISTENER_NO_SOCKET_AVAILABLE; in retrievePendingSocketForServiceRecord()
1413 return socketInfo; in retrievePendingSocketForServiceRecord()
1418 socketInfo.bluetoothDevice = socket.getRemoteDevice(); in retrievePendingSocketForServiceRecord()
1419 socketInfo.pfd = socket.getParcelFileDescriptor(); in retrievePendingSocketForServiceRecord()
1420 socketInfo.status = BluetoothStatusCodes.SUCCESS; in retrievePendingSocketForServiceRecord()
[all …]
/packages/modules/Connectivity/framework/src/android/net/
DIConnectivityManager.aidl221 void registerQosSocketCallback(in QosSocketInfo socketInfo, in IQosCallback callback); in registerQosSocketCallback() argument
DConnectivityManager.java5461 public void registerQosCallback(@NonNull final QosSocketInfo socketInfo, in registerQosCallback() argument
5464 Objects.requireNonNull(socketInfo, "socketInfo must be non-null"); in registerQosCallback()
5474 mService.registerQosSocketCallback(socketInfo, connection); in registerQosCallback()
/packages/modules/Connectivity/service/src/com/android/server/
DConnectivityService.java10627 public void registerQosSocketCallback(@NonNull final QosSocketInfo socketInfo,
10629 final NetworkAgentInfo nai = getNetworkAgentInfoForNetwork(socketInfo.getNetwork());
10638 registerQosCallbackInternal(new QosSocketFilter(socketInfo), callback, nai);