Home
last modified time | relevance | path

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

/aosp12/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DCameraBrowser.java45 private List<MtpDevice> mDeviceList; field in CameraBrowser
61 return mDeviceList.size(); in getCount()
65 return mDeviceList.get(position); in getItem()
83 MtpDevice device = mDeviceList.get(position); in getView()
101 mDeviceList = mClient.getDeviceList(); in onCreate()
119 intent.putExtra("device", mDeviceList.get(position).getDeviceName()); in onListItemClick()
129 mDeviceList = mClient.getDeviceList(); in deviceAdded()
135 mDeviceList = mClient.getDeviceList(); in deviceRemoved()
/aosp12/packages/apps/Car/Dialer/framework/fake/src/com/android/car/dialer/framework/
H A DFakeHfpManager.java44 private List<BluetoothDevice> mDeviceList; field in FakeHfpManager
58 mDeviceList = new ArrayList<>(); in FakeHfpManager()
61 mHfpDeviceListLiveData = new MutableLiveData<>(mDeviceList); in FakeHfpManager()
72 mDeviceList.add(0, device.getBluetoothDevice()); in connectHfpDevice()
73 mHfpDeviceListLiveData.postValue(mDeviceList); in connectHfpDevice()
85 mDeviceList.remove(simulatedBluetoothDevice.getBluetoothDevice()); in disconnectHfpDevice()
87 mHfpDeviceListLiveData.postValue(mDeviceList); in disconnectHfpDevice()
/aosp12/hardware/qcom/audio/legacy/alsa_sound/
H A DAudioHardwareALSA.cpp219 mDeviceList.erase(it); in ~AudioHardwareALSA()
655 for(it = mDeviceList.begin(); it != mDeviceList.end(); ++it) { in doRouting()
749 for(it = mDeviceList.begin(); in openOutputStream()
797 it = mDeviceList.end(); in openOutputStream()
951 mDeviceList.push_back(alsa_handle); in openOutputStream()
1044 mDeviceList.push_back(alsa_handle); in openOutputSession()
1117 for(it = mDeviceList.begin(); in openInputStream()
1164 it = mDeviceList.end(); in openInputStream()
1492 mDeviceList.erase(it); in handleFm()
1515 mDeviceList.erase(it); in disableVoiceCall()
[all …]
H A DALSAStreamOps.cpp72 for(ALSAHandleList::iterator it = mParent->mDeviceList.begin(); in ~ALSAStreamOps()
73 it != mParent->mDeviceList.end(); ++it) { in ~ALSAStreamOps()
76 mParent->mDeviceList.erase(it); in ~ALSAStreamOps()
H A DAudioHardwareALSA.h557 ALSAHandleList mDeviceList; variable
/aosp12/packages/services/Car/car-usb-handler/src/android/car/usb/handler/
H A DBootUsbService.java43 private ArrayList<UsbDevice> mDeviceList; field in BootUsbService
70 mDeviceList = intent.getParcelableArrayListExtra(USB_DEVICE_LIST_KEY); in onStartCommand()
76 for (UsbDevice device : mDeviceList) { in processDevices()