/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
ScanClient.java | 27 boolean isServer; 30 ScanClient(int appIf, boolean isServer) { 32 this.isServer = isServer; 36 ScanClient(int appIf, boolean isServer, UUID[] uuids) { 38 this.isServer = isServer;
|
GattService.java | 118 private ScanClient getScanClient(int appIf, boolean isServer) { 120 if (client.appIf == appIf && client.isServer == isServer) { 127 private void removeScanClient(int appIf, boolean isServer) { 129 if (client.appIf == appIf && client.isServer == isServer) { 255 public void startScan(int appIf, boolean isServer) { 258 service.startScan(appIf, isServer); 261 public void startScanWithUuids(int appIf, boolean isServer, ParcelUuid[] ids) { 268 service.startScanWithUuids(appIf, isServer, uuids) [all...] |
/frameworks/base/core/java/android/bluetooth/ |
IBluetoothGatt.aidl | 32 void startScan(in int appIf, in boolean isServer); 33 void startScanWithUuids(in int appIf, in boolean isServer, in ParcelUuid[] ids); 34 void stopScan(in int appIf, in boolean isServer);
|
/external/nist-sip/java/javax/sip/ |
Dialog.java | 57 boolean isServer();
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
SSLSessionImpl.java | 60 final boolean isServer; 72 isServer = false; 83 isServer = true;
|
ConnectionStateSSLv3.java | 104 boolean is_client = !session.isServer;
|
ConnectionStateTLS.java | 127 boolean is_client = !session.isServer;
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
SSLSessionImplTest.java | 49 assertTrue("Incorrect isServer", session.isServer);
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
SIPResponse.java | 555 * @param isServer is set to true if this is the UAS 558 public String getDialogId(boolean isServer) { 563 if (!isServer) { 589 public String getDialogId(boolean isServer, String toTag) { 593 if (!isServer) {
|
SIPRequest.java | 548 * @param isServer is set to true if this is the UAS and set to false if this is the UAC 550 public String getDialogId(boolean isServer) { 555 if (!isServer) { 585 public String getDialogId(boolean isServer, String toTag) { 589 if (!isServer) { [all...] |
/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
Connection.cpp | 195 Connection::Connection(Identifier identifier, bool isServer, Client* client, RunLoop* clientRunLoop) 197 , m_isServer(isServer)
|
Connection.h | 192 Connection(Identifier, bool isServer, Client*, RunLoop* clientRunLoop);
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
SIPDialog.java | 720 if (!isServer()) { [all...] |
SIPTransactionStack.java | 901 * @param isServer search the server transaction table if true. 906 public SIPTransaction findTransaction(SIPMessage sipMessage, boolean isServer) { 909 if (isServer) { [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ecf_3.1.0.v20100529-0735.jar | |
org.apache.commons.httpclient_3.1.0.v201005080502.jar | |