/external/chromium_org/chrome/browser/resources/chromeos/login/ |
screen_wrong_hwid.css | 5 * This is the stylesheet used by the wrong HWID screen. 8 #wrong-hwid { 14 #wrong-hwid #wrong-hwid-message-header { 20 #wrong-hwid #wrong-hwid-message-content { 26 #skip-hwid-warning { 30 #skip-hwid-warning-link {
|
screen_container.css | 43 #oobe.wrong-hwid #inner-container, 118 #wrong-hwid-dot,
|
/external/chromium_org/chrome/browser/chromeos/login/ |
hwid_checker.h | 12 // Checks if given HWID correct. 13 bool IsHWIDCorrect(const std::string& hwid); 15 // Checks if current machine has correct HWID.
|
hwid_checker.cc | 38 bool IsCorrectHWIDv2(const std::string& hwid) { 41 if (!RE2::FullMatch(hwid, "([\\s\\S]*) (\\d{4})", &body, &checksum)) 46 bool IsExceptionalHWID(const std::string& hwid) { 47 return RE2::PartialMatch(hwid, "^(SPRING [A-D])|(FALCO A)"); 61 bool IsCorrectExceptionalHWID(const std::string& hwid) { 62 if (!IsExceptionalHWID(hwid)) 65 if (!RE2::FullMatch(hwid, "[A-Z0-9]+ ((?:[A-Z2-7]{4}-)*[A-Z2-7]{1,4})", &bom)) 70 base::RemoveChars(hwid, "-", &hwid_without_dashes); 90 bool IsCorrectHWIDv3(const std::string& hwid) { 91 if (IsExceptionalHWID(hwid)) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
comstats.h | 39 unsigned long hwid; member in struct:__anon37475 80 unsigned long hwid; member in struct:__anon37476 87 unsigned long hwid; member in struct:__anon37477
|
cdk.h | 413 unsigned long hwid; member in struct:asystats
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
comstats.h | 39 unsigned long hwid; member in struct:__anon39066 80 unsigned long hwid; member in struct:__anon39067 87 unsigned long hwid; member in struct:__anon39068
|
cdk.h | 413 unsigned long hwid; member in struct:asystats
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
comstats.h | 39 unsigned long hwid; member in struct:__anon40580 80 unsigned long hwid; member in struct:__anon40581 87 unsigned long hwid; member in struct:__anon40582
|
cdk.h | 413 unsigned long hwid; member in struct:asystats
|
/external/chromium_org/chrome/browser/chromeos/extensions/ |
info_private_api.cc | 28 // Key which corresponds to the HWID setting. 29 const char kPropertyHWID[] = "hwid"; 79 std::string hwid; local 82 provider->GetMachineStatistic(chromeos::system::kHardwareClassKey, &hwid); 83 return new base::StringValue(hwid);
|
/external/chromium_org/chrome/browser/chromeos/imageburner/ |
burn_manager.cc | 62 const char kHwid[] = "hwid"; 101 // Make sure last block has at least one hwid associated with it. 111 const std::string& hwid) const { 112 // We search for block that has desired hwid property, and if we find it, we 117 if (block_it->hwids.find(hwid) != block_it->hwids.end()) { 131 // Check if last block has a hwid associated with it, and erase it if it 158 // Check if line contains hwid property. If so, add it to set of hwids 557 std::string hwid; 559 GetMachineStatistic(system::kHardwareClassKey, &hwid)) { 561 image_file_name_ = config_file.GetProperty(kFileName, hwid); [all...] |
burn_manager.h | 74 // treat hwid property separately. 78 // hwid=hwid1 79 // hwid=hwid2 83 // hwid=hwid3 101 // Returns property_name property of image for hardware class hwid. 103 const std::string& hwid) const; 112 // Struct that contains config file block info. We separate hwid from other 115 // * we will retieve properties by hwid. 127 // Also, there is only one entry for each hwid, if that changes we should
|
/external/chromium/chrome/browser/chromeos/ |
customization_document.cc | 45 const char kHwid[] = "hwid"; 168 std::string hwid; local 169 if (system_access->GetMachineStatistic(kHwid, &hwid)) { 177 if (MatchPattern(hwid, hwid_mask)) { 178 // If HWID for this machine matches some mask, use HWID specific 197 LOG(ERROR) << "HWID is missing in machine statistics";
|
/external/chromium_org/chrome/browser/chromeos/ |
customization_document.cc | 175 std::string hwid; local 177 chromeos::system::kHardwareClassKey, &hwid)) { 185 if (MatchPattern(hwid, hwid_mask)) { 186 // If HWID for this machine matches some mask, use HWID specific 205 LOG(ERROR) << "HWID is missing in machine statistics";
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
cros_browser_backend.py | 112 # Skip hwid check, for VMs and pre-MP lab devices. 113 '--skip-hwid-check' 182 def hwid(self): member in class:CrOSBrowserBackend 183 return self._cri.RunCmdOnDevice(['/usr/bin/crossystem', 'hwid'])[0] 232 # Without --skip-hwid-check (introduced in crrev.com/203397), devices/VMs 233 # will be stuck on the bad hwid screen. 234 if self.chrome_branch_number <= 1500 and not self.hwid: 236 'Hardware id not set on device/VM. --skip-hwid-check not supported '
|