Home
last modified time | relevance | path

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

/external/wpa_supplicant_8/wpa_supplicant/dbus/
Ddbus_new_helpers.c119 const struct wpa_dbus_method_desc *method_dsc) in is_signature_correct() argument
131 for (arg = method_dsc->args; arg && arg->name; arg++) { in is_signature_correct()
323 const struct wpa_dbus_method_desc *method_dsc = obj_dsc->methods; in msg_method_handler() local
331 while (method_dsc && method_dsc->dbus_method) { in msg_method_handler()
333 if (!os_strncmp(method_dsc->dbus_method, method, in msg_method_handler()
335 !os_strncmp(method_dsc->dbus_interface, msg_interface, in msg_method_handler()
339 method_dsc++; in msg_method_handler()
341 if (method_dsc == NULL || method_dsc->dbus_method == NULL) { in msg_method_handler()
349 if (!is_signature_correct(message, method_dsc)) { in msg_method_handler()
354 return method_dsc->method_handler(message, obj_dsc->user_data); in msg_method_handler()