Searched refs:guid (Results 76 - 100 of 317) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/download/
H A Ddownload_file.h79 virtual void SetClientGuid(const std::string& guid) = 0;
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dandroid_device.py24 name='Android device %s' % device_id, guid=device_id)
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_webdata_backend_impl.cc175 AutofillProfileChange::ADD, profile.guid(), &profile);
190 if (!AutofillTable::FromWebDatabase(db)->GetAutofillProfile(profile.guid(),
203 AutofillProfileChange::UPDATE, profile.guid(), &profile);
212 const std::string& guid, WebDatabase* db) {
215 if (!AutofillTable::FromWebDatabase(db)->GetAutofillProfile(guid, &profile)) {
221 if (!AutofillTable::FromWebDatabase(db)->RemoveAutofillProfile(guid)) {
227 AutofillProfileChange change(AutofillProfileChange::REMOVE, guid, NULL);
276 if (!AutofillTable::FromWebDatabase(db)->GetCreditCard(credit_card.guid(),
290 const std::string& guid, WebDatabase* db) {
292 if (!AutofillTable::FromWebDatabase(db)->RemoveCreditCard(guid)) {
211 RemoveAutofillProfile( const std::string& guid, WebDatabase* db) argument
289 RemoveCreditCard( const std::string& guid, WebDatabase* db) argument
[all...]
H A Dautofill_table.h52 // guid A guid string to uniquely identify the profile.
82 // guid The guid string that identifies the profile to which
93 // guid The guid string that identifies the profile to which
101 // guid The guid string that identifies the profile to which the
107 // profiles. When a profile is removed its guid is added
110 // guid Th
[all...]
H A Dautofill_profile_syncable_service.cc7 #include "base/guid.h"
115 << p->guid();
147 bundle.profiles_to_delete.push_back(profile_to_merge->second->guid());
151 << "Found similar profile in sync db but with a different guid: "
154 << "New guid " << it->second->guid()
156 << profile_to_merge->second->guid();
244 std::string guid = i->sync_data().GetSpecifics(). local
245 autofill_profile().guid();
246 bundle.profiles_to_delete.push_back(guid);
[all...]
H A Dautofill_profile_syncable_service_unittest.cc459 autofill_specifics->set_guid(profile.guid());
472 profile.guid(), profile.guid(), specifics));
514 EXPECT_EQ(guid_present1, data[0].GetSpecifics().autofill_profile().guid());
515 EXPECT_EQ(guid_present2, data[1].GetSpecifics().autofill_profile().guid());
575 EXPECT_EQ(kGuid1, specifics.guid());
594 EXPECT_EQ(kGuid2, specifics.guid());
867 autofill_specifics->set_guid(profile.guid());
882 profile.guid(), profile.guid(), specific
[all...]
/external/chromium_org/chromeos/network/
H A Dmanaged_network_configuration_handler.h117 // |guid|. If |userhash| is empty, only looks for a device policy. If such
121 const std::string& guid,
129 // Returns the policy with |guid| for profile |profile_path|. If such
132 const std::string& guid,
H A Dmock_managed_network_configuration_handler.h59 const std::string& guid,
65 const base::DictionaryValue*(const std::string& guid,
/external/chromium_org/chromeos/network/onc/
H A Donc_certificate_importer_impl.h93 const std::string& guid,
98 static bool ParseClientCertificate(const std::string& guid,
H A Donc_certificate_importer_impl_unittest.cc127 std::string* guid) {
129 if (!guid)
130 guid = &guid_temporary;
146 certificate->GetStringWithoutPathExpansion(::onc::certificate::kGUID, guid);
205 std::string guid; local
206 AddCertificateFromFile("certificate-client.onc", net::USER_CERT, &guid);
219 EXPECT_STREQ(guid.c_str(), name);
125 AddCertificateFromFile(std::string filename, net::CertType expected_type, std::string* guid) argument
/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
H A Daudio_e2e_harness.cc73 char guid[128] = {0}; local
78 guid));
/external/chromium_org/chrome/utility/media_galleries/
H A Diphoto_library_parser_unittest.cc44 #define SIMPLE_PHOTO(id, guid, path, caption) \
52 " <string>" #guid "</string>" \
72 #define MALFORMED_PHOTO1(id, guid, path, caption) \
80 " <string>" #guid "</string>" \
88 #define MALFORMED_PHOTO2(id, guid, path, caption) \
96 " <string>" #guid "</string>" \
/external/chromium_org/components/wifi/
H A Dfake_wifi_service.cc19 network_properties.guid = "stub_wifi1_guid";
45 network_properties.guid = "stub_wifi2_guid";
116 network_properties.guid = network_properties.ssid;
118 *network_guid = network_properties.guid;
191 if (it->guid == network_guid)
215 current_networks.push_back(it->guid);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
H A Dtest_subpicture.c33 static void PrintGUID(const char *guid) argument
38 printf("%C,", guid[i] == 0 ? '0' : guid[i]);
40 printf("%x,", (unsigned char)guid[i]);
41 printf("%x\n", (unsigned int)guid[15]);
109 PrintGUID(subpics[i].guid);
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtest_subpicture.c33 static void PrintGUID(const char *guid) argument
38 printf("%C,", guid[i] == 0 ? '0' : guid[i]);
40 printf("%x,", (unsigned char)guid[i]);
41 printf("%x\n", (unsigned int)guid[15]);
109 PrintGUID(subpics[i].guid);
/external/chromium_org/chrome/browser/autofill/android/
H A Dpersonal_data_manager_android.cc41 ConvertUTF8ToJavaString(env, profile.guid()).obj(),
135 ConvertUTF8ToJavaString(env, card.guid()).obj(),
214 std::string guid = ConvertJavaStringToUTF8( local
221 if (guid.empty()) {
224 profile.set_guid(guid);
228 return ConvertUTF8ToJavaString(env, profile.guid());
263 std::string guid = ConvertJavaStringToUTF8( local
270 if (guid.empty()) {
273 card.set_guid(guid);
276 return ConvertUTF8ToJavaString(env, card.guid());
[all...]
/external/chromium_org/components/test/data/web_database/
H A Dversion_37.sql15 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);
H A Dversion_38.sql15 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);
H A Dversion_39.sql15 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);
H A Dversion_40.sql17 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);
H A Dversion_41.sql17 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);
H A Dversion_42.sql18 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);
19 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
20 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
21 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
22 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_org/chrome/browser/ui/webui/options/
H A Dautofill_options_handler.cc11 #include "base/guid.h"
437 entry->Append(new base::StringValue(profiles[i]->guid()));
451 entry->Append(new base::StringValue(card->guid()));
473 std::string guid; local
474 if (!args->GetString(0, &guid)) {
479 personal_data_->RemoveByGUID(guid);
485 std::string guid; local
486 if (!args->GetString(0, &guid)) {
491 AutofillProfile* profile = personal_data_->GetProfileByGUID(guid);
530 std::string guid; local
570 std::string guid; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dgen_msvs_sln.sh60 local guid=`grep ProjectGUID "$file" | awk 'BEGIN {FS="\""}{if (NR==1) print $2}'`
63 local guid=`grep ProjectGuid "$file" | sed 's,.*<.*>\(.*\)</.*>.*,\1,'`
73 eval "${var}_guid=$guid"
96 eval "local guid=\${$1_guid}"
103 eval "${var}_guid=$guid"
105 echo "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"$name\", \"$file\", \"$guid\""
/external/libvpx/libvpx/build/make/
H A Dgen_msvs_sln.sh60 local guid=`grep ProjectGUID "$file" | awk 'BEGIN {FS="\""}{if (NR==1) print $2}'`
63 local guid=`grep ProjectGuid "$file" | sed 's,.*<.*>\(.*\)</.*>.*,\1,'`
73 eval "${var}_guid=$guid"
96 eval "local guid=\${$1_guid}"
103 eval "${var}_guid=$guid"
105 echo "Project(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"$name\", \"$file\", \"$guid\""

Completed in 8708 milliseconds

1234567891011>>