Home
last modified time | relevance | path

Searched refs:pairedDevices (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/MainAbility/controller/
H A DBluetoothDeviceController.ts31 private pairedDevices: BluetoothDevice[] = [];
210 this.pairedDevices = list;
211 AppStorage.setOrCreate('bluetoothPairedDevices', this.pairedDevices);
308 for(let device of this.pairedDevices) {
311 this.forceRefresh(this.pairedDevices);
312 AppStorage.setOrCreate('bluetoothPairedDevices', this.pairedDevices);
317 …his.TAG + 'device connection state changed. pairedDevices = ' + JSON.stringify(this.pairedDevices))
/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTest/subBrTest/
H A DpairedDevices.ets23 * pairedDevices page of bluetooth test
32 @StorageLink('pairedDevices') pairedDevices: string[] = [];
63 ForEach(this.pairedDevices , (item: string) => {
H A DdeviceFound.ets145 @StorageLink('bluetoothPairedDevices') pairedDevices: BluetoothDevice[] = [];
154 .bindProperties([ "pairedDevices" ])
161 if ( this.pairedDevices && this.pairedDevices.length > 0 ) {
177 ForEach(this.pairedDevices , (item: BluetoothDevice , index: number) => {
/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTestManager/subBrTestManager/
H A DpairedDevices.ets24 struct pairedDevices {
28 @StorageLink('pairedDevices') pairedDevices: string[] = [];
60 ForEach(this.pairedDevices , (item: string) => {
H A DdeviceFound.ets138 @StorageLink('bluetoothPairedDevices') pairedDevices: BluetoothDevice[] = [];
147 .bindProperties([ "pairedDevices" ])
154 if ( this.pairedDevices && this.pairedDevices.length > 0 ) {
170 ForEach(this.pairedDevices , (item: BluetoothDevice , index: number) => {
/ohos5.0/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subScenarioTest/
H A DoppRecvScenarioTest.ets40 private pairedDevices: PairDevices[] = [];
83 this.pairedDevices.push({ id : macs[ i ] , name : name });
85 console.log("OppRecv getPairDevice pairedDevices: " + JSON.stringify(this.pairedDevices));
122 ForEach(this.pairedDevices , (item: PairDevices) => {
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/btm/
H A Dbtm_le_sec.c262 void BTM_SetLePairedDevices(const BtmLePairedDevice *pairedDevices, uint16_t count) in BTM_SetLePairedDevices() argument
281 block = BtmAllocLePairedDeviceBlock(pairedDevices + i); in BTM_SetLePairedDevices()
294 BtmAddToResolvingList(pairedDevices + i); in BTM_SetLePairedDevices()
299 BtmSetPrivacyMode(pairedDevices + i); in BTM_SetLePairedDevices()
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_host.h658 … int32_t GetPairedDevices(int transport, std::vector<BluetoothRemoteDevice> &pairedDevices) const;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/include/
H A Dbtm.h566 void BTSTACK_API BTM_SetLePairedDevices(const BtmLePairedDevice *pairedDevices, uint16_t count);
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_host.cpp1051 …toothHost::GetPairedDevices(int transport, std::vector<BluetoothRemoteDevice> &pairedDevices) const in GetPairedDevices()
1064 pairedDevices.emplace_back(device); in GetPairedDevices()