/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...] |
/external/chromium_org/chrome/browser/extensions/api/signed_in_devices/ |
id_mapping_helper.h | 29 // Gets public id from GUID, given a dictionary that has the mapping. 30 // If it cannot find the GUID the public id returned will be empty. 33 const std::string& guid); 35 // Gets the GUID from public id given a dictionary that has the mapping. 36 // If it cannot find the public id, the GUID returned will be empty. 46 // device guid as the value.
|
/external/chromium_org/chromeos/test/data/network/ |
toplevel_partially_invalid.onc | 3 [ { "GUID": "123", 33 { "GUID": "guid", 42 "GUID": "test-ca", 47 "GUID": "{f998f760-272b-6939-4c2beffe428697ac}", 52 "GUID": "{456}",
|
toplevel_with_unknown_fields.onc | 5 "GUID": "{485d6076-dd44-6b6d-69787465725f5045}", 18 "GUID": "{485d6076-dd44-6b6d-69787465725f5046}",
|
translation_of_shill_l2tpipsec.onc | 0 { "GUID": "guid",
|
certificate-authority.onc | 4 "GUID": "{f998f760-272b-6939-4c2beffe428697ab}",
|
certificate-server-update.onc | 4 "GUID": "{f998f760-272b-6939-4c2beffe428697ab}",
|
certificate-web-authority-update.onc | 4 "GUID": "{f998f760-272b-6939-4c2beffe428697ac}",
|
certificate-web-authority.onc | 4 "GUID": "{f998f760-272b-6939-4c2beffe428697ab}",
|
decrypted.onc | 4 "GUID": "{64369ad3-9aec-0d1e-e7bb495970da2f33}",
|
managed_toplevel1.onc | 3 [ { "GUID": "123", 32 { "GUID": "guid", 42 "GUID": "{f998f760-272b-6939-4c2beffe428697ac}",
|
managed_toplevel1_with_cert_pems.onc | 3 [ { "GUID": "123", 32 { "GUID": "guid", 42 "GUID": "{f998f760-272b-6939-4c2beffe428697ac}",
|
managed_toplevel_wifi_peap.onc | 4 "GUID": "{485d6076-dd44-6b6d-69787465725f5045}",
|
shill_openvpn_clientcert.json | 2 "GUID": "{84391467-dd8b-4c66-9b52-860583038351}",
|
shill_wifi_clientcert.json | 5 "GUID": "{77db0089-0bc8-4358-929c-123xcv}",
|
shill_wifi_clientref.json | 5 "GUID": "{77db0089-0bc8-4358-929c-123xcv}",
|
shill_wifi_psk.json | 3 "GUID": "{64c4f86b-cf6a-4e4a-8eff-456def}",
|
/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);
|
/external/chromium_org/net/tools/quic/ |
quic_time_wait_list_manager.h | 31 // Maintains a list of all guids that have been recently closed. A guid lives in 36 // with the guid in time wait state. After the guid expires its time wait 38 // for this guid. 49 // Adds the given guid to time wait state for kTimeWaitPeriod. Henceforth, 50 // any packet bearing this guid should not be processed while the guid remains 53 // is sent with the specified |version|. DCHECKs that guid is not already on 55 void AddGuidToTimeWait(QuicGuid guid, 59 // Returns true if the guid is in time wait state, false otherwise. Packet [all...] |
quic_dispatcher.cc | 90 QuicGuid guid, 95 SessionMap::iterator it = session_map_.find(guid); 97 if (time_wait_list_manager_->IsGuidInTimeWait(guid)) { 100 guid, 109 session = CreateQuicSession(guid, server_address, client_address); 113 DLOG(INFO) << "Failed to create session for " << guid; 114 // Add this guid fo the time-wait state, to safely reject future packets. 117 time_wait_list_manager_->AddGuidToTimeWait(guid, 122 guid, 126 DLOG(INFO) << "Created new session for " << guid; [all...] |
/external/chromium_org/components/test/data/autofill/merge/tools/ |
serialize_profiles.py | 41 guid = profile[0] 42 profiles[guid] = zip(types, profile) 54 guid = profile[0] 55 profiles[guid].extend(zip(types, profile)) 66 guid = profile[0] 67 profiles[guid].extend(zip(types, profile)) 78 guid = profile[0] 79 profiles[guid].append(("PHONE_HOME_WHOLE_NUMBER", profile[2]))
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/autofill/ |
PersonalDataManager.java | 45 public static AutofillProfile create(String guid, String origin, String fullName, 48 return new AutofillProfile(guid, origin, fullName, companyName, addressLine1, 52 public AutofillProfile(String guid, String origin, String fullName, String companyName, 55 mGUID = guid; 133 public void setGUID(String guid) { 134 mGUID = guid; 194 public static CreditCard create(String guid, String origin, String name, String number, 196 return new CreditCard(guid, origin, name, number, obfuscatedNumber, month, year); 199 public CreditCard(String guid, String origin, String name, String number, 201 mGUID = guid; [all...] |
/external/chromium_org/chrome/browser/ui/webui/options/ |
autofill_options_handler.h | 50 // |args| - A string, the GUID of the address or credit card to remove. 55 // |args| - A string, the GUID of the address to load. 60 // |args| - A string, the GUID of the credit card to load. 63 // Adds or updates an address, depending on the GUID of the profile. If the 64 // GUID is empty, a new address is added to the WebDatabase; otherwise, the 65 // address with the matching GUID is updated. Called from WebUI. 66 // |args| - an array containing the GUID of the address followed by the 70 // Adds or updates a credit card, depending on the GUID of the profile. If the 71 // GUID is empty, a new credit card is added to the WebDatabase; otherwise, 72 // the credit card with the matching GUID is updated. Called from WebUI [all...] |
/external/chromium_org/chromeos/test/data/network/policy/ |
policy_wifi1_with_redundant_fields.onc | 4 "GUID": "policy_wifi1",
|
shill_managed_wifi1.json | 5 "GUID": "policy2_wifi1",
|