OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:serverIf
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
HandleMap.java
36
int
serverIf
= 0;
47
Entry(int
serverIf
, int handle, UUID uuid, int serviceType, int instance) {
48
this.
serverIf
=
serverIf
;
56
Entry(int
serverIf
, int handle, UUID uuid, int serviceType, int instance,
58
this.
serverIf
=
serverIf
;
67
Entry(int
serverIf
, int type, int handle, UUID uuid, int serviceHandle) {
68
this.
serverIf
=
serverIf
;
[
all
...]
GattService.java
424
public void unregisterServer(int
serverIf
) {
427
service.unregisterServer(
serverIf
);
430
public void serverConnect(int
serverIf
, String address, boolean isDirect) {
433
service.serverConnect(
serverIf
, address, isDirect);
436
public void serverDisconnect(int
serverIf
, String address) {
439
service.serverDisconnect(
serverIf
, address);
442
public void beginServiceDeclaration(int
serverIf
, int srvcType,
447
service.beginServiceDeclaration(
serverIf
, srvcType, srvcInstanceId,
451
public void addIncludedService(int
serverIf
, int srvcType,
455
service.addIncludedService(
serverIf
, srvcType, srvcInstanceId
[
all
...]
/frameworks/base/core/java/android/bluetooth/
IBluetoothGatt.aidl
78
void unregisterServer(in int
serverIf
);
80
void serverDisconnect(in int
serverIf
, in String address);
81
void beginServiceDeclaration(in int
serverIf
, in int srvcType,
84
void addIncludedService(in int
serverIf
, in int srvcType,
86
void addCharacteristic(in int
serverIf
, in ParcelUuid charId,
88
void addDescriptor(in int
serverIf
, in ParcelUuid descId,
90
void endServiceDeclaration(in int
serverIf
);
91
void removeService(in int
serverIf
, in int srvcType,
93
void clearServices(in int
serverIf
);
94
void sendResponse(in int
serverIf
, in String address, in int requestId
[
all
...]
IBluetoothGattServerCallback.aidl
26
void onServerRegistered(in int status, in int
serverIf
);
28
void onServerConnectionState(in int status, in int
serverIf
,
BluetoothGattServer.java
75
public void onServerRegistered(int status, int
serverIf
) {
77
+ "
serverIf
=" +
serverIf
);
80
mServerIf =
serverIf
;
102
public void onServerConnectionState(int status, int
serverIf
,
105
+ "
serverIf
=" +
serverIf
+ " device=" + address);
/packages/apps/Bluetooth/jni/
com_android_bluetooth_gatt.cpp
[
all
...]
Completed in 725 milliseconds