blob: 7b735836a404c3e34a80a08a4ea3566d9db33609 (
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
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.freedesktop.UPower">
<method name="HibernateAllowed">
<arg name="allowed" type="b" direction="out"/>
</method>
<method name="Hibernate">
</method>
<method name="SuspendAllowed">
<arg name="allowed" type="b" direction="out"/>
</method>
<method name="Suspend">
</method>
<method name="AboutToSleep">
</method>
<method name="EnumerateDevices">
<arg name="devices" type="ao" direction="out"/>
</method>
<signal name="Resuming">
</signal>
<signal name="Sleeping">
</signal>
<signal name="Changed">
</signal>
<signal name="DeviceChanged">
<arg type="s"/>
</signal>
<signal name="DeviceRemoved">
<arg type="s"/>
</signal>
<signal name="DeviceAdded">
<arg type="s"/>
</signal>
<property name="LidIsPresent" type="b" access="read"/>
<property name="LidIsClosed" type="b" access="read"/>
<property name="OnLowBattery" type="b" access="read"/>
<property name="OnBattery" type="b" access="read"/>
<property name="CanHibernate" type="b" access="read"/>
<property name="CanSuspend" type="b" access="read"/>
<property name="DaemonVersion" type="s" access="read"/>
</interface>
</node>
|