blob: 1e4704ec208f8b1f29e5b1bfab5bc82d4ad06dac (
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
|
<!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.genivi.navigationcore.MapMatchedPosition">
<method name="GetPosition">
<arg direction="in" type="ai" name="valuesToReturn"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="qValuesToReturn"/>
<arg direction="out" type="a{i(yv)}" name="position"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="qPosition"/>
</method>
<method name="SetSimulationMode">
<arg direction="in" type="u" name="sessionHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="qSessionHandle"/>
<arg direction="in" type="b" name="activate"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="qActivate"/>
</method>
<method name="PauseSimulation">
<arg direction="in" type="u" name="sessionHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="qSessionHandle"/>
</method>
</interface>
<interface name="org.genivi.navigationcore.Routing">
<method name="CreateRoute">
<arg direction="in" type="u" name="sessionHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="qSessionHandle"/>
<arg direction="out" type="u" name="routeHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="qRouteHandle"/>
</method>
<method name="SetWaypoints">
<arg direction="in" type="u" name="sessionHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="qSessionHandle"/>
<arg direction="in" type="u" name="routeHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="qRouteHandle"/>
<arg direction="in" type="b" name="startFromCurrentPosition"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In2" value="qStartFromCurrentPosition"/>
<arg direction="in" type="aa{i(yv)}" name="waypointsList"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In3" value="qWaypointsList"/>
</method>
<method name="CalculateRoute">
<arg direction="in" type="u" name="sessionHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="qSessionHandle"/>
<arg direction="in" type="u" name="routeHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="qRouteHandle"/>
</method>
<method name="CancelRouteCalculation">
<arg direction="in" type="u" name="sessionHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="qSessionHandle"/>
<arg direction="in" type="u" name="routeHandle"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="qRouteHandle"/>
</method>
<method name="GetAllRoutes">
<arg direction="out" type="au" name="routesList"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="qRoutesList"/>
</method>
</interface>
<interface name="org.genivi.navigationcore.Session">
<method name="GetAllSessions">
<arg direction="out" type="a(us)" name="sessionsList"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="qSessionsList"/>
</method>
</interface>
</node>
|