HomeSort by relevance Sort by last modified time
    Searched defs:guid (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/chromium/chrome/common/
guid.h 14 namespace guid { namespace
16 // Generate a 128-bit random GUID of the form: "%08X-%04X-%04X-%04X-%012llX".
17 // If GUID generation fails an empty string is returned.
19 // the GUID. The Windows implementation uses system services.
22 // Returns true if the input string conforms to the GUID format.
23 bool IsValidGUID(const std::string& guid);
30 } // namespace guid
guid.cc 5 #include "chrome/common/guid.h"
10 namespace guid { namespace
12 bool IsValidGUID(const std::string& guid) {
14 if (guid.length() != kGUIDLength)
18 for (uint32 i = 0; i < guid.length(); ++i) {
19 char current = guid[i];
32 } // namespace guid
guid_posix.cc 5 #include "chrome/common/guid.h"
10 namespace guid { namespace
28 } // namespace guid
guid_win.cc 5 #include "chrome/common/guid.h"
17 namespace guid { namespace
22 GUID guid; local
23 HRESULT guid_result = CoCreateGuid(&guid);
29 int result = StringFromGUID2(guid,
38 } // namespace guid
guid_unittest.cc 5 #include "chrome/common/guid.h"
14 std::string clientid = guid::RandomDataToGUIDString(bytes);
20 std::string clientid = guid::RandomDataToGUIDString(bytes);
28 std::string guid = guid::GenerateGUID(); local
29 EXPECT_TRUE(guid::IsValidGUID(guid));
36 std::string guid1 = guid::GenerateGUID();
37 std::string guid2 = guid::GenerateGUID();
  /external/chromium_org/base/
guid_unittest.cc 5 #include "base/guid.h"
28 std::string guid = base::GenerateGUID(); local
29 EXPECT_TRUE(base::IsValidGUID(guid));
guid_win.cc 5 #include "base/guid.h"
22 GUID guid; local
23 HRESULT guid_result = CoCreateGuid(&guid);
29 int result = StringFromGUID2(guid,
38 } // namespace guid
  /external/chromium_org/chrome/browser/invalidation/
invalidation_service_util.cc 47 // Generate a GUID with 128 bits worth of base64-encoded randomness.
50 std::string guid; local
51 base::Base64Encode(base::RandBytesAsString(kGuidBytes), &guid); local
52 DCHECK(!guid.empty());
53 return guid;
  /external/chromium_org/components/autofill/core/browser/
autofill_data_model.h 23 AutofillDataModel(const std::string& guid, const std::string& origin);
43 std::string guid() const { return guid_; } function in class:autofill::AutofillDataModel
44 void set_guid(const std::string& guid) { guid_ = guid; }
  /external/chromium/chrome/browser/autofill/
autofill_profile.h 37 explicit AutofillProfile(const std::string& guid);
67 // This guid is the primary identifier for |AutofillProfile| objects.
68 const std::string guid() const { return guid_; } function in class:AutofillProfile
69 void set_guid(const std::string& guid) { guid_ = guid; }
164 // The guid of this profile.
credit_card.h 20 explicit CreditCard(const std::string& guid);
46 // The guid is the primary identifier for |CreditCard| objects.
47 const std::string guid() const { return guid_; } function in class:CreditCard
48 void set_guid(const std::string& guid) { guid_ = guid; }
126 // The guid of this credit card.
  /external/chromium_org/chrome/browser/extensions/api/signedin_devices/
id_mapping_helper.cc 21 const std::string& guid) {
31 if (guid_in_value == guid) {
42 std::string guid; local
43 id_mapping.GetString(id, &guid);
44 return guid;
72 device->guid());
77 value->SetString(local_id, device->guid());
  /external/chromium_org/content/browser/download/
base_file_win.cc 13 #include "base/guid.h"
333 GUID guid = GUID_NULL; local
336 base::UTF8ToUTF16(braces_guid).c_str(), &guid);
338 guid = GUID_NULL;
341 HRESULT hr = AVScanFile(full_path_, source_url_.spec(), guid);
  /external/chromium_org/remoting/base/
breakpad_win_unittest.cc 99 UUID guid = {0}; local
100 RPC_STATUS status = UuidCreate(&guid);
107 guid.Data1,
108 guid.Data2,
109 guid.Data3,
110 guid.Data4[0],
111 guid.Data4[1],
112 guid.Data4[2],
113 guid.Data4[3],
114 guid.Data4[4]
    [all...]
  /external/chromium_org/components/test/data/web_database/
version_48.sql 10 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
12 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
13 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
14 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
15 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
16 CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
version_49.sql 9 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
11 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
12 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
13 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
14 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
15 CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
version_33.sql 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
19 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
21 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
23 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
25 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
version_35.sql 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
18 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
19 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
20 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
52 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
version_37.sql 15 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
16 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
17 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
18 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
19 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0);
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_change_processor.cc 21 #include "chrome/common/guid.h"
183 autofill_changes_[i].profile_specifics_.guid())) {
185 autofill_changes_[i].profile_specifics_.guid();
216 if (guid::IsValidGUID(profile_specifics.guid()) == false) {
217 NOTREACHED() << "Guid from the server is invalid " <<
218 profile_specifics.guid();
221 AutofillProfile p(profile_specifics.guid());
225 LOG(ERROR) << "could not add autofill profile for guid " << p.guid();
230 std::string guid = p.guid(); local
285 std::string guid = profile.guid(); local
    [all...]
autofill_profile_model_associator_unittest.cc 98 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44B"; local
105 profile_specifics->set_guid(guid);
111 AutofillProfile *profile = new AutofillProfile(guid);
124 EXPECT_CALL(associator_, Associate(Pointee(guid), 1));
150 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44A"; local
152 AutofillProfile *profile = new AutofillProfile(guid);
219 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44C"; local
223 profile_specifics.set_guid(guid);
225 bundle.current_profiles.insert(guid);
237 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44D" local
    [all...]
  /external/chromium_org/chrome/app/
breakpad_linux_impl.h 55 const char* guid; // Client ID. member in struct:BreakpadInfo
56 unsigned guid_length; // Length of |guid|.
  /external/chromium_org/chrome/browser/history/
shortcuts_database_unittest.cc 19 std::string guid; member in struct:history::ShortcutsDatabaseTestInfo
85 return ShortcutsBackend::Shortcut(info.guid, ASCIIToUTF16(info.title),
130 shortcut_ids.push_back(shortcut_test_db[0].guid);
131 shortcut_ids.push_back(shortcut_test_db[2].guid);
139 shortcuts.find(shortcut_test_db[0].guid);
142 it = shortcuts.find(shortcut_test_db[1].guid);
145 it = shortcuts.find(shortcut_test_db[2].guid);
159 shortcuts.find(shortcut_test_db[0].guid);
162 it = shortcuts.find(shortcut_test_db[1].guid);
165 it = shortcuts.find(shortcut_test_db[2].guid);
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
device_info.cc 68 DeviceInfo::DeviceInfo(const std::string& guid,
73 : guid_(guid),
82 const std::string& DeviceInfo::guid() const { function in class:browser_sync::DeviceInfo
107 return this->guid() == other.guid()
189 const std::string& guid,
193 guid,
214 const std::string& guid,
220 guid,
  /external/chromium_org/content/browser/gamepad/
gamepad_platform_data_fetcher_win.h 65 bool HasDirectInputGamepad(const GUID &guid) const;
89 GUID guid; member in struct:content::GamepadPlatformDataFetcherWin::PadState

Completed in 1955 milliseconds

1 2 3 4 5