Skip to content

Latest commit

 

History

History
63 lines (63 loc) · 2.15 KB

com.meego.usb_moded.xml

File metadata and controls

63 lines (63 loc) · 2.15 KB
 
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
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node name="/com/meego/usb_moded">
<interface name="com.meego.usb_moded">
<method name="mode_request">
<arg name="mode" type="s" direction="out"/>
</method>
<method name="set_mode">
<arg name="mode" type="s" direction="in"/>
<arg name="mode" type="s" direction="out"/>
</method>
<method name="set_config">
<arg name="config" type="s" direction="in"/>
<arg name="config" type="s" direction="out"/>
</method>
<method name="net_config">
<arg name="key" type="s" direction="in"/>
<arg name="value" type="s" direction="in"/>
<arg name="key" type="s" direction="out"/>
<arg name="value" type="s" direction="out"/>
</method>
<method name="get_net_config">
<arg name="key" type="s" direction="in"/>
<arg name="key" type="s" direction="out"/>
<arg name="value" type="s" direction="out"/>
</method>
<method name="get_config">
<arg name="mode" type="s" direction="out"/>
</method>
<method name="get_modes">
<arg name="modes" type="s" direction="out"/>
</method>
Apr 4, 2016
Apr 4, 2016
33
34
35
36
37
38
39
40
41
42
43
<method name="hide_mode">
<arg name="mode" type="s" direction="in"/>
<arg name="mode" type="s" direction="out"/>
</method>
<method name="unhide_mode">
<arg name="mode" type="s" direction="in"/>
<arg name="mode" type="s" direction="out"/>
</method>
<method name="get_hidden">
<arg name="modes" type="s" direction="out"/>
</method>
44
45
46
47
48
49
50
51
52
53
<method name="rescue_off"/>
<signal name="sig_usb_state_ind">
<arg name="mode" type="s"/>
</signal>
<signal name="sig_usb_state_error_ind">
<arg name="error" type="s"/>
</signal>
<signal name="sig_usb_supported_modes_ind">
<arg name="modes" type="s"/>
</signal>
May 26, 2015
May 26, 2015
54
55
56
57
58
<signal name="sig_usb_config_ind">
<arg name="section" type="s"/>
<arg name="key" type="s"/>
<arg name="value" type="s"/>
</signal>
Apr 4, 2016
Apr 4, 2016
59
60
61
<signal name="sig_usb_hidden_modes_ind">
<arg name="modes" type="s"/>
</signal>
62
63
</interface>
</node>