Lines Matching defs:iface
33 const char *iface)
38 if (strcmp(item->interface->vtable->meta->name, iface) == 0) {
512 struct sbus_interface *iface,
518 const char *iface_name = iface->vtable->meta->name;
537 item->interface = iface;
551 " twice: iface=%s, opath=%s\n", iface_name, object_path);
571 talloc_steal(item, iface);
599 struct sbus_interface *iface = NULL;
616 iface = sbus_iface_list_lookup(list, iface_name);
617 if (iface != NULL) {
629 return iface;
836 struct sbus_interface *iface = NULL;
844 iface = sbus_new_interface(conn, object_path, iface_vtable, handler_data);
845 if (iface == NULL) {
849 ret = sbus_opath_hash_add_iface(conn->managed_paths, object_path, iface,
852 talloc_free(iface);
861 /* if ret != EOK we will still leave iface in the table, since
957 struct sbus_interface *iface;
977 iface = sbus_opath_hash_lookup_iface(conn->managed_paths,
979 if (iface == NULL) {
983 method = sbus_meta_find_method(iface->vtable->meta, method_name);
989 sbus_req = sbus_new_request(conn, iface, message);