blob: 1651b4780b3dc32a2d330f9c0e67c2ec46c883e7 (
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
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<!-- GDBus 2.48.2 -->
<node>
<interface name="org.freedesktop.DBus.Properties">
<method name="Get">
<arg type="s" name="interface_name" direction="in"/>
<arg type="s" name="property_name" direction="in"/>
<arg type="v" name="value" direction="out"/>
</method>
<method name="GetAll">
<arg type="s" name="interface_name" direction="in"/>
<arg type="a{sv}" name="properties" direction="out"/>
</method>
<method name="Set">
<arg type="s" name="interface_name" direction="in"/>
<arg type="s" name="property_name" direction="in"/>
<arg type="v" name="value" direction="in"/>
</method>
<signal name="PropertiesChanged">
<arg type="s" name="interface_name"/>
<arg type="a{sv}" name="changed_properties"/>
<arg type="as" name="invalidated_properties"/>
</signal>
</interface>
<interface name="org.freedesktop.DBus.Introspectable">
<method name="Introspect">
<arg type="s" name="xml_data" direction="out"/>
</method>
</interface>
<interface name="org.freedesktop.DBus.Peer">
<method name="Ping"/>
<method name="GetMachineId">
<arg type="s" name="machine_uuid" direction="out"/>
</method>
</interface>
<interface name="org.lightmediascanner.Scanner1">
<method name="Scan">
<arg type="a{sv}" name="specification" direction="in">
</arg>
</method>
<method name="Stop">
</method>
<method name="RequestWriteLock">
</method>
<method name="ReleaseWriteLock">
</method>
<signal name="ScanProgress">
<arg type="s" name="Category">
</arg>
<arg type="s" name="Path">
</arg>
<arg type="t" name="UpToDate">
</arg>
<arg type="t" name="Processed">
</arg>
<arg type="t" name="Deleted">
</arg>
<arg type="t" name="Skipped">
</arg>
<arg type="t" name="Errors">
</arg>
</signal>
<property type="s" name="DataBasePath" access="read">
</property>
<property type="b" name="IsScanning" access="read">
</property>
<property type="b" name="WriteLocked" access="read">
</property>
<property type="t" name="UpdateID" access="read">
</property>
<property type="a{sv}" name="Categories" access="read">
</property>
</interface>
</node>
|