Lines Matching defs:p2p

17 package android.net.wifi.p2p;
43 * When a p2p connection is formed over wifi, the device continues to maintain the uplink
48 * {@link #initialize} before doing any p2p operation.
59 * or forms a p2p group. The {@link ActionListener} callbacks provide feedback on whether the
70 * Wi-Fi devices that do not support p2p, an app can create a group using {@link #createGroup}
77 * if the current device is a p2p group owner. A p2p client can thus communicate with
78 * the p2p group owner through a socket connection.
102 * Broadcast intent action to indicate whether Wi-Fi p2p is enabled or disabled. An
109 "android.net.wifi.p2p.STATE_CHANGED";
112 * The lookup key for an int that indicates whether Wi-Fi p2p is enabled or disabled.
121 * Wi-Fi p2p is disabled.
128 * Wi-Fi p2p is enabled.
135 * Broadcast intent action indicating that the state of Wi-Fi p2p connectivity
136 * has changed. One extra {@link #EXTRA_WIFI_P2P_INFO} provides the p2p connection info in
145 "android.net.wifi.p2p.CONNECTION_STATE_CHANGE";
148 * The lookup key for a {@link android.net.wifi.p2p.WifiP2pInfo} object
182 "android.net.wifi.p2p.PEERS_CHANGED";
189 "android.net.wifi.p2p.THIS_DEVICE_CHANGED";
192 * The lookup key for a {@link android.net.wifi.p2p.WifiP2pDevice} object
285 * Indicates that the operation failed because p2p is unsupported on the device.
330 * @param info Wi-Fi p2p connection info
338 * The requested p2p group info is available
339 * @param group Wi-Fi p2p group info
345 * A channel that connects the application to the Wifi p2p framework.
346 * Most p2p operations require a Channel as an argument. An instance of Channel is obtained
441 * must be the first to be called before any p2p operations are performed.
446 * @return Channel instance that is necessary for performing any further p2p operations
462 * Sends in a request to the system to enable p2p. This will pop up a dialog
463 * to the user and upon authorization will enable p2p.
472 * Sends in a request to the system to disable p2p. This will pop up a dialog
473 * to the user and upon authorization will enable p2p.
491 * a p2p group is formed. Register for {@link #WIFI_P2P_PEERS_CHANGED_ACTION} intent to
506 * Start a p2p connection to a device with the specified configuration.
516 * <p> If the current device is not part of a p2p group, a connect request initiates
519 * <p> If the current device is part of an existing p2p group or has created
520 * a p2p group with {@link #createGroup}, an invitation to join the group is sent to
533 * Cancel any ongoing p2p group negotiation
549 * Create a p2p group with the current device as the group owner. This essentially creates
550 * an access point that can accept connections from legacy clients as well as other p2p
555 * to form a p2p connection with a legacy client
573 * Remove the current p2p group.
611 * Request p2p group info.