Searched refs:guid (Results 26 - 50 of 317) sorted by relevance

1234567891011>>

/external/chromium_org/components/autofill/core/browser/
H A Dtest_personal_data_manager.cc44 return imported_profile.guid();
50 return imported_credit_card.guid();
H A Dpersonal_data_manager.cc43 explicit FormGroupMatchesByGUIDFunctor(const std::string& guid) argument
44 : guid_(guid) {
48 return form_group.guid() == guid_;
52 return form_group->guid() == guid_;
61 const std::string& guid) {
64 FormGroupMatchesByGUIDFunctor<T>(guid));
68 bool FindByGUID(const C& container, const std::string& guid) { argument
69 return FindElementByGUID<T>(container, guid) != container.end();
384 if (FindByGUID<AutofillProfile>(web_profiles_, profile.guid()))
405 AutofillProfile* existing_profile = GetProfileByGUID(profile.guid());
60 FindElementByGUID(const C& container, const std::string& guid) argument
428 GetProfileByGUID( const std::string& guid) argument
487 RemoveByGUID(const std::string& guid) argument
509 GetCreditCardByGUID(const std::string& guid) argument
751 std::string guid = new_profile.guid(); local
1010 std::string guid = local
1031 std::string guid = imported_card.guid(); local
[all...]
H A Dautofill_data_model_unittest.cc17 TestAutofillDataModel(const std::string& guid, const std::string& origin) argument
18 : AutofillDataModel(guid, origin) {}
36 TestAutofillDataModel model("guid", std::string());
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_change.cc24 DCHECK(type == ADD ? (profile && profile->guid() == key) : true);
25 DCHECK(type == UPDATE ? (profile && profile->guid() == key) : true);
H A Dautofill_table.cc15 #include "base/guid.h"
80 DCHECK(base::IsValidGUID(profile.guid()));
82 s->BindString(index++, profile.guid());
102 DCHECK(base::IsValidGUID(profile->guid()));
123 DCHECK(base::IsValidGUID(credit_card.guid()));
125 s->BindString(index++, credit_card.guid());
146 DCHECK(base::IsValidGUID(credit_card->guid()));
175 "SELECT guid, first_name, middle_name, last_name "
177 "WHERE guid=?"));
178 s.BindString(0, profile->guid());
399 RemoveAutofillProfilePieces(const std::string& guid, sql::Connection* db) argument
895 GetAutofillProfile(const std::string& guid, AutofillProfile** profile) argument
936 std::string guid = s.ColumnString(0); local
984 RemoveAutofillProfile(const std::string& guid) argument
1047 GetCreditCard(const std::string& guid, CreditCard** credit_card) argument
1075 std::string guid = s.ColumnString(0); local
1111 RemoveCreditCard(const std::string& guid) argument
1139 std::string guid = s_profiles_get.ColumnString(0); local
1164 std::string guid = s_credit_cards_get.ColumnString(0); local
1198 std::string guid = s_profiles_get.ColumnString(0); local
1231 std::string guid = s_credit_cards_get.ColumnString(0); local
1261 std::string guid = s.ColumnString(0); local
1276 AddAutofillGUIDToTrash(const std::string& guid) argument
1294 IsAutofillGUIDInTrash(const std::string& guid) argument
2052 std::string guid = s.ColumnString(0); local
2231 std::string guid = s.ColumnString(0); local
[all...]
H A Dautofill_webdata.h69 // |guid| is the identifer of the profile to remove.
70 virtual void RemoveAutofillProfile(const std::string& guid) = 0;
90 // |guid| is identifer of the credit card to remove.
91 virtual void RemoveCreditCard(const std::string& guid) = 0;
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dcros_device.py11 guid='cros:%s' % host_name)
/external/kernel-headers/original/uapi/sound/
H A Dfirewire.h42 unsigned char guid[8]; member in struct:snd_firewire_get_info
/external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
H A Did_mapping_helper_unittest.cc7 #include "base/guid.h"
81 EXPECT_TRUE(VerifyDictionary(public_id1, devices[0]->guid(), dictionary));
82 EXPECT_TRUE(VerifyDictionary(public_id2, devices[1]->guid(), dictionary));
83 EXPECT_TRUE(VerifyDictionary(public_id3, devices[2]->guid(), dictionary));
H A Did_mapping_helper.h33 const std::string& guid);
46 // device guid as the value.
/external/chromium_org/chrome/browser/sync/glue/
H A Dlocal_device_info_provider_mock.cc13 const std::string& guid,
22 guid,
38 return local_device_info_.get() ? local_device_info_->guid() : "";
12 LocalDeviceInfoProviderMock( const std::string& guid, const std::string& client_name, const std::string& chrome_version, const std::string& sync_user_agent, const sync_pb::SyncEnums::DeviceType device_type, const std::string& signin_scoped_device_id) argument
/external/chromium_org/content/browser/tracing/
H A Detw_system_event_consumer_win.cc23 std::string GuidToString(const GUID& guid) { argument
25 guid.Data1, guid.Data2, guid.Data3,
26 guid.Data4[0], guid.Data4[1], guid.Data4[2], guid.Data4[3],
27 guid.Data4[4], guid
[all...]
/external/chromium_org/chromeos/network/
H A Dmanaged_network_configuration_handler_impl.cc11 #include "base/guid.h"
81 const std::string& guid) {
82 GuidToPolicyMap::const_iterator it = policies.find(guid);
164 std::string guid; local
165 shill_properties->GetStringWithoutPathExpansion(shill::kGuidProperty, &guid);
168 FindPolicyByGUID(userhash, guid, &onc_source);
182 if (!guid.empty())
183 network_policy = GetByGUID(policies->per_network_config, guid);
241 std::string guid = state->guid(); local
80 GetByGUID(const GuidToPolicyMap& policies, const std::string& guid) argument
335 std::string guid = base::GenerateGUID(); local
388 std::string guid; local
510 FindPolicyByGUID( const std::string userhash, const std::string& guid, ::onc::ONCSource* onc_source) const argument
551 FindPolicyByGuidAndProfile( const std::string& guid, const std::string& profile_path) const argument
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/network_ui/
H A Dnetwork_ui.js117 * @param {string} guid The GUID identifying the network.
120 var createStateTableExpandButton = function(guid) {
125 toggleExpandRow(event.target, guid);
156 var guid = state.GUID;
157 row.appendChild(createStateTableExpandButton(guid));
228 * @param {string} guid GUID identifying the network.
230 var toggleExpandRow = function(btn, guid) {
238 var expandedRow = createExpandedRow(guid, row);
250 var createExpandedRow = function(guid, baseRow) {
269 networkConfig.getShillProperties(guid, showDetai
[all...]
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dnetwork_config_message_handler.cc31 bool GetServicePathFromGuid(const std::string& guid, argument
35 guid);
104 std::string guid; local
106 !arg_list->GetString(1, &guid)) {
110 if (!GetServicePathFromGuid(guid, &service_path)) {
126 std::string guid; local
128 !arg_list->GetString(1, &guid)) {
132 if (!GetServicePathFromGuid(guid, &service_path)) {
166 std::string guid; local
168 !arg_list->GetString(1, &guid)) {
[all...]
/external/chromium_org/chrome/browser/extensions/api/networking_private/
H A Dnetworking_private_chromeos.cc63 bool GetServicePathFromGuid(const std::string& guid, argument
67 GetStateHandler()->GetNetworkStateFromGuid(guid);
135 const std::string& guid,
139 if (!GetServicePathFromGuid(guid, &service_path, &error)) {
151 const std::string& guid,
155 if (!GetServicePathFromGuid(guid, &service_path, &error)) {
174 const std::string& guid,
178 if (!GetServicePathFromGuid(guid, &service_path, &error)) {
198 const std::string& guid,
203 if (!GetServicePathFromGuid(guid,
134 GetProperties( const std::string& guid, const DictionaryCallback& success_callback, const FailureCallback& failure_callback) argument
150 GetManagedProperties( const std::string& guid, const DictionaryCallback& success_callback, const FailureCallback& failure_callback) argument
173 GetState( const std::string& guid, const DictionaryCallback& success_callback, const FailureCallback& failure_callback) argument
197 SetProperties( const std::string& guid, scoped_ptr<base::DictionaryValue> properties, const VoidCallback& success_callback, const FailureCallback& failure_callback) argument
249 StartConnect( const std::string& guid, const VoidCallback& success_callback, const FailureCallback& failure_callback) argument
267 StartDisconnect( const std::string& guid, const VoidCallback& success_callback, const FailureCallback& failure_callback) argument
296 VerifyAndEncryptCredentials( const std::string& guid, const VerificationProperties& verification_properties, const StringCallback& success_callback, const FailureCallback& failure_callback) argument
354 GetCaptivePortalStatus( const std::string& guid, const StringCallback& success_callback, const FailureCallback& failure_callback) argument
[all...]
H A Dnetworking_private_service_client.h118 virtual void GetProperties(const std::string& guid,
122 const std::string& guid,
125 virtual void GetState(const std::string& guid,
128 virtual void SetProperties(const std::string& guid,
142 virtual void StartConnect(const std::string& guid,
146 const std::string& guid,
154 const std::string& guid,
173 const std::string& guid,
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalyze_counters.js33 if (!hitsByCounter[ctr.guid])
34 hitsByCounter[ctr.guid] = [];
35 hitsByCounter[ctr.guid].push(counterSampleHits[i]);
/external/chromium_org/components/test/data/web_database/
H A Dversion_48.sql10 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);
/external/chromium_org/tools/gyp/pylib/gyp/
H A DMSVSProject.py54 def __init__(self, project_path, version, name, guid=None, platforms=None):
61 guid: GUID to use for project, if not None.
67 self.guid = guid
196 'ProjectGUID': self.guid,
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dtwo_client_autofill_sync_test.cc176 RemoveProfile(1, GetAllProfiles(1)[0]->guid());
183 GetAllProfiles(0)[0]->guid(),
191 RemoveProfile(1, GetAllProfiles(1)[0]->guid());
264 RemoveProfile(1, GetAllProfiles(1)[0]->guid());
292 GetAllProfiles(0)[0]->guid(),
296 GetAllProfiles(0)[0]->guid(),
313 GetAllProfiles(0)[0]->guid(),
318 GetAllProfiles(1)[0]->guid(),
337 GetAllProfiles(0)[0]->guid(),
341 GetAllProfiles(0)[0]->guid(),
[all...]
H A Dautofill_helper.h78 // Removes the autofill profile with guid |guid| from sync profile
80 void RemoveProfile(int profile, const std::string& guid);
82 // Updates the autofill profile with guid |guid| in sync profile |profile|
85 const std::string& guid,
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dasync_slice.js35 obj[key] = this[key].guid;
/external/chromium_org/chrome/browser/chromeos/net/
H A Dnetwork_portal_detector_test_impl.h24 void SetDefaultNetworkForTesting(const std::string& guid);
25 void SetDetectionResultsForTesting(const std::string& guid,
/external/chromium_org/components/sync_driver/
H A Ddevice_info.h23 DeviceInfo(const std::string& guid,
33 // The same device might have more than 1 guid if the device has multiple
35 const std::string& guid() const;
68 // not unique enough so the user can be tracked. Exposing |guid|
90 // Exposing |guid| would lead to a stable unique id for a device which

Completed in 1724 milliseconds

1234567891011>>