OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8" ?> | 1 <?xml version="1.0" encoding="UTF-8" ?> |
2 | 2 |
3 <node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensio
ns-v0"> | 3 <node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensio
ns-v0"> |
4 <interface name="org.freedesktop.ModemManager.Modem.Cdma"> | 4 <interface name="org.freedesktop.ModemManager.Modem.Cdma"> |
5 | 5 |
6 <method name="GetSignalQuality"> | 6 <method name="GetSignalQuality"> |
7 <tp:docstring> | 7 <tp:docstring> |
8 Get the current signal quality. | 8 Get the current signal quality. |
9 </tp:docstring> | 9 </tp:docstring> |
10 <annotation name="org.freedesktop.DBus.GLib.Async" value=""/> | 10 <annotation name="org.freedesktop.DBus.GLib.Async" value=""/> |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 <tp:docstring>Registered, but roaming status is unknown or cannot be pro
vided by the device. The device may or may not be roaming.</tp:docstring> | 115 <tp:docstring>Registered, but roaming status is unknown or cannot be pro
vided by the device. The device may or may not be roaming.</tp:docstring> |
116 </tp:enumvalue> | 116 </tp:enumvalue> |
117 <tp:enumvalue suffix="HOME" value="2"> | 117 <tp:enumvalue suffix="HOME" value="2"> |
118 <tp:docstring>Currently registered on the home network.</tp:docstring> | 118 <tp:docstring>Currently registered on the home network.</tp:docstring> |
119 </tp:enumvalue> | 119 </tp:enumvalue> |
120 <tp:enumvalue suffix="ROAMING" value="3"> | 120 <tp:enumvalue suffix="ROAMING" value="3"> |
121 <tp:docstring>Currently registered on a roaming network.</tp:docstring> | 121 <tp:docstring>Currently registered on a roaming network.</tp:docstring> |
122 </tp:enumvalue> | 122 </tp:enumvalue> |
123 </tp:enum> | 123 </tp:enum> |
124 | 124 |
| 125 <tp:enum name="MM_MODEM_CDMA_ACTIVATION_STATE" type="u"> |
| 126 <tp:enumvalue suffix="NOT_ACTIVATED" value="0"> |
| 127 <tp:docstring>Device is not activated</tp:docstring> |
| 128 </tp:enumvalue> |
| 129 <tp:enumvalue suffix="ACTIVATING" value="1"> |
| 130 <tp:docstring>Device is activating</tp:docstring> |
| 131 </tp:enumvalue> |
| 132 <tp:enumvalue suffix="PARTIALLY_ACTIVATED" value="2"> |
| 133 <tp:docstring>Device is partially activated; carrier-specific steps requ
ired to continue.</tp:docstring> |
| 134 </tp:enumvalue> |
| 135 <tp:enumvalue suffix="ACTIVATED" value="3"> |
| 136 <tp:docstring>Device is ready for use.</tp:docstring> |
| 137 </tp:enumvalue> |
| 138 </tp:enum> |
125 </interface> | 139 </interface> |
126 </node> | 140 </node> |
127 | 141 |
OLD | NEW |