blob: e5bec2fc512f164c41b70bde2f24be1a4deb18c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node name="/org/freedesktop/sssd">
<interface name="org.freedesktop.DBus">
<annotation name="codegen.Name" value="DBus" />
<annotation name="codegen.Caller" value="false" />
<method name="Hello">
<annotation name="codegen.AsyncCaller" value="true" />
<arg type="s" name="name" direction="out" />
</method>
<method name="RequestName">
<annotation name="codegen.AsyncCaller" value="true" />
<arg type="s" name="name" direction="in" />
<arg type="u" name="flags" direction="in" />
<arg type="u" name="result" direction="out" />
</method>
<method name="ReleaseName">
<arg type="s" name="name" direction="in" />
<arg type="u" name="result" direction="out" />
</method>
<method name="NameHasOwner">
<arg type="s" name="name" direction="in" key="1" />
<arg type="b" name="result" direction="out" />
</method>
<method name="ListNames" key="True">
<arg type="as" name="names" direction="out" />
</method>
<method name="ListActivatableNames" key="True">
<arg type="as" name="names" direction="out" />
</method>
<method name="AddMatch">
<arg type="s" name="rule" direction="in" />
</method>
<method name="RemoveMatch">
<arg type="s" name="rule" direction="in" />
</method>
<method name="GetNameOwner">
<arg type="s" name="name" direction="in" key="1" />
<arg type="s" name="unique_name" direction="out" />
</method>
<method name="ListQueuedOwners">
<arg type="s" name="name" direction="in" key="1" />
<arg type="as" name="unique_names" direction="out" />
</method>
<method name="GetConnectionUnixUser">
<annotation name="codegen.AsyncCaller" value="true" />
<arg type="s" name="name" direction="in" key="1" />
<arg type="u" name="uid" direction="out" />
</method>
<method name="GetConnectionUnixProcessID">
<arg type="s" name="name" direction="in" key="1" />
<arg type="u" name="pid" direction="out" />
</method>
<method name="GetId" key="True">
<arg type="s" name="bus_name" direction="out" />
</method>
<method name="StartServiceByName">
<arg type="s" name="name" direction="in" key="1" />
<arg type="u" name="flags" direction="in" />
<arg type="u" name="result" direction="out" />
</method>
<signal name="NameOwnerChanged">
<arg type="s" name="name" />
<arg type="s" name="new_owner" />
<arg type="s" name="old_owner" />
</signal>
<signal name="NameAcquired">
<arg type="s" name="name" />
</signal>
<signal name="NameLost">
<arg type="s" name="name" />
</signal>
</interface>
<interface name="org.freedesktop.DBus.Introspectable">
<annotation name="codegen.Caller" value="false" />
<method name="Introspect">
<arg type="s" name="introspection" direction="out" key="1" />
</method>
</interface>
<interface name="org.freedesktop.DBus.Properties">
<annotation name="codegen.Name" value="DBusProperties" />
<method name="Get">
<annotation name="codegen.CustomOutputHandler" value="true" />
<arg type="s" name="interface_name" direction="in" key="1" />
<arg type="s" name="property_name" direction="in" key="2" />
<arg type="v" name="property_value" direction="out" />
</method>
<method name="Set">
<annotation name="codegen.CustomInputHandler" value="true" />
<arg type="s" name="interface_name" direction="in" />
<arg type="s" name="property_name" direction="in" />
<arg type="v" name="new_value" direction="in" />
</method>
<method name="GetAll">
<annotation name="codegen.CustomOutputHandler" value="true" />
<arg type="s" name="interface_name" direction="in" key="1" />
<arg type="a{sv}" name="properties" direction="out" />
</method>
</interface>
</node>
|