HomeSort by relevance Sort by last modified time
    Searched refs:isServer (Results 1 - 25 of 28) sorted by null

1 2

  /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 150 private ScanClient getScanClient(int appIf, boolean isServer) {
152 if (client.appIf == appIf && client.isServer == isServer) {
159 private void removeScanClient(int appIf, boolean isServer) {
161 if (client.appIf == appIf && client.isServer == isServer) {
292 public void startScan(int appIf, boolean isServer) {
295 service.startScan(appIf, isServer);
298 public void startScanWithUuids(int appIf, boolean isServer, ParcelUuid[] ids) {
305 service.startScanWithUuids(appIf, isServer, uuids)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
nssstreamadapter.h 114 PRBool checksig, PRBool isServer);
nssstreamadapter.cc 781 PRBool isServer) {
  /external/nist-sip/java/javax/sip/
Dialog.java 57 boolean isServer();
  /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/chromium_org/net/third_party/nss/ssl/
sslauth.c 282 SSL_AuthCertificate(void *arg, PRFileDesc *fd, PRBool checkSig, PRBool isServer)
308 certUsage = isServer ? certUsageSSLClient : certUsageSSLServer;
313 if ( rv != SECSuccess || isServer )
ssl3ext.c 346 if (!ss->sec.isServer) {
375 if (!ss->sec.isServer) {
404 if (!ss->sec.isServer) {
518 if (!ss->sec.isServer) {
551 if (!ss->sec.isServer) {
    [all...]
ssl3con.c 724 PRBool isServer;
735 isServer = (PRBool)(ss->sec.isServer != 0);
    [all...]
ssl.h 538 PRBool isServer);
546 PRBool checkSig, PRBool isServer);
    [all...]
sslsecur.c 945 ss->sec.isServer = os->sec.isServer;
    [all...]
sslnonce.c 394 if (sec->isServer) {
ssl3ecc.c     [all...]
sslinfo.c 311 if (ss->sec.isServer) {
sslimpl.h     [all...]
dtlscon.c 803 rv = ssl3_CompressMACEncryptRecord(cwSpec, ss->sec.isServer, PR_TRUE,
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
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/chromium_org/third_party/libjingle/source/talk/xmpp/
chatroommoduleimpl.cc 85 XmppReturnStatus ChangePresence(XmppChatroomState new_state, const XmlElement* presence, bool isServer);
547 bool isServer) {
572 if (isServer) {
  /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...]

Completed in 2149 milliseconds

1 2