| OLD | NEW |
| 1 <?xml version="1.0" encoding="UTF-8" ?> | 1 <?xml version="1.0" encoding="UTF-8" ?> |
| 2 <!-- COPYRIGHT HERE | 2 <!-- |
| 3 Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. |
| 6 |
| 3 dbus-binding-tool -mode=glib-server -prefix=cryptohome cryptohome.xml | 7 dbus-binding-tool -mode=glib-server -prefix=cryptohome cryptohome.xml |
| 4 > bindings/server.h | 8 > bindings/server.h |
| 5 --> | 9 --> |
| 6 <node name="/org/chromium/"> | 10 <node name="/org/chromium/"> |
| 7 <interface name="org.chromium.CryptohomeInterface"> | 11 <interface name="org.chromium.CryptohomeInterface"> |
| 8 <annotation name="org.freedesktop.DBus.GLib.CSymbol" | 12 <annotation name="org.freedesktop.DBus.GLib.CSymbol" |
| 9 value="cryptohome"/> | 13 value="cryptohome"/> |
| 10 <method name="IsMounted"> | 14 <method name="IsMounted"> |
| 11 <arg type="b" name="is_mounted" direction="out" /> | 15 <arg type="b" name="is_mounted" direction="out" /> |
| 12 </method> | 16 </method> |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 <method name="TpmIsOwned"> | 98 <method name="TpmIsOwned"> |
| 95 <arg type="b" name="owned" direction="out" /> | 99 <arg type="b" name="owned" direction="out" /> |
| 96 </method> | 100 </method> |
| 97 <method name="TpmIsBeingOwned"> | 101 <method name="TpmIsBeingOwned"> |
| 98 <arg type="b" name="owning" direction="out" /> | 102 <arg type="b" name="owning" direction="out" /> |
| 99 </method> | 103 </method> |
| 100 <method name="TpmCanAttemptOwnership"> | 104 <method name="TpmCanAttemptOwnership"> |
| 101 </method> | 105 </method> |
| 102 <method name="TpmClearStoredPassword"> | 106 <method name="TpmClearStoredPassword"> |
| 103 </method> | 107 </method> |
| 108 <method name="Pkcs11IsReady"> |
| 109 <arg type="b" name="ready" direction="out" /> |
| 110 </method> |
| 111 <method name="Pkcs11GetTpmTokenInfo"> |
| 112 <arg type="s" name="label" direction="out" /> |
| 113 <arg type="s" name="user_pin" direction="out" /> |
| 114 </method> |
| 104 <method name="GetStatusString"> | 115 <method name="GetStatusString"> |
| 105 <arg type="s" name="status" direction="out" /> | 116 <arg type="s" name="status" direction="out" /> |
| 106 </method> | 117 </method> |
| 107 <signal name="TpmInitStatus"> | 118 <signal name="TpmInitStatus"> |
| 108 <arg type="b" name="ready" /> | 119 <arg type="b" name="ready" /> |
| 109 <arg type="b" name="owned" /> | 120 <arg type="b" name="owned" /> |
| 110 <arg type="b" name="was_owned_this_boot" /> | 121 <arg type="b" name="was_owned_this_boot" /> |
| 111 </signal> | 122 </signal> |
| 112 <signal name="AsyncCallStatus"> | 123 <signal name="AsyncCallStatus"> |
| 113 <arg type="i" name="async_id" /> | 124 <arg type="i" name="async_id" /> |
| 114 <arg type="b" name="return_status" /> | 125 <arg type="b" name="return_status" /> |
| 115 <arg type="i" name="return_code" /> | 126 <arg type="i" name="return_code" /> |
| 116 </signal> | 127 </signal> |
| 117 </interface> | 128 </interface> |
| 118 </node> | 129 </node> |
| OLD | NEW |