Home
last modified time | relevance | path

Searched refs:method_dsc (Results 1 – 1 of 1) sorted by relevance

/hostap-latest/wpa_supplicant/dbus/
Ddbus_new_helpers.c121 const struct wpa_dbus_method_desc *method_dsc) in is_signature_correct() argument
133 for (arg = method_dsc->args; arg && arg->name; arg++) { in is_signature_correct()
325 const struct wpa_dbus_method_desc *method_dsc = obj_dsc->methods; in msg_method_handler() local
333 while (method_dsc && method_dsc->dbus_method) { in msg_method_handler()
335 if (!os_strncmp(method_dsc->dbus_method, method, in msg_method_handler()
337 !os_strncmp(method_dsc->dbus_interface, msg_interface, in msg_method_handler()
341 method_dsc++; in msg_method_handler()
343 if (method_dsc == NULL || method_dsc->dbus_method == NULL) { in msg_method_handler()
351 if (!is_signature_correct(message, method_dsc)) { in msg_method_handler()
356 return method_dsc->method_handler(message, obj_dsc->user_data); in msg_method_handler()