|
||
class TBTRegistrySearch;
Set search criteria on the Bluetooth Registry.
The search logic is "AND", so if device bonded is set, and code set to headsets the search results contain all the bonded headsets in the registry.
Other things can be added to the search criteria e.g. recently used headsets can easil be found by adding in the LastUsed criterion.
Defined in TBTRegistrySearch
:
FindAddress(const TBTDevAddr &)
Add search criterion to search for given device FindAll()
Add search criterion to search for finding all devices FindBluetoothName(const TDesC8 &)
Add search criteria of specific Bluetooth name FindBonded()
Add search criterion for bonded devices FindCoD(const TBTDeviceClass &)
Add search criterion to search for specific CoD FindCoD(const TBTDeviceClass &,TBTDeviceClassSearch)
Add search criterion to search for certain classes of device FindCurrentProcessOwned()
Add search criterion to search for devices added by the current process FindFriendlyName(const TDesC &)
Add search criterion to search for devices with some friendly name FindSinceSeen(const TTime &)
Add search criterion to search for devices seen since given date NOTE not curren...FindSinceUsed(const TTime &)
Add search criterion to search for devices used since given date FindTrusted()
Add search criterion for trusted devices Reset()
Resets the search criteria TBTRegistrySearch()
Default constructor TBTRegistrySearch(const TBTRegistrySearch &)
Copy Constructor operator=(const TBTRegistrySearch &)
Assignment operator IMPORT_C TBTRegistrySearch(const TBTRegistrySearch &aSearch);
Copy Constructor
|
IMPORT_C void FindAddress(const TBTDevAddr &aAddress);
Add search criterion to search for given device
|
IMPORT_C void FindCoD(const TBTDeviceClass &aClass);
Add search criterion to search for specific CoD
|
TBTDeviceClass
Encapsulation of device class definitions.IMPORT_C void FindCoD(const TBTDeviceClass &aClass, TBTDeviceClassSearch aPref);
Add search criterion to search for certain classes of device
|
TBTDeviceClass
Encapsulation of device class definitions.TBTDeviceClassSearch
The type of device class search to perform.IMPORT_C void FindSinceSeen(const TTime &aLastSeen);
Add search criterion to search for devices seen since given date NOTE not currently implemented
|
IMPORT_C void FindSinceUsed(const TTime &aLastUsed);
Add search criterion to search for devices used since given date
|
IMPORT_C void FindBluetoothName(const TDesC8 &aName);
Add search criteria of specific Bluetooth name
|
IMPORT_C void FindFriendlyName(const TDesC &aName);
Add search criterion to search for devices with some friendly name
|
IMPORT_C void FindCurrentProcessOwned();
Add search criterion to search for devices added by the current process
IMPORT_C TBTRegistrySearch& operator=(const TBTRegistrySearch &aSearch);
Assignment operator
|
|