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

1 2 3 4

  /external/chromium_org/tools/telemetry/telemetry/core/platform/
device.py 13 guid: A unique id of the device. Subclass of device must specify this
15 guid.
18 def __init__(self, name, guid):
20 self._guid = guid
27 def guid(self): member in class:Device
  /external/chromium_org/base/
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
guid_unittest.cc 5 #include "base/guid.h"
16 bool IsGUIDv4(const std::string& guid) {
17 // The format of GUID version 4 must be xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx,
19 return base::IsValidGUID(guid) && guid[14] == '4' &&
20 (guid[19] == '8' || guid[19] == '9' || guid[19] == 'A' ||
21 guid[19] == 'a' || guid[19] == 'B' || guid[19] == 'b')
43 std::string guid = base::GenerateGUID(); local
    [all...]
  /external/chromium_org/components/invalidation/
invalidation_service_util.cc 37 // Generate a GUID with 128 bits worth of base64-encoded randomness.
40 std::string guid; local
41 base::Base64Encode(base::RandBytesAsString(kGuidBytes), &guid); local
42 DCHECK(!guid.empty());
43 return guid;
  /external/chromium_org/sync/internal_api/public/base/
attachment_id_proto.cc 7 #include "base/guid.h"
15 std::string guid = base::StringToLowerASCII(base::GenerateGUID()); local
16 DCHECK(!guid.empty());
19 proto.set_unique_id(guid);
  /external/chromium_org/components/autofill/core/browser/
autofill_data_model.h 22 AutofillDataModel(const std::string& guid, const std::string& origin);
37 std::string guid() const { return guid_; } function in class:autofill::AutofillDataModel
38 void set_guid(const std::string& guid) { guid_ = guid; }
  /external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
id_mapping_helper.cc 25 const std::string& guid) {
35 if (guid_in_value == guid) {
46 std::string guid; local
47 id_mapping.GetString(id, &guid);
48 return guid;
76 device->guid());
81 value->SetString(local_id, device->guid());
98 if ((*it)->guid() == client_id) {
signed_in_devices_api.cc 106 std::string guid = local_device->GetLocalSyncCacheGUID(); local
107 scoped_ptr<DeviceInfo> device = GetDeviceInfoForClientId(guid,
  /external/chromium_org/content/browser/download/
base_file_win.cc 14 #include "base/guid.h"
362 GUID guid = GUID_NULL; local
365 base::UTF8ToUTF16(braces_guid).c_str(), &guid);
367 guid = GUID_NULL;
370 HRESULT hr = AVScanFile(full_path_, source_url_.spec(), guid);
  /external/chromium_org/components/sync_driver/
device_info.cc 10 DeviceInfo::DeviceInfo(const std::string& guid,
16 : guid_(guid),
26 const std::string& DeviceInfo::guid() const { function in class:sync_driver::DeviceInfo
91 return this->guid() == other.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/third_party/webrtc/tools/e2e_quality/audio/
audio_e2e_harness.cc 73 char guid[128] = {0}; local
78 guid));
  /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);
version_38.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);
version_39.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);
version_40.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);
21 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);
  /bionic/libc/kernel/uapi/sound/
firewire.h 54 unsigned char guid[8]; member in struct:snd_firewire_get_info
  /external/chromium_org/chrome/browser/ui/views/status_icons/
status_tray_state_changer_win.h 36 GUID guid; // The GUID specified by the application, alternative to member in struct:NOTIFYITEM
  /external/chromium_org/components/wifi/
network_properties.h 34 std::string guid; member in struct:wifi::NetworkProperties
  /external/chromium_org/third_party/webrtc/voice_engine/
voe_hardware_impl.cc 215 char guid[strLen]; local
218 if (_shared->audio_device()->RecordingDeviceName(index, name, guid) != 0)
233 strncpy(strGuidUTF8, guid, strLen);
271 char guid[strLen]; local
274 if (_shared->audio_device()->PlayoutDeviceName(index, name, guid) != 0)
289 strncpy(strGuidUTF8, guid, strLen);
  /external/kernel-headers/original/uapi/sound/
firewire.h 42 unsigned char guid[8]; member in struct:snd_firewire_get_info

Completed in 3210 milliseconds

1 2 3 4