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 D | BluetoothDeviceController.ts | 31 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 D | pairedDevices.ets | 23 * pairedDevices page of bluetooth test 32 @StorageLink('pairedDevices') pairedDevices: string[] = []; 63 ForEach(this.pairedDevices , (item: string) => {
|
H A D | deviceFound.ets | 145 @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 D | pairedDevices.ets | 24 struct pairedDevices { 28 @StorageLink('pairedDevices') pairedDevices: string[] = []; 60 ForEach(this.pairedDevices , (item: string) => {
|
H A D | deviceFound.ets | 138 @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 D | oppRecvScenarioTest.ets | 40 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 D | btm_le_sec.c | 262 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 D | bluetooth_host.h | 658 … int32_t GetPairedDevices(int transport, std::vector<BluetoothRemoteDevice> &pairedDevices) const;
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/include/ |
H A D | btm.h | 566 void BTSTACK_API BTM_SetLePairedDevices(const BtmLePairedDevice *pairedDevices, uint16_t count);
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_host.cpp | 1051 …toothHost::GetPairedDevices(int transport, std::vector<BluetoothRemoteDevice> &pairedDevices) const in GetPairedDevices() 1064 pairedDevices.emplace_back(device); in GetPairedDevices()
|