HomeSort by relevance Sort by last modified time
    Searched full:discoverysession (Results 1 - 20 of 20) sorted by null

  /frameworks/base/wifi/java/android/net/wifi/aware/
PeerHandle.java 23 * used when sending messages e,g, {@link DiscoverySession#sendMessage(PeerHandle, int, byte[])},
25 * {@link DiscoverySession#createNetworkSpecifierOpen(PeerHandle)} or
26 * {@link DiscoverySession#createNetworkSpecifierPassphrase(PeerHandle, String)}.
31 * {@link DiscoverySession#sendMessage(PeerHandle, int, byte[])}, and/or in the Publish
PublishDiscoverySession.java 27 * baseline functionality of all discovery sessions in {@link DiscoverySession}. This
31 public class PublishDiscoverySession extends DiscoverySession {
SubscribeDiscoverySession.java 28 * See baseline functionality of all discovery sessions in {@link DiscoverySession}.
32 public class SubscribeDiscoverySession extends DiscoverySession {
DiscoverySessionCallback.java 87 * to user-request (either directly through {@link DiscoverySession#close()} or
153 * {@link DiscoverySession#sendMessage(PeerHandle, int, byte[])}
169 * {@link DiscoverySession#sendMessage(PeerHandle, int, byte[])} fails. E.g. when no ACK is
184 * peer's {@link DiscoverySession#sendMessage(PeerHandle, int, byte[])}.
WifiAwareManager.java 61 * {@link DiscoverySession#createNetworkSpecifierOpen(PeerHandle)},
62 * {@link DiscoverySession#createNetworkSpecifierPassphrase(PeerHandle, String)},
101 * {@link DiscoverySession#sendMessage(PeerHandle, int, byte[])} APIs. When an
103 * {@link DiscoverySession#close()} API.
115 * {@link DiscoverySession#createNetworkSpecifierOpen(PeerHandle)}, or
116 * {@link DiscoverySession#createNetworkSpecifierPassphrase(PeerHandle, String)}.
148 * @see DiscoverySession#createNetworkSpecifierOpen(PeerHandle)
149 * @see DiscoverySession#createNetworkSpecifierPassphrase(PeerHandle, String)
159 * @see DiscoverySession#createNetworkSpecifierOpen(PeerHandle)
160 * @see DiscoverySession#createNetworkSpecifierPassphrase(PeerHandle, String
    [all...]
WifiAwareSession.java 133 * An application must use the {@link DiscoverySession#close()} to
179 * An application must use the {@link DiscoverySession#close()} to
216 * {@link DiscoverySession#createNetworkSpecifierOpen(PeerHandle)}.
257 * {@link DiscoverySession#createNetworkSpecifierPassphrase(PeerHandle, String)}.
303 * {@link DiscoverySession#createNetworkSpecifierPassphrase(PeerHandle, String)}.
Characteristics.java 59 * {@link DiscoverySession#sendMessage(PeerHandle, int, byte[])}
DiscoverySession.java 45 public class DiscoverySession implements AutoCloseable {
46 private static final String TAG = "DiscoverySession";
76 public DiscoverySession(WifiAwareManager manager, int clientId, int sessionId) {
WifiAwareNetworkSpecifier.java 31 * {@link DiscoverySession#createNetworkSpecifierOpen(PeerHandle)} or their secure (Passphrase)
PublishConfig.java 329 * Session will be terminated when {@link DiscoverySession#close()} is
SubscribeConfig.java 384 * Session will be terminated when {@link DiscoverySession#close()} is
  /cts/tests/tests/net/src/android/net/wifi/aware/cts/
SingleDeviceTest.java 522 PublishDiscoverySession discoverySession = discoveryCb.getPublishDiscoverySession();
523 assertNotNull("Publish session", discoverySession);
528 discoverySession.updatePublish(publishConfig);
535 discoverySession.close();
538 discoverySession.updatePublish(publishConfig);
567 PublishDiscoverySession discoverySession = discoveryCb.getPublishDiscoverySession();
568 assertNotNull("Publish session", discoverySession);
578 discoverySession.updatePublish(publishConfig);
606 SubscribeDiscoverySession discoverySession = discoveryCb.getSubscribeDiscoverySession();
607 assertNotNull("Subscribe session", discoverySession);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/testcase/
DataPathOutOfBandTestCase.java 25 import android.net.wifi.aware.DiscoverySession;
96 private DiscoverySession mWifiAwareDiscoverySession;
208 PublishDiscoverySession discoverySession = callbackData.publishDiscoverySession;
209 mWifiAwareDiscoverySession = discoverySession;
210 if (discoverySession == null) {
245 discoverySession.sendMessage(peerHandle, MESSAGE_ID, mDiscoveryMac);
270 discoverySession.close();
325 SubscribeDiscoverySession discoverySession = callbackData.subscribeDiscoverySession;
326 mWifiAwareDiscoverySession = discoverySession;
327 if (discoverySession == null)
    [all...]
DiscoveryBaseTestCase.java 21 import android.net.wifi.aware.DiscoverySession;
75 protected DiscoverySession mWifiAwareDiscoverySession;
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiAwareManagerFacade.java 30 import android.net.wifi.aware.DiscoverySession;
85 private SparseArray<DiscoverySession> mDiscoverySessions = new SparseArray<>();
446 DiscoverySession session = mDiscoverySessions.get(sessionId);
495 DiscoverySession session = mDiscoverySessions.get(sessionId);
515 DiscoverySession session = mDiscoverySessions.get(sessionId);
539 DiscoverySession session;
572 DiscoverySession session;
745 public void onPublishStarted(PublishDiscoverySession discoverySession) {
747 mDiscoverySessions.put(mDiscoverySessionId, discoverySession);
758 public void onSubscribeStarted(SubscribeDiscoverySession discoverySession) {
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareServiceImpl.java 27 import android.net.wifi.aware.DiscoverySession;
406 if (retryCount < 0 || retryCount > DiscoverySession.getMaxSendRetryCount()) {
408 + "and <= DiscoverySession.MAX_SEND_RETRY_COUNT");
WifiAwareDataPathStateManager.java 79 * - network specifier generated by DiscoverySession.createNetworkSpecifier(...) or
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
WifiAwareDataPathStateManagerTest.java 51 import android.net.wifi.aware.DiscoverySession;
    [all...]
  /frameworks/base/api/
system-current.txt     [all...]
  /prebuilts/sdk/system-api/
28.txt     [all...]

Completed in 1357 milliseconds