HomeSort by relevance Sort by last modified time
    Searched refs:slot_id (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/base/metrics/
stats_table.cc 117 char* thread_name(int slot_id) const {
119 (slot_id-1) * (StatsTable::kMaxThreadNameLength)];
121 PlatformThreadId* thread_tid(int slot_id) const {
122 return &(thread_tid_table_[slot_id-1]);
124 int* thread_pid(int slot_id) const {
125 return &(thread_pid_table_[slot_id-1]);
412 int* StatsTable::GetLocation(int counter_id, int slot_id) const {
415 if (slot_id > internal_->max_threads())
419 return &(row[slot_id-1]);
439 for (int slot_id = 1; slot_id <= internal_->max_threads(); slot_id++)
    [all...]
stats_table.h 115 int* GetLocation(int counter_id, int slot_id) const;
stats_table_unittest.cc 32 int slot_id = table.RegisterThread(thread_name); local
33 EXPECT_NE(slot_id, 0);
45 slot_id = table.RegisterThread("too many threads");
46 EXPECT_EQ(slot_id, 0);
  /external/chromium_org/chromeos/
cert_loader.cc 120 int* slot_id) {
121 DCHECK(slot_id);
129 *slot_id = static_cast<int>(PK11_GetSlotID(priv_key->pkcs11Slot));
cert_loader.h 61 // hex string and sets |slot_id| to the id of the containing slot, or returns
62 // an empty string and doesn't modify |slot_id| if the PKCS#11 id could not be
65 int* slot_id);
  /external/chromium_org/chromeos/network/
network_cert_migrator_unittest.cc 127 int slot_id = -1; local
129 *test_client_cert_, &slot_id);
131 ASSERT_NE(-1, slot_id);
132 test_client_cert_slot_id_ = base::IntToString(slot_id);
192 const std::string& slot_id,
205 shill::kL2tpIpsecClientCertSlotProperty, slot_id);
214 std::string* slot_id,
216 slot_id->clear();
232 shill::kL2tpIpsecClientCertSlotProperty, slot_id);
501 std::string slot_id; local
    [all...]
client_cert_resolver.cc 38 int slot_id)
42 key_slot_id(slot_id) {}
187 int slot_id = -1; local
195 CertLoader::GetPkcs11IdAndSlotForCert(*cert_it->cert, &slot_id);
204 it->service_path, it->cert_config.location, pkcs11_id, slot_id));
286 int slot_id = -1; local
288 CertLoader::GetPkcs11IdAndSlotForCert(*cert_it->cert, &slot_id);
296 client_cert_type, slot_id, pkcs11_id, shill_properties);
client_cert_util.h 60 // of format "<pkcs11_id>" or "<slot_id>:<pkcs11_id>".
63 int* slot_id);
client_cert_resolver_unittest.cc 104 int slot_id = 0; local
106 CertLoader::GetPkcs11IdAndSlotForCert(*test_client_cert_, &slot_id);
107 test_cert_id_ = base::StringPrintf("%i:%s", slot_id, pkcs11_id.c_str());
client_cert_util.cc 101 int* slot_id) {
102 *slot_id = -1;
117 *slot_id = parsed_slot_id;
network_cert_migrator.cc 238 const std::string& pkcs11_id, int* slot_id) {
239 *slot_id = -1;
246 *slot_id = current_slot_id;
  /packages/apps/Stk/src/com/android/stk/
StkCmdReceiver.java 56 int slot_id = intent.getIntExtra(StkAppService.SLOT_ID, 0); local
59 args.putInt(StkAppService.SLOT_ID, slot_id);
83 "args: " + args + ", slot id: " + slot_id);
  /external/chromium_org/chrome/browser/chromeos/options/
cert_library.cc 168 std::string CertLibrary::GetUserCertPkcs11IdAt(int index, int* slot_id) const {
170 return CertLoader::GetPkcs11IdAndSlotForCert(*cert, slot_id);
195 int slot_id = -1; local
196 std::string id = CertLoader::GetPkcs11IdAndSlotForCert(*cert, &slot_id);
cert_library.h 72 std::string GetUserCertPkcs11IdAt(int index, int* slot_id) const;
vpn_config_view.cc 462 int slot_id = -1; local
464 CertLibrary::Get()->GetUserCertPkcs11IdAt(index, &slot_id);
466 client_cert_type, slot_id, pkcs11_id, properties);
    [all...]
wifi_config_view.cc 847 int slot_id = -1; local
849 CertLibrary::Get()->GetUserCertPkcs11IdAt(index, &slot_id);
851 client_cert::CONFIG_TYPE_EAP, slot_id, pkcs11_id, properties);
    [all...]
  /external/chromium_org/crypto/
nss_util_internal.h 83 // Use TPM slot |slot_id| for user. InitializeNSSForChromeOSUser must have been
87 CK_SLOT_ID slot_id);
nss_util.cc 439 CK_SLOT_ID slot_id) {
447 PK11SlotInfo* slot = SECMOD_LookupSlot(chaps_module->moduleID, slot_id);
449 LOG(ERROR) << "TPM slot " << slot_id << " not found.";
488 CK_SLOT_ID slot_id) {
504 slot_id,
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_io_data.cc 271 int slot_id) {
277 DVLOG(1) << "Got TPM slot for " << username_hash << ": " << slot_id; local
282 &crypto::InitializeTPMForChromeOSUser, username_hash, slot_id));
    [all...]

Completed in 216 milliseconds