/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);
|
guid_posix.cc | 5 #include "base/guid.h" 15 // Set the GUID to version 4 as described in RFC 4122, section 4.4. 16 // The format of GUID version 4 must be xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx, 42 } // namespace guid
|
/external/chromium_org/components/invalidation/ |
invalidation_service_util.cc | 37 // Generate a GUID with 128 bits worth of base64-encoded randomness. 40 std::string guid; local 41 base::Base64Encode(base::RandBytesAsString(kGuidBytes), &guid); local 42 DCHECK(!guid.empty()); 43 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
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
dxgi.h | 211 REFGUID guid, 216 REFGUID guid, 220 REFGUID guid, 251 REFGUID guid, 257 REFGUID guid, 262 REFGUID guid, 284 #define IDXGIObject_SetPrivateData(This,guid,data_size,data) (This)->lpVtbl->SetPrivateData(This,guid,data_size,data) 285 #define IDXGIObject_SetPrivateDataInterface(This,guid,object) (This)->lpVtbl->SetPrivateDataInterface(This,guid,object [all...] |
ktmtypes.h | 95 typedef GUID UOW, *PUOW; 98 typedef GUID CRM_PROTOCOL_ID, *PCRM_PROTOCOL_ID; 110 GUID EnlistmentId; 111 /* UOW is typedef'ed as GUID just above. Changed type of UOW 112 * to GUID from UOW for C++ compat. using ::UOW for C++ works 114 * MSDN documents this structure with "GUID UOW;" anyway. */ 115 GUID UOW; 119 GUID TmIdentity; 129 GUID UOW; 130 GUID TmIdentity [all...] |
appmgmt.h | 22 GUID GPOId; 27 GUID Clsid; 70 GUID GpoId; 72 GUID ProductId; 86 GUID AppCategoryId; 101 DWORD WINAPI GetManagedApplications(GUID *pCategory,DWORD dwQueryFlags,DWORD dwInfoLevel,LPDWORD pdwApps,PMANAGEDAPPLICATION *prgManagedApps);
|
mssip.h | 26 GUID *pgSubjectType; 104 typedef WINBOOL (WINAPI *pfnIsFileSupported)(HANDLE hFile,GUID *pgSubject); 105 typedef WINBOOL (WINAPI *pfnIsFileSupportedName)(WCHAR *pwszFileName,GUID *pgSubject); 109 GUID *pgSubject; 125 extern WINBOOL WINAPI CryptSIPLoad(const GUID *pgSubject,DWORD dwFlags,SIP_DISPATCH_INFO *pSipDispatch); 126 extern WINBOOL WINAPI CryptSIPRetrieveSubjectGuid(LPCWSTR FileName,HANDLE hFileIn,GUID *pgSubject); 127 extern WINBOOL WINAPI CryptSIPRetrieveSubjectGuidForCatalogFile(LPCWSTR FileName,HANDLE hFileIn,GUID *pgSubject); 129 extern WINBOOL WINAPI CryptSIPRemoveProvider(GUID *pgProv);
|
d3d11.h | 962 REFGUID guid, 967 REFGUID guid, 972 REFGUID guid, 1002 REFGUID guid, 1008 REFGUID guid, 1014 REFGUID guid, [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}",
|
l2tpipsec_clientcert_with_cert_pems.onc | 0 { "GUID": "guid",
|
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}",
|
/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);
|
/frameworks/av/soundtrigger/ |
SoundTrigger.cpp | 241 status_t SoundTrigger::stringToGuid(const char *str, sound_trigger_uuid_t *guid) 243 if (str == NULL || guid == NULL) { 253 guid->timeLow = (uint32_t)tmp[0]; 254 guid->timeMid = (uint16_t)tmp[1]; 255 guid->timeHiAndVersion = (uint16_t)tmp[2]; 256 guid->clockSeq = (uint16_t)tmp[3]; 257 guid->node[0] = (uint8_t)tmp[4]; 258 guid->node[1] = (uint8_t)tmp[5]; 259 guid->node[2] = (uint8_t)tmp[6]; 260 guid->node[3] = (uint8_t)tmp[7] [all...] |
/external/chromium_org/chrome/browser/extensions/api/networking_private/ |
networking_private_chromeos.h | 25 virtual void GetProperties(const std::string& guid, 29 const std::string& guid, 32 virtual void GetState(const std::string& guid, 35 virtual void SetProperties(const std::string& guid, 49 virtual void StartConnect(const std::string& guid, 53 const std::string& guid, 61 const std::string& guid, 80 const std::string& guid,
|
/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 | 57 public static AutofillProfile create(String guid, String origin, 62 return new AutofillProfile(guid, origin, fullName, companyName, 68 public AutofillProfile(String guid, String origin, String fullName, String companyName, 74 mGUID = guid; 164 public void setGUID(String guid) { 165 mGUID = guid; 240 public static CreditCard create(String guid, String origin, String name, String number, 242 return new CreditCard(guid, origin, name, number, obfuscatedNumber, month, year); 245 public CreditCard(String guid, String origin, String name, String number, 247 mGUID = guid; [all...] |
/external/chromium_org/chrome/browser/ui/webui/options/ |
autofill_options_handler.h | 60 // |args| - A string, the GUID of the address or credit card to remove. 65 // |args| - A string, the GUID of the address to load. 75 // |args| - A string, the GUID of the credit card to load. 78 // Adds or updates an address, depending on the GUID of the profile. If the 79 // GUID is empty, a new address is added to the WebDatabase; otherwise, the 80 // address with the matching GUID is updated. Called from WebUI. 81 // |args| - an array containing the GUID of the address followed by the 85 // Adds or updates a credit card, depending on the GUID of the profile. If the 86 // GUID is empty, a new credit card is added to the WebDatabase; otherwise, 87 // the credit card with the matching GUID is updated. Called from WebUI [all...] |