Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(683)

Side by Side Diff: cryptohome.xml

Issue 6823012: cryptohome: Add stub functions to query PKCS11 set up status (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cryptohome.git@master
Patch Set: word wrap Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « SConstruct ('k') | interface.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 &gt; bindings/server.h 8 &gt; 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
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="Pkcs11IsTpmTokenReady">
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>
OLDNEW
« no previous file with comments | « SConstruct ('k') | interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698