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

  /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-icon {
24 #wrong-hwid #wrong-hwid-message-content {
30 #skip-hwid-warning {
34 #skip-hwid-warning-link
    [all...]
  /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...]
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
list_ports.py 43 for port, desc, hwid in comports():
44 if r.search(port) or r.search(desc) or r.search(hwid):
45 yield port, desc, hwid
88 for port, desc, hwid in iterator:
92 print(" hwid: %s" % (hwid,))
list_ports_posix.py 100 for port, desc, hwid in sorted(comports()):
101 print "%s: %s [%s]" % (port, desc, hwid)
list_ports_linux.py 142 for port, desc, hwid in sorted(comports()):
143 print "%s: %s [%s]" % (port, desc, hwid)
list_ports_osx.py 206 for port, desc, hwid in sorted(comports()):
207 print "%s: %s [%s]" % (port, desc, hwid)
list_ports_windows.py 239 for port, desc, hwid in sorted(comports()):
240 print "%s: %s [%s]" % (port, desc, hwid)
miniterm.py 155 for port, desc, hwid in sorted(comports()):
156 #~ sys.stderr.write('--- %-20s %s [%s]\n' % (port, desc, hwid))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
comstats.h 39 unsigned long hwid; member in struct:__anon45851
80 unsigned long hwid; member in struct:__anon45852
87 unsigned long hwid; member in struct:__anon45853
cdk.h 413 unsigned long hwid; member in struct:asystats
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
comstats.h 39 unsigned long hwid; member in struct:__anon47587
80 unsigned long hwid; member in struct:__anon47588
87 unsigned long hwid; member in struct:__anon47589
cdk.h 413 unsigned long hwid; member in struct:asystats
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/urlhandler/
protocol_hwgrep.py 31 for port, desc, hwid in serial.tools.list_ports.grep(url):
  /external/chromium_org/chrome/browser/chromeos/extensions/
info_private_api.cc 35 // Key which corresponds to the HWID setting.
36 const char kPropertyHWID[] = "hwid";
158 std::string hwid; local
161 provider->GetMachineStatistic(chromeos::system::kHardwareClassKey, &hwid);
162 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_org/chrome/browser/resources/login/
screen_container.css 69 #oobe.wrong-hwid #inner-container,
145 #wrong-hwid-dot,
display_manager.js 31 /** @const */ var SCREEN_WRONG_HWID = 'wrong-hwid';
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
customization_document.cc 289 std::string hwid; local
291 system::kHardwareClassKey, &hwid)) {
299 if (MatchPattern(hwid, hwid_mask)) {
300 // If HWID for this machine matches some mask, use HWID specific
319 LOG(ERROR) << "HWID is missing in machine statistics";
    [all...]

Completed in 488 milliseconds