Searched refs:guid (Results 151 - 175 of 317) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dupdate_screen_browsertest.cc101 void SetDefaultNetwork(const std::string& guid) { argument
103 network_portal_detector_->SetDefaultNetworkForTesting(guid);
107 const std::string& guid,
110 network_portal_detector_->SetDetectionResultsForTesting(guid, state);
106 SetDetectionResults( const std::string& guid, const NetworkPortalDetector::CaptivePortalState& state) argument
/external/chromium_org/content/browser/download/
H A Dbase_file.h74 // Set the client guid which will be used to identify the app to the
77 void SetClientGuid(const std::string& guid);
H A Ddownload_file_impl.h64 virtual void SetClientGuid(const std::string& guid) OVERRIDE;
/external/chromium_org/media/video/capture/win/
H A Dvideo_capture_device_mf_win.cc169 bool VideoCaptureDeviceMFWin::FormatFromGuid(const GUID& guid, argument
172 const GUID& guid; member in struct:media::__anon8706
185 if (kFormatMap[i].guid == guid) {
/external/chromium_org/chrome/browser/extensions/api/networking_private/
H A Dnetworking_private_event_router_chromeos.cc163 changes.push_back((*iter)->guid());
186 std::vector<std::string>(1, network->guid())));
195 const std::string path = network ? network->guid() : std::string();
/external/chromium_org/chromeos/dbus/
H A Dfake_shill_service_client.h80 const std::string& guid,
86 const std::string& guid,
94 const std::string& guid,
H A Dfake_shill_service_client.cc308 const std::string& guid,
313 AddServiceWithIPConfig(service_path, guid, name,
320 const std::string& guid,
327 service_path, guid, name, type, state, visible);
350 const std::string& guid,
368 // If |guid| is provided, set Service.GUID to that. Otherwise if a GUID is
370 // not enforce a valid guid, we do that at the NetworkStateHandler layer.
371 std::string guid_to_set = guid;
307 AddService(const std::string& service_path, const std::string& guid, const std::string& name, const std::string& type, const std::string& state, bool visible) argument
318 AddServiceWithIPConfig( const std::string& service_path, const std::string& guid, const std::string& name, const std::string& type, const std::string& state, const std::string& ipconfig_path, bool visible) argument
348 SetServiceProperties( const std::string& service_path, const std::string& guid, const std::string& name, const std::string& type, const std::string& state, bool visible) argument
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_test_utils.cc7 #include "base/guid.h"
183 const char* guid, const char* first_name, const char* middle_name,
188 if (guid)
189 profile->set_guid(guid);
182 SetProfileInfoWithGuid(AutofillProfile* profile, const char* guid, const char* first_name, const char* middle_name, const char* last_name, const char* email, const char* company, const char* address1, const char* address2, const char* city, const char* state, const char* zipcode, const char* country, const char* phone) argument
H A Dpersonal_data_manager.h88 // Saves |imported_profile| to the WebDB if it exists. Returns the guid of
93 // Saves a credit card value detected in |ImportedFormData|. Returns the guid
104 // Removes the profile or credit card represented by |guid|.
105 virtual void RemoveByGUID(const std::string& guid);
107 // Returns the profile with the specified |guid|, or NULL if there is no
108 // profile with the specified |guid|. Both web and auxiliary profiles may
110 AutofillProfile* GetProfileByGUID(const std::string& guid);
118 // Returns the credit card with the specified |guid|, or NULL if there is
119 // no credit card with the specified |guid|.
120 CreditCard* GetCreditCardByGUID(const std::string& guid);
[all...]
H A Dcredit_card.cc14 #include "base/guid.h"
113 CreditCard::CreditCard(const std::string& guid, const std::string& origin) argument
114 : AutofillDataModel(guid, origin),
504 set_guid(credit_card.guid());
557 return guid() == credit_card.guid() &&
666 << credit_card.guid()
H A Dcredit_card.h23 CreditCard(const std::string& guid, const std::string& origin);
/external/chromium_org/components/test/data/web_database/
H A Dversion_53.sql20 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, origin VARCHAR DEFAULT '');
22 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, origin VARCHAR DEFAULT '');
27 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
32 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
37 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);
43 CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
/external/chromium_org/chrome/browser/chromeos/
H A Dcustomization_document_unittest.cc241 std::string guid = variable
242 default_network ? default_network->guid() : std::string();
243 network_portal_detector_.SetDefaultNetworkForTesting(guid);
244 if (!guid.empty()) {
246 guid, online_state);
/external/chromium_org/components/wifi/
H A Dwifi_service_win.cc518 connected_properties.guid == network_guid) {
592 network_properties.guid = network_properties.ssid;
620 created_profiles_.SetWithoutPathExpansion(network_properties.guid,
624 *network_guid = network_properties.guid;
672 network_guid == properties.guid &&
683 NotifyNetworkChanged(properties.guid);
711 if (network_guid == properties.guid) {
905 if (network_guid == current_properties.guid &&
949 if (it->guid == network_guid)
959 if (!current_properties.guid
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_device/test/
H A Dfunc_test_manager.cc909 char guid[kAdmMaxGuidSize]; local
916 EXPECT_EQ(0, audioDevice->PlayoutDeviceName(n, name, guid));
919 guid=%s\n",
920 n, name, guid);
927 EXPECT_EQ(0, audioDevice->PlayoutDeviceName(-1, name, guid));
929 default guid=%s\n", -1, name, guid);
933 EXPECT_EQ(-1, audioDevice->PlayoutDeviceName(-1, name, guid));
941 EXPECT_EQ(0, audioDevice->RecordingDeviceName(n, name, guid));
944 guid
1007 char guid[kAdmMaxGuidSize]; local
2499 char guid[kAdmMaxGuidSize]; local
2561 char guid[kAdmMaxGuidSize]; local
[all...]
/external/chromium_org/chromeos/network/
H A Dnetwork_state_handler.cc9 #include "base/guid.h"
311 const std::string& guid) const {
312 DCHECK(!guid.empty());
316 if (network->guid() == guid)
794 if (!network->guid().empty()) {
797 // case a visible network with a specified guid gets configured with a
798 // new guid).
802 specifier_guid_map_[specifier] = network->guid();
806 std::string guid; local
[all...]
H A Dnetwork_state.cc180 dictionary->SetStringWithoutPathExpansion(shill::kGuidProperty, guid());
319 void NetworkState::SetGuid(const std::string& guid) { argument
320 guid_ = guid;
/external/chromium_org/chromeos/network/onc/
H A Donc_utils.cc325 std::string guid; local
326 cert->GetStringWithoutPathExpansion(certificate::kGUID, &guid);
339 LOG(ERROR) << "Certificate with GUID " << guid
343 certs_by_guid[guid] = pem;
636 std::string guid; local
637 network->GetStringWithoutPathExpansion(network_config::kGUID, &guid);
641 << guid;
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabase.cpp138 // FIXME: move all guid-related functions to a DatabaseVersionTracker class.
155 static inline void updateGuidVersionMap(DatabaseGuid guid, String newVersion) argument
168 guidToVersionMap().set(guid, newVersion.isEmpty() ? String() : newVersion.isolatedCopy());
189 DatabaseGuid guid = stringIdentifierToGUIDMap.get(stringID); local
190 if (!guid) {
192 guid = currentNewGUID++;
193 stringIdentifierToGUIDMap.set(stringID, guid);
196 return guid;
450 WTF_LOG(StorageAPI, "Current cached version for guid %i is %s", m_guid, currentVersion.ascii().data());
468 WTF_LOG(StorageAPI, "No cached version for guid
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/js/
H A Djquery-1.4.1.min.js31 v;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,i=a.length;e<i;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,i=0,j=a.length;i<j;i++){e=b(a[i],i,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=v}else if(b&&!c.isFunction(b)){d=b;b=v}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},
48 ""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&i?a.getAttribute(b,2):a.getAttribute(b);return a===null?v:a}return c.style(a,b,d)}});var ab=function(a){return a.replace(/[^\w\s\.\|`]/g,function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==z&&!a.frameElement)a=z;if(!d.guid)d.guid=c.guid++;if(f!==v){d=c.proxy(d);d.data=f}var e=c.data(a,"events")||c.data(a,"events",{}),i=c.data(a,"handle"),j;if(!i){j=
50 d,f,m,s))&&c.isFunction(m)){m.guid
[all...]
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dweb_data_service_unittest.cc297 AutofillProfileChange::ADD, profile.guid(), &profile);
334 AutofillProfileChange::REMOVE, profile.guid(), NULL);
339 wds_->RemoveAutofillProfile(profile.guid());
380 AutofillProfileChange::UPDATE, profile2.guid(), &profile2_changed);
433 wds_->RemoveCreditCard(credit_card.guid());
519 AutofillProfileChange::REMOVE, profile.guid(), NULL);
/external/chromium_org/components/search_engines/
H A Dtemplate_url_service_sync_unittest.cc101 bool contains_guid(const std::string& guid) const {
102 return change_map_.count(guid) != 0;
105 syncer::SyncChange change_for_guid(const std::string& guid) const {
106 DCHECK(contains_guid(guid));
107 return change_map_.find(guid)->second;
174 const std::string& guid = std::string(),
204 // the |url| and |guid| and initializing the date_created and last_modified
209 const std::string& guid);
260 const std::string& guid,
274 if (!guid
257 CreateTestTemplateURL( const base::string16& keyword, const std::string& url, const std::string& guid, time_t last_mod, bool safe_for_autoreplace, bool created_by_policy) const argument
346 CopyTemplateURL( const TemplateURLData* turl, const std::string& url, const std::string& guid) argument
385 std::string guid = GetGUID(*iter); local
404 std::string guid = GetGUID(*iter); local
424 std::string guid = GetGUID(*iter); local
612 std::string guid = GetGUID(*iter); local
644 std::string guid = GetGUID(*iter); local
683 std::string guid = GetGUID(*iter); local
[all...]
/external/chromium_org/components/storage_monitor/
H A Dvolume_mount_watcher_win.cc135 base::string16 guid; local
137 WriteInto(&guid, kMaxPathBufLen),
142 if (!GetVolumeNameForVolumeMountPoint(guid.c_str(),
143 WriteInto(&guid, kMaxPathBufLen),
154 StorageInfo::FIXED_MASS_STORAGE, base::UTF16ToUTF8(guid)));
174 StorageInfo::MakeDeviceId(type, base::UTF16ToUTF8(guid));
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dthread.js10 base.require('base.guid');
81 get guid() {
97 obj[key] = this[key].guid;
/external/chromium_org/components/sync_driver/
H A Dsync_prefs.h114 void SetSyncSessionsGUID(const std::string& guid);

Completed in 621 milliseconds

1234567891011>>