OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScanClient
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ScanClient.java
32
/* package */class
ScanClient
{
47
ScanClient
(int appIf, boolean isServer) {
51
ScanClient
(int appIf, boolean isServer, UUID[] uuids) {
55
ScanClient
(int appIf, boolean isServer, ScanSettings settings,
60
ScanClient
(int appIf, boolean isServer, ScanSettings settings,
65
private
ScanClient
(int appIf, boolean isServer, UUID[] uuids, ScanSettings settings,
83
ScanClient
other = (
ScanClient
) obj;
ScanManager.java
85
private Set<
ScanClient
> mRegularScanClients;
86
private Set<
ScanClient
> mBatchClients;
91
mRegularScanClients = new HashSet<
ScanClient
>();
92
mBatchClients = new HashSet<
ScanClient
>();
113
Set<
ScanClient
> getRegularScanQueue() {
120
Set<
ScanClient
> getBatchScanQueue() {
127
Set<
ScanClient
> getFullBatchScanQueue() {
130
Set<
ScanClient
> fullBatchClients = new HashSet<
ScanClient
>();
131
for (
ScanClient
client : mBatchClients)
[
all
...]
GattService.java
234
ScanClient
client = new
ScanClient
(mAppIf, false);
245
for (
ScanClient
client : mScanManager.getRegularScanQueue()) {
250
for (
ScanClient
client : mScanManager.getBatchScanQueue()) {
322
service.stopScan(new
ScanClient
(appIf, isServer));
587
for (
ScanClient
client : mScanManager.getRegularScanQueue()) {
641
private boolean hasScanResultPermission(final
ScanClient
client) {
653
private boolean matchesFilters(
ScanClient
client, ScanResult scanResult) {
[
all
...]
Completed in 243 milliseconds