HomeSort by relevance Sort by last modified time
    Searched full:guid (Results 26 - 50 of 804) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
AutofillTestHelper.java 26 AutofillProfile getProfile(final String guid) throws ExecutionException {
30 return PersonalDataManager.getInstance().getProfile(guid);
46 String guid = ThreadUtils.runOnUiThreadBlocking(new Callable<String>() {
53 return guid;
56 void deleteProfile(final String guid) throws InterruptedException {
60 PersonalDataManager.getInstance().deleteProfile(guid);
66 CreditCard getCreditCard(final String guid) throws ExecutionException {
70 return PersonalDataManager.getInstance().getCreditCard(guid);
85 String guid = ThreadUtils.runOnUiThreadBlocking(new Callable<String>() {
92 return guid;
    [all...]
  /external/chromium_org/tools/symsrc/
pdb_fingerprint_from_img.py 22 __GUID_format__ = ('GUID',
40 guid = pefile.Structure(__GUID_format__)
41 guid.__unpack__(cv.Signature)
42 guid.Data4_0 = ''.join("%02X" % ord(x) for x in guid.Data4[0:2])
43 guid.Data4_1 = ''.join("%02X" % ord(x) for x in guid.Data4[2:])
46 guid.Data1, guid.Data2, guid.Data3
    [all...]
  /external/chromium_org/chromeos/test/data/network/policy/
policy_wifi1.onc 4 "GUID": "policy_wifi1",
shill_policy_on_unconfigured_wifi1.json 2 "GUID": "policy_wifi1",
shill_policy_on_unmanaged_wifi1.json 2 "GUID": "policy_wifi1",
shill_policy_on_unmanaged_wifi1_wo_uidata.json 2 "GUID": "policy_wifi1",
shill_unmanaged_wifi1.json 2 "GUID": "{unmanaged_user_wifi1}",
  /external/chromium_org/chromeos/test/data/network/
shill_wifi_wpa1.json 2 "GUID":"{64c4f86b-cf6a-4e4a-8eff-456def}",
toplevel_wifi_remove.onc 4 "GUID": "{485d6076-dd44-6b6d-69787465725f5045}",
translation_of_shill_wifi_clientcert.onc 2 "GUID":"{77db0089-0bc8-4358-929c-123xcv}",
translation_of_shill_wifi_wpa1.onc 2 "GUID":"{64c4f86b-cf6a-4e4a-8eff-456def}",
ethernet_with_eap.onc 21 "GUID":"guid",
l2tpipsec_clientcert_with_cert_pems.onc 0 { "GUID": "guid",
  /external/chromium_org/net/tools/quic/
quic_time_wait_list_manager_test.cc 56 QuicGuid guid) {
57 return manager->GetQuicVersionFromGuid(guid);
88 void AddGuid(QuicGuid guid) {
89 AddGuid(guid, net::test::QuicVersionMax(), NULL);
92 void AddGuid(QuicGuid guid,
95 time_wait_list_manager_.AddGuidToTimeWait(guid, version, packet);
98 bool IsGuidInTimeWait(QuicGuid guid) {
99 return time_wait_list_manager_.IsGuidInTimeWait(guid);
102 void ProcessPacket(QuicGuid guid, const QuicEncryptedPacket& packet) {
105 guid,
322 << " guid: " << guid; local
327 QuicGuid guid = 1; local
    [all...]
quic_time_wait_list_manager.cc 29 // Time period for which the guid should live in time wait state..
56 GuidAddTime(QuicGuid guid, const QuicTime& time)
57 : guid(guid),
61 QuicGuid guid; member in struct:net::tools::QuicTimeWaitListManager::GuidAddTime
67 // a guid in time wait state.
121 QuicGuid guid,
124 DCHECK(!IsGuidInTimeWait(guid));
125 // Initialize the guid with 0 packets received.
127 guid_map_.insert(make_pair(guid, data))
    [all...]
  /external/chromium_org/net/tools/quic/test_tools/
mock_quic_dispatcher.cc 14 QuicGuid guid,
16 : QuicDispatcher(config, crypto_config, QuicSupportedVersions(), guid,
  /external/clang/test/CodeGenCXX/
microsoft-uuidof-unsupported-target.cpp 9 } GUID;
13 GUID g = __uuidof(S); // expected-error {{__uuidof codegen is not supported on this architecture}}
  /external/lzma/CPP/7zip/Archive/
DllExports2.cpp 50 STDAPI CreateCoder(const GUID *clsid, const GUID *iid, void **outObject);
51 STDAPI CreateArchiver(const GUID *classID, const GUID *iid, void **outObject);
53 STDAPI CreateObject(const GUID *clsid, const GUID *iid, void **outObject)
  /external/chromium_org/chrome/browser/resources/options/
autofill_options.js 125 * Removes the Autofill address or credit card represented by |guid|.
126 * @param {string} guid The GUID of the address to remove.
129 removeData_: function(guid) {
130 chrome.send('removeData', [guid]);
134 * Requests profile data for the address represented by |guid| from the
137 * @param {string} guid The GUID of the address to edit.
140 loadAddressEditor_: function(guid) {
141 chrome.send('loadAddressEditor', [guid]);
    [all...]
  /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/base/
guid.h 16 // Generate a 128-bit random GUID of the form: "%08X-%04X-%04X-%04X-%012llX".
17 // If GUID generation fails an empty string is returned.
19 // the GUID. The Windows implementation uses system services.
22 // Returns true if the input string conforms to the GUID format.
23 BASE_EXPORT bool IsValidGUID(const std::string& guid);
  /external/chromium_org/chrome/browser/invalidation/
invalidation_service_util.cc 47 // Generate a GUID with 128 bits worth of base64-encoded randomness.
50 std::string guid; local
51 base::Base64Encode(base::RandBytesAsString(kGuidBytes), &guid); local
52 DCHECK(!guid.empty());
53 return guid;
  /external/lzma/CPP/Common/
MyGuidDef.h 13 } GUID;
16 #define REFGUID const GUID &
18 #define REFGUID const GUID *
50 MY_EXTERN_C const GUID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
53 MY_EXTERN_C const GUID name
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator.cc 12 #include "chrome/common/guid.h"
67 << p->guid();
79 std::string guid((*ix)->guid());
80 if (guid::IsValidGUID(guid) == false) {
81 DCHECK(false) << "Guid in the web db is invalid " << guid;
86 if (node.InitByClientTagLookup(syncable::AUTOFILL_PROFILE, guid) &&
90 current_profiles->find(guid) == current_profiles->end())
321 std::string guid = autofill_specifics.guid(); local
352 std::string guid = profile.guid(); local
    [all...]
  /external/chromium/chrome/common/
guid_posix.cc 5 #include "chrome/common/guid.h"
10 namespace guid { namespace
28 } // namespace guid

Completed in 397 milliseconds

12 3 4 5 6 7 8 91011>>