Lines Matching defs:interface

200         pa_strbuf_printf(buf, " <interface name=\"%s\">\n", iface_entry->name);
232 pa_strbuf_puts(buf, " </interface>\n");
235 pa_strbuf_puts(buf, " <interface name=\"" DBUS_INTERFACE_INTROSPECTABLE "\">\n"
239 " </interface>\n"
240 " <interface name=\"" DBUS_INTERFACE_PROPERTIES "\">\n"
255 " </interface>\n");
277 /* The interface of the received message hasn't been registered for the
284 /* The interface argument of a property call didn't match any registered
285 * interface. */
309 const char *interface; /* Destination interface name (extracted from the message). */
313 const char *property_interface; /* The interface argument of a property call is stored here. */
325 /* Called when call_info->property has been set and the property interface has
462 if (call_info->interface) {
463 if (pa_streq(call_info->interface, DBUS_INTERFACE_PROPERTIES))
466 else if (!(call_info->iface_entry = pa_hashmap_get(call_info->obj_entry->interfaces, call_info->interface)))
480 } else { /* The method call doesn't contain an interface. */
483 /* The object has a method named Get, Set or GetAll in some other interface than .Properties. */
507 pa_log_debug("Received message: destination = %s, interface = %s, member = %s",
514 call_info.interface = dbus_message_get_interface(message);
564 pa_dbus_send_error(connection, message, PA_DBUS_ERROR_NO_SUCH_INTERFACE, "No such interface: %s", call_info.interface);
572 pa_dbus_send_error(connection, message, PA_DBUS_ERROR_NO_SUCH_INTERFACE, "No such property interface: %s", call_info.property_interface);
783 goto fail; /* The interface was already registered. */
820 int pa_dbus_protocol_remove_interface(pa_dbus_protocol *p, const char* path, const char* interface) {
827 pa_assert(interface);
832 if (!(iface_entry = pa_hashmap_remove(obj_entry->interfaces, interface)))