Searched refs:intro (Results 1 - 2 of 2) sorted by relevance

/systemd/src/libsystemd/sd-bus/
H A Dtest-bus-introspect.c47 struct introspect intro; local
51 assert_se(introspect_begin(&intro, false) >= 0);
53 fprintf(intro.f, " <interface name=\"org.foo\">\n");
54 assert_se(introspect_write_interface(&intro, vtable) >= 0);
55 fputs(" </interface>\n", intro.f);
57 fflush(intro.f);
58 fputs(intro.introspection, stdout);
60 introspect_free(&intro);
H A Dbus-objects.c908 struct introspect intro; local
924 r = introspect_begin(&intro, bus->trusted);
928 r = introspect_write_default_interfaces(&intro, !require_fallback && n->object_managers);
958 fputs(" </interface>\n", intro.f);
960 fprintf(intro.f, " <interface name=\"%s\">\n", c->interface);
963 r = introspect_write_interface(&intro, c->vtable);
971 fputs(" </interface>\n", intro.f);
987 r = introspect_write_child_nodes(&intro, s, m->path);
991 r = introspect_finish(&intro, bus, m, &reply);
1002 introspect_free(&intro);
[all...]

Completed in 15 milliseconds