OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CryptohomeOp
(Results
1 - 2
of
2
) 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
...]
Completed in 2032 milliseconds