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

1 2

  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ScanClient.java 34 boolean isServer;
45 ScanClient(int appIf, boolean isServer) {
46 this(appIf, isServer, new UUID[0], DEFAULT_SCAN_SETTINGS, null, null);
49 ScanClient(int appIf, boolean isServer, UUID[] uuids) {
50 this(appIf, isServer, uuids, DEFAULT_SCAN_SETTINGS, null, null);
53 ScanClient(int appIf, boolean isServer, ScanSettings settings,
55 this(appIf, isServer, new UUID[0], settings, filters, null);
58 ScanClient(int appIf, boolean isServer, ScanSettings settings,
60 this(appIf, isServer, new UUID[0], settings, filters, storages);
63 private ScanClient(int appIf, boolean isServer, UUID[] uuids, ScanSettings settings
    [all...]
GattService.java 306 public void startScan(int appIf, boolean isServer, ScanSettings settings,
310 service.startScan(appIf, isServer, settings, filters, storages);
313 public void stopScan(int appIf, boolean isServer) {
316 service.stopScan(new ScanClient(appIf, isServer));
320 public void flushPendingBatchResults(int appIf, boolean isServer) {
323 service.flushPendingBatchResults(appIf, isServer);
575 if (!client.isServer) {
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
PairingContext.java 65 * @param isServer {@code true} if this endpoint it the server
69 OutputStream peerOutputStream, boolean isServer) {
74 mIsServer = isServer;
81 * @param isServer {@code true} if this endpoint is the server
86 public static PairingContext fromSslSocket(SSLSocket socket, boolean isServer)
92 return new PairingContext(localCert, peerCert, input, output, isServer);
100 if (isServer()) {
112 if (isServer()) {
135 public boolean isServer() {
140 return !(isServer());
    [all...]
PairingSession.java 226 if (mPairingContext.isServer()) {
371 if (mPairingContext.isServer()) {
602 if (!mPairingContext.isServer()) {
  /external/chromium_org/third_party/webrtc/base/
nssstreamadapter.h 95 PRBool checksig, PRBool isServer);
nssstreamadapter.cc 769 PRBool isServer) {
  /external/nist-sip/java/javax/sip/
Dialog.java 57 boolean isServer();
  /frameworks/base/core/java/android/bluetooth/
IBluetoothGatt.aidl 37 void startScan(in int appIf, in boolean isServer, in ScanSettings settings,
40 void stopScan(in int appIf, in boolean isServer);
41 void flushPendingBatchResults(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)
313 certUsage = isServer ? certUsageSSLClient : certUsageSSLServer;
318 if ( rv != SECSuccess || isServer )
ssl3ext.c 349 if (!ss->sec.isServer) {
378 if (!ss->sec.isServer) {
407 if (!ss->sec.isServer) {
522 if (!ss->sec.isServer) {
563 if (!ss->sec.isServer) {
    [all...]
ssl3con.c     [all...]
ssl.h 558 PRBool isServer);
566 PRBool checkSig, PRBool isServer);
    [all...]
sslsecur.c 945 ss->sec.isServer = os->sec.isServer;
    [all...]
sslnonce.c 399 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...]
sslcon.c     [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionImplTest.java 48 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);
544 bool isServer) {
569 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 593 milliseconds

1 2