/hostap-3.6.0/wpa_supplicant/examples/ |
D | wpas-dbus-new-signals.py | 37 def interfaceAdded(interface, properties): argument 38 print("InterfaceAdded(%s): Ifname=%s" % (interface, properties['Ifname'])) 43 def propertiesChanged(properties): argument 44 for i in properties: 45 print("PropertiesChanged: %s=%s" % (i, properties[i])) 92 def bssAdded(bss, properties): argument 105 def networkAdded(network, properties): argument 114 def propertiesChangedInterface(properties): argument 115 for i in properties: 116 print("PropertiesChanged(interface): %s=%s" % (i, properties[i])) [all …]
|
D | wpas-dbus-new-wps.py | 16 def propertiesChanged(properties): argument 17 if properties.has_key("State"): 18 print("PropertiesChanged: State: %s" % (properties["State"])) 23 def bssAdded(bss, properties): argument
|
D | wpas-dbus-new.py | 36 def propertiesChanged(properties): argument 37 if properties.has_key("State"): 38 print("PropertiesChanged: State: %s" % (properties["State"])) 89 def bssAdded(bss, properties): argument
|
/hostap-3.6.0/tests/hwsim/ |
D | test_dbus.py | 482 def propertiesChanged(self, properties): argument 483 logger.debug("PropertiesChanged: " + str(properties)) 484 if "ProcessCredentials" in properties: 1117 def bssAdded(self, bss, properties): argument 1119 logger.debug(str(properties)) 1120 if 'WPS' in properties: 1121 if 'Type' in properties['WPS']: 1316 def networkAdded(self, network, properties): argument 1318 logger.debug(str(properties)) 1329 def propertiesChanged(self, properties): argument [all …]
|
/hostap-3.6.0/wpa_supplicant/examples/p2p/ |
D | p2p_group_add.py | 29 def GroupStarted(properties): argument 30 if properties.has_key("group_object"): 32 % properties["group_object"])
|
D | p2p_connect.py | 41 def GroupStarted(properties): argument 42 if properties.has_key("group_object"): 44 % properties["group_object"])
|
/hostap-3.6.0/doc/ |
D | dbus.doxygen | 6 their methods, signals, and properties with arguments, returned 153 <h3>InterfaceAdded ( o : interface, a{sv} : properties )</h3> 161 <dt>a{sv} : properties</dt> 162 <dd>A dictionary containing properties of added interface.</dd> 177 <h3>PropertiesChanged ( a{sv} : properties )</h3> 178 <p>Some properties have changed.</p> 181 <dt>a{sv} : properties</dt> 182 …<dd>A dictionary with pairs of properties names which have changed and theirs new values. Possible… 632 <h3>SignalPoll ( ) --> a{sv} : properties</h3> 633 <p>Fetch signal properties for the current connection.</p> [all …]
|
/hostap-3.6.0/wpa_supplicant/dbus/ |
D | dbus_new_introspect.c | 127 struct dl_list *list, const struct wpa_dbus_property_desc *properties) in extract_interfaces_properties() argument 132 for (dsc = properties; dsc && dsc->dbus_property; dsc++) { in extract_interfaces_properties() 155 extract_interfaces_properties(list, obj_dsc->properties); in extract_interfaces()
|
D | dbus_new_helpers.c | 99 if (!fill_dict_with_properties(&dict_iter, obj_dsc->properties, in get_all_properties() 241 property_dsc = obj_dsc->properties; in properties_get_or_set() 612 for (dsc = obj_dsc->properties, i = 0; dsc && dsc->dbus_property; in put_changed_properties() 817 for (dsc = obj_desc->properties, i = 0; dsc && dsc->dbus_property; in wpa_dbus_flush_object_changed_properties() 864 for (dsc = obj_desc->properties; dsc && dsc->dbus_property; dsc++, i++) in wpa_dbus_mark_property_changed() 925 if (!fill_dict_with_properties(&dict_iter, obj_desc->properties, in wpa_dbus_get_object_properties()
|
D | dbus_new.c | 133 dbus_bool_t properties) in wpas_dbus_signal_interface() argument 153 (properties && in wpas_dbus_signal_interface() 235 const char *sig_name, dbus_bool_t properties) in wpas_dbus_signal_bss() argument 256 (properties && in wpas_dbus_signal_bss() 369 dbus_bool_t properties) in wpas_dbus_signal_network() argument 396 (properties && in wpas_dbus_signal_network() 1187 dbus_bool_t properties) in wpas_dbus_signal_station() argument 1208 (properties && in wpas_dbus_signal_station() 2053 dbus_bool_t properties) in wpas_dbus_signal_persistent_group() argument 2085 (properties && in wpas_dbus_signal_persistent_group() [all …]
|
D | dbus_new_helpers.h | 34 const struct wpa_dbus_property_desc *properties; member
|
/hostap-3.6.0/wpadebug/ |
D | .gitignore | 3 local.properties
|
/hostap-3.6.0/wpa_supplicant/wpa_gui-qt4/ |
D | peers.h | 47 virtual void properties();
|
D | peers.cpp | 278 menu->addAction(tr("Properties"), this, SLOT(properties())); in context_menu() 1588 void Peers::properties() in properties() function in Peers
|
/hostap-3.6.0/wpa_supplicant/ |
D | README-Windows.txt | 62 properties as additional include/library directories.
|
D | ChangeLog | 139 * extended D-Bus interface with number of new properties 288 - add global config parameters as properties 1063 - Add BSSExpireAge and BSSExpireCount interface properties and 1066 - Add ConfigFile to AddInterface properties.
|