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

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: 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') | interface.h » ('J')
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 <!-- COPYRIGHT HERE
Greg Spencer (Chromium) 2011/04/08 20:21:45 Doesn't this have to actually have copyright text?
kmixter1 2011/04/08 21:04:14 Done.
3 dbus-binding-tool -mode=glib-server -prefix=cryptohome cryptohome.xml 3 dbus-binding-tool -mode=glib-server -prefix=cryptohome cryptohome.xml
4 &gt; bindings/server.h 4 &gt; bindings/server.h
5 --> 5 -->
6 <node name="/org/chromium/"> 6 <node name="/org/chromium/">
7 <interface name="org.chromium.CryptohomeInterface"> 7 <interface name="org.chromium.CryptohomeInterface">
8 <annotation name="org.freedesktop.DBus.GLib.CSymbol" 8 <annotation name="org.freedesktop.DBus.GLib.CSymbol"
9 value="cryptohome"/> 9 value="cryptohome"/>
10 <method name="IsMounted"> 10 <method name="IsMounted">
11 <arg type="b" name="is_mounted" direction="out" /> 11 <arg type="b" name="is_mounted" direction="out" />
12 </method> 12 </method>
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 <method name="TpmIsOwned"> 94 <method name="TpmIsOwned">
95 <arg type="b" name="owned" direction="out" /> 95 <arg type="b" name="owned" direction="out" />
96 </method> 96 </method>
97 <method name="TpmIsBeingOwned"> 97 <method name="TpmIsBeingOwned">
98 <arg type="b" name="owning" direction="out" /> 98 <arg type="b" name="owning" direction="out" />
99 </method> 99 </method>
100 <method name="TpmCanAttemptOwnership"> 100 <method name="TpmCanAttemptOwnership">
101 </method> 101 </method>
102 <method name="TpmClearStoredPassword"> 102 <method name="TpmClearStoredPassword">
103 </method> 103 </method>
104 <method name="Pkcs11IsReady">
105 <arg type="b" name="ready" direction="out" />
106 </method>
107 <method name="Pkcs11GetTpmTokenInfo">
108 <arg type="s" name="label" direction="out" />
109 <arg type="s" name="so_pin" direction="out" />
gauravsh 2011/04/08 21:37:35 update testing instructions in the issue descripti
kmixter1 2011/04/08 21:56:39 Done.
110 <arg type="s" name="user_pin" direction="out" />
111 </method>
104 <method name="GetStatusString"> 112 <method name="GetStatusString">
105 <arg type="s" name="status" direction="out" /> 113 <arg type="s" name="status" direction="out" />
106 </method> 114 </method>
107 <signal name="TpmInitStatus"> 115 <signal name="TpmInitStatus">
108 <arg type="b" name="ready" /> 116 <arg type="b" name="ready" />
109 <arg type="b" name="owned" /> 117 <arg type="b" name="owned" />
110 <arg type="b" name="was_owned_this_boot" /> 118 <arg type="b" name="was_owned_this_boot" />
111 </signal> 119 </signal>
112 <signal name="AsyncCallStatus"> 120 <signal name="AsyncCallStatus">
113 <arg type="i" name="async_id" /> 121 <arg type="i" name="async_id" />
114 <arg type="b" name="return_status" /> 122 <arg type="b" name="return_status" />
115 <arg type="i" name="return_code" /> 123 <arg type="i" name="return_code" />
116 </signal> 124 </signal>
117 </interface> 125 </interface>
118 </node> 126 </node>
OLDNEW
« no previous file with comments | « SConstruct ('k') | interface.h » ('j') | interface.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698