OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CryptohomeOp
(Results
1 - 5
of
5
) sorted by null
/external/chromium/chrome/browser/chromeos/login/
cryptohome_op.h
18
class
CryptohomeOp
19
: public base::RefCountedThreadSafe<
CryptohomeOp
>,
22
static
CryptohomeOp
* CreateMountAttempt(AuthAttemptState* current_attempt,
26
static
CryptohomeOp
* CreateMountGuestAttempt(
30
static
CryptohomeOp
* CreateMigrateAttempt(AuthAttemptState* current_attempt,
35
static
CryptohomeOp
* CreateRemoveAttempt(AuthAttemptState* current_attempt,
38
static
CryptohomeOp
* CreateCheckKeyAttempt(
48
CryptohomeOp
(AuthAttemptState* current_attempt,
51
virtual ~
CryptohomeOp
();
59
friend class base::RefCountedThreadSafe<
CryptohomeOp
>;
[
all
...]
cryptohome_op.cc
17
CryptohomeOp
::
CryptohomeOp
(AuthAttemptState* current_attempt,
24
CryptohomeOp
::~
CryptohomeOp
() {}
26
void
CryptohomeOp
::OnComplete(bool success, int return_code) {
30
&
CryptohomeOp
::TriggerResolve,
34
void
CryptohomeOp
::TriggerResolve(bool success, int return_code) {
40
class MountAttempt : public
CryptohomeOp
{
45
:
CryptohomeOp
(current_attempt, callback),
65
class MountGuestAttempt : public
CryptohomeOp
{
[
all
...]
cryptohome_op_unittest.cc
111
void RunTest(
CryptohomeOp
* op, bool outcome, int code) {
133
scoped_refptr<
CryptohomeOp
> op_;
140
scoped_refptr<
CryptohomeOp
> op(
141
CryptohomeOp
::CreateMountAttempt(&state_, resolver_.get(), true));
147
scoped_refptr<
CryptohomeOp
> op(
148
CryptohomeOp
::CreateMountAttempt(&state_, resolver_.get(), true));
154
scoped_refptr<
CryptohomeOp
> op(
155
CryptohomeOp
::CreateMountAttempt(&state_, resolver_.get(), true));
161
scoped_refptr<
CryptohomeOp
> op(
162
CryptohomeOp
::CreateMountAttempt(&state_, resolver_.get(), true))
[
all
...]
parallel_authenticator.h
46
// AuthenticateToLogin() creates an OnlineAttempt and a
CryptohomeOp
that
201
void ResyncRecoverHelper(
CryptohomeOp
* to_initiate);
248
scoped_refptr<
CryptohomeOp
> mounter_;
249
scoped_refptr<
CryptohomeOp
> key_migrator_;
250
scoped_refptr<
CryptohomeOp
> data_remover_;
251
scoped_refptr<
CryptohomeOp
> guest_mounter_;
252
scoped_refptr<
CryptohomeOp
> key_checker_;
parallel_authenticator.cc
81
mounter_ =
CryptohomeOp
::CreateMountAttempt(current_state_.get(),
88
NewRunnableMethod(mounter_.get(), &
CryptohomeOp
::Initiate));
108
key_checker_ =
CryptohomeOp
::CreateCheckKeyAttempt(current_state_.get(),
113
NewRunnableMethod(key_checker_.get(), &
CryptohomeOp
::Initiate));
120
CryptohomeOp
::CreateMountGuestAttempt(current_state_.get(), this);
182
CryptohomeOp
::CreateMountGuestAttempt(current_state_.get(), this);
185
NewRunnableMethod(guest_mounter_.get(), &
CryptohomeOp
::Initiate));
216
key_migrator_ =
CryptohomeOp
::CreateMigrateAttempt(current_state_.get(),
230
CryptohomeOp
::CreateRemoveAttempt(current_state_.get(), this);
238
void ParallelAuthenticator::ResyncRecoverHelper(
CryptohomeOp
* to_initiate)
[
all
...]
Completed in 70 milliseconds