Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching full:network

83  * wpas_dbus_global_add_interface - Request registration of a network interface
90 * by dbus clients to register a network interface that wpa_supplicant
195 * by dbus clients to deregister a network interface that wpa_supplicant
240 * by dbus clients for the object path of an specific network interface.
285 * @wpa_s: wpa_supplicant structure for a network interface
289 * Handler function for "scan" method call of a network device. Requests
305 * @wpa_s: wpa_supplicant structure for a network interface
309 * Handler function for "scanResults" method call of a network device. Returns
350 /* Construct the object path for this network. Note that ':'
371 * wpas_dbus_bssid_properties - Return the properties of a scanned network
373 * @wpa_s: wpa_supplicant structure for a network interface
375 * Returns: a dbus message containing the properties for the requested network
377 * Handler function for "properties" method call of a scanned network.
457 * @wpa_s: wpa_supplicant structure for a network interface
743 * wpas_dbus_iface_add_network - Add a new configured network
745 * @wpa_s: wpa_supplicant structure for a network interface
746 * Returns: A dbus message containing the object path of the new network
748 * Handler function for "addNetwork" method call of a network interface.
772 "a network on this interface.");
778 /* Construct the object path for this network. */
795 * wpas_dbus_iface_remove_network - Remove a configured network
797 * @wpa_s: wpa_supplicant structure for a network interface
801 * Handler function for "removeNetwork" method call of a network interface.
819 /* Extract the network ID */
825 /* Ensure the network is actually a child of this interface */
875 * wpas_dbus_iface_set_network - Set options for a configured network
877 * @wpa_s: wpa_supplicant structure for a network interface
878 * @ssid: wpa_ssid structure for a configured network
882 * Handler function for "set" method call of a configured network.
989 * wpas_dbus_iface_enable_network - Mark a configured network as enabled
991 * @wpa_s: wpa_supplicant structure for a network interface
992 * @ssid: wpa_ssid structure for a configured network
996 * Handler function for "enable" method call of a configured network.
1005 * and a new network was made available.
1017 * wpas_dbus_iface_disable_network - Mark a configured network as disabled
1019 * @wpa_s: wpa_supplicant structure for a network interface
1020 * @ssid: wpa_ssid structure for a configured network
1024 * Handler function for "disable" method call of a configured network.
1039 * wpas_dbus_iface_select_network - Attempt association with a configured network
1041 * @wpa_s: wpa_supplicant structure for a network interface
1045 * Handler function for "selectNetwork" method call of network interface.
1054 char *network = NULL;
1057 /* Any network */
1077 /* Extract the network number */
1079 &network,
1092 nid = strtoul(network, NULL, 10);
1104 /* Finally, associate with the network */
1125 free(network);
1133 * @wpa_s: wpa_supplicant structure for a network interface
1137 * Handler function for "disconnect" method call of network interface.
1152 * @wpa_s: wpa_supplicant structure for a network interface
1185 * @wpa_s: wpa_supplicant structure for a network interface