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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chromeos/test/data/network/
shill_l2tpipsec_clientcert.json 2 "GUID": "guid",
shill_output_l2tpipsec.json 0 { "GUID": "guid",
valid_l2tpipsec.onc 0 { "GUID": "guid",
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_wpa1.onc 2 "GUID":"{64c4f86b-cf6a-4e4a-8eff-456def}",
ethernet_with_eap.onc 21 "GUID":"guid",
  /external/chromium_org/base/
guid.cc 5 #include "base/guid.h"
11 bool IsValidGUID(const std::string& guid) {
13 if (guid.length() != kGUIDLength)
16 for (size_t i = 0; i < guid.length(); ++i) {
17 char current = guid[i];
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
device.py 13 guid: A unique id of the device. Subclass of device must specify this
15 guid.
18 def __init__(self, name, guid):
20 self._guid = guid
27 def guid(self): member in class:Device
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
AutofillTestHelper.java 27 AutofillProfile getProfile(final String guid) throws ExecutionException {
31 return PersonalDataManager.getInstance().getProfile(guid);
56 String guid = ThreadUtils.runOnUiThreadBlocking(new Callable<String>() {
63 return guid;
66 void deleteProfile(final String guid) throws InterruptedException {
70 PersonalDataManager.getInstance().deleteProfile(guid);
76 CreditCard getCreditCard(final String guid) throws ExecutionException {
80 return PersonalDataManager.getInstance().getCreditCard(guid);
95 String guid = ThreadUtils.runOnUiThreadBlocking(new Callable<String>() {
102 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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
qosname.h 19 typedef WINBOOL (WINAPI *WSC_INSTALL_QOS_TEMPLATE)(const LPGUID Guid,LPWSABUF QosName,LPQOS Qos);
20 typedef WINBOOL (WINAPI *WSC_REMOVE_QOS_TEMPLATE)(const LPGUID Guid,LPWSABUF QosName);
21 typedef WINBOOL (WINAPI *WPU_GET_QOS_TEMPLATE)(const LPGUID Guid,LPWSABUF QosName,LPQOS Qos);
ksguid.h 18 #define DEFINE_GUIDEX(name) EXTERN_C const CDECL GUID DECLSPEC_SELECTANY name = { STATICGUIDOF(name) }
20 #define DEFINE_GUIDEX(name) const CDECL GUID DECLSPEC_SELECTANY name = { STATICGUIDOF(name) }
23 #define STATICGUIDOF(guid) STATIC_##guid
sbe.h 16 GUID guidSubMediaType;
17 GUID guidFormatType;
guiddef.h 17 } GUID;
22 __extension__ template<typename T> const GUID &__mingw_uuidof();
48 #define DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) EXTERN_C const GUID DECLSPEC_SELECTANY name = { l,w1,w2,{ b1,b2,b3,b4,b5,b6,b7,b8 } }
50 #define DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) const GUID DECLSPEC_SELECTANY name = { l,w1,w2,{ b1,b2,b3,b4,b5,b6,b7,b8 } }
53 #define DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) EXTERN_C const GUID name
63 typedef GUID *LPGUID;
68 typedef const GUID *LPCGUID;
74 typedef GUID IID;
81 typedef GUID CLSID;
88 typedef GUID FMTID
    [all...]
pstore.h 121 typedef GUID UUID;
123 typedef GUID PST_PROVIDERID;
293 virtual HRESULT WINAPI Next(DWORD celt,GUID *rgelt,DWORD *pceltFetched) = 0;
304 HRESULT (WINAPI *Next)(IEnumPStoreTypes *This,DWORD celt,GUID *rgelt,DWORD *pceltFetched);
323 HRESULT WINAPI IEnumPStoreTypes_Next_Proxy(IEnumPStoreTypes *This,DWORD celt,GUID *rgelt,DWORD *pceltFetched);
342 virtual HRESULT WINAPI CreateType(PST_KEY Key,const GUID *pType,PPST_TYPEINFO pInfo,DWORD dwFlags) = 0;
343 virtual HRESULT WINAPI GetTypeInfo(PST_KEY Key,const GUID *pType,PPST_TYPEINFO *ppInfo,DWORD dwFlags) = 0;
344 virtual HRESULT WINAPI DeleteType(PST_KEY Key,const GUID *pType,DWORD dwFlags) = 0;
345 virtual HRESULT WINAPI CreateSubtype(PST_KEY Key,const GUID *pType,const GUID *pSubtype,PPST_TYPEINFO pInfo,PPST_ACCESSRULESET pRules,DWORD dwFlags) = 0
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-uuidof.cpp 1 // RUN: %clang_cc1 -emit-llvm %s -o - -DDEFINE_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-GUID
3 // RUN: %clang_cc1 -emit-llvm %s -o - -DDEFINE_GUID -DWRONG_GUID -triple=i386-pc-linux -fms-extensions | FileCheck %s --check-prefix=CHECK-DEFINE-WRONG-GUID
17 typedef struct _GUID GUID;
25 GUID thing = __uuidof(Curly);
26 // CHECK-DEFINE-GUID: @thing = global %struct._GUID zeroinitializer, align 4
27 // CHECK-DEFINE-WRONG-GUID: @thing = global %struct._GUID zeroinitializer, align 4
30 // CHECK-DEFINE-GUID: @g = global %struct._GUID zeroinitializer, align 4
31 // CHECK-DEFINE-WRONG-GUID: @g = global %struct._GUID zeroinitializer, align 4
32 GUID g = __uuidof(S1);
38 const GUID& gr = __uuidof(S1)
    [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/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 10 * guid: string,
157 * Removes the Autofill address or credit card represented by |guid|.
158 * @param {string} guid The GUID of the address to remove.
161 removeData_: function(guid) {
162 chrome.send('removeData', [guid]);
166 * Requests profile data for the address represented by |guid| from the
169 * @param {string} guid The GUID of the address to edit.
172 loadAddressEditor_: function(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...]

Completed in 1276 milliseconds

12 3 4 5 6 7 8 91011>>