OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:token_id
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/chrome/browser/chromeos/platform_keys/
platform_keys.h
46
// Generates a RSA key pair with |modulus_length_bits|. |
token_id
| is currently
49
void GenerateRSAKey(const std::string&
token_id
,
59
// |
token_id
| is currently ignored, instead the user token associated with
64
void Sign(const std::string&
token_id
,
82
// the given token. |
token_id
| is currently ignored, instead the user token
85
void GetCertificates(const std::string&
token_id
,
96
// |
token_id
| is currently ignored, instead the user token associated with
99
void ImportCertificate(const std::string&
token_id
,
110
// |certificate| will be ignored. |
token_id
| is currently ignored, instead the
113
void RemoveCertificate(const std::string&
token_id
,
[
all
...]
platform_keys_service.h
54
// to allow a single sign operation by the given extension. |
token_id
| is
59
void GenerateRSAKey(const std::string&
token_id
,
74
// is rejected. |
token_id
| is currently ignored, instead the user token
80
void Sign(const std::string&
token_id
,
platform_keys_service.cc
50
void CheckValidityAndSign(const std::string&
token_id
,
62
platform_keys::subtle::Sign(
token_id
,
84
void PlatformKeysService::GenerateRSAKey(const std::string&
token_id
,
91
token_id
,
100
void PlatformKeysService::Sign(const std::string&
token_id
,
110
token_id
,
platform_keys_nss.cc
75
// Called back with the NSSCertDatabase associated to the given |
token_id
|.
111
// Asynchronously fetches the NSSCertDatabase and PK11Slot for |
token_id
|.
114
void GetCertDatabase(const std::string&
token_id
,
118
// TODO(pneubeck): Decide which DB to retrieve depending on |
token_id
|.
497
void GenerateRSAKey(const std::string&
token_id
,
512
GetCertDatabase(
token_id
,
518
void Sign(const std::string&
token_id
,
533
GetCertDatabase(
token_id
,
541
void GetCertificates(const std::string&
token_id
,
548
GetCertDatabase(
token_id
,
[
all
...]
/external/chromium_org/chrome/browser/ui/webui/
identity_internals_ui_browsertest.cc
27
std::string
token_id
("token");
28
token_id
+= token_number;
34
AddTokenToCache(
token_id
, extension_id, scopes, kOneHour);
46
const std::string
token_id
,
51
extensions::IdentityTokenCacheValue(
token_id
,
identity_internals_ui_browsertest.h
24
void AddTokenToCache(const std::string
token_id
,
/external/chromium_org/chrome/browser/extensions/api/enterprise_platform_keys/
enterprise_platform_keys_api.cc
33
// Returns whether |
token_id
| references a known Token.
34
bool ValidateToken(const std::string&
token_id
) {
36
return
token_id
== kTokenIdUser;
51
if (!ValidateToken(params->
token_id
))
60
params->
token_id
,
90
if (!ValidateToken(params->
token_id
))
111
params->
token_id
,
139
if (!ValidateToken(params->
token_id
))
143
params->
token_id
,
184
if (!ValidateToken(params->
token_id
))
[
all
...]
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
sync_task_token.h
35
int64
token_id
,
55
int64
token_id
() const { return token_id_; }
function in class:sync_file_system::drive_backend::SyncTaskToken
67
int64
token_id
,
sync_task_token.cc
42
int64
token_id
,
46
token_id
,
133
int64
token_id
,
137
token_id_(
token_id
),
sync_task_manager.cc
140
if (token->
token_id
() == SyncTaskToken::kTestingTaskTokenID) {
160
if (current_task_token->
token_id
() == SyncTaskToken::kTestingTaskTokenID) {
172
if (current_task_token->
token_id
() == SyncTaskToken::kForegroundTaskTokenID)
184
bool SyncTaskManager::IsRunningTask(int64
token_id
) const {
191
if (
token_id
== SyncTaskToken::kForegroundTaskTokenID)
194
return ContainsKey(running_background_tasks_,
token_id
);
225
if (token->
token_id
() == SyncTaskToken::kForegroundTaskTokenID) {
229
task = running_background_tasks_.take_and_erase(token->
token_id
());
334
running_background_tasks_.set(background_task_token->
token_id
(),
Completed in 991 milliseconds