HomeSort by relevance Sort by last modified time
    Searched defs:guid (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium/chrome/common/
guid.h 14 namespace guid { namespace
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 bool IsValidGUID(const std::string& guid);
30 } // namespace guid
guid.cc 5 #include "chrome/common/guid.h"
10 namespace guid { namespace
12 bool IsValidGUID(const std::string& guid) {
14 if (guid.length() != kGUIDLength)
18 for (uint32 i = 0; i < guid.length(); ++i) {
19 char current = guid[i];
32 } // namespace guid
guid_posix.cc 5 #include "chrome/common/guid.h"
10 namespace guid { namespace
28 } // namespace guid
guid_win.cc 5 #include "chrome/common/guid.h"
17 namespace guid { namespace
22 GUID guid; local
23 HRESULT guid_result = CoCreateGuid(&guid);
29 int result = StringFromGUID2(guid,
38 } // namespace guid
guid_unittest.cc 5 #include "chrome/common/guid.h"
14 std::string clientid = guid::RandomDataToGUIDString(bytes);
20 std::string clientid = guid::RandomDataToGUIDString(bytes);
28 std::string guid = guid::GenerateGUID(); local
29 EXPECT_TRUE(guid::IsValidGUID(guid));
36 std::string guid1 = guid::GenerateGUID();
37 std::string guid2 = guid::GenerateGUID();
  /external/chromium/chrome/browser/autofill/
autofill_profile.h 37 explicit AutofillProfile(const std::string& guid);
67 // This guid is the primary identifier for |AutofillProfile| objects.
68 const std::string guid() const { return guid_; } function in class:AutofillProfile
69 void set_guid(const std::string& guid) { guid_ = guid; }
164 // The guid of this profile.
credit_card.h 20 explicit CreditCard(const std::string& guid);
46 // The guid is the primary identifier for |CreditCard| objects.
47 const std::string guid() const { return guid_; } function in class:CreditCard
48 void set_guid(const std::string& guid) { guid_ = guid; }
126 // The guid of this credit card.
  /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...]
autofill_profile_model_associator_unittest.cc 98 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44B"; local
105 profile_specifics->set_guid(guid);
111 AutofillProfile *profile = new AutofillProfile(guid);
124 EXPECT_CALL(associator_, Associate(Pointee(guid), 1));
150 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44A"; local
152 AutofillProfile *profile = new AutofillProfile(guid);
219 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44C"; local
223 profile_specifics.set_guid(guid);
225 bundle.current_profiles.insert(guid);
237 std::string guid = "EDC609ED-7EEE-4F27-B00C-423242A9C44D" local
    [all...]
autofill_change_processor.cc 21 #include "chrome/common/guid.h"
344 std::string guid(guid::GenerateGUID());
345 if (guid::IsValidGUID(guid) == false) {
346 DCHECK(false) << "Guid generated is invalid " << guid;
350 p->set_guid(guid);
354 NOTREACHED() << "Couldn't add autofill profile: " << guid;
357 model_associator_->Associate(&guid, sync_id)
361 const std::string* guid = model_associator_->GetChromeNodeFromSyncId( local
394 const std::string *guid = model_associator_->GetChromeNodeFromSyncId(sync_id); local
    [all...]
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...]
autofill_model_associator.cc 23 #include "chrome/common/guid.h"
306 static std::string guid(guid::GenerateGUID());
308 p.set_guid(guid);
359 std::string guid = profile_in_web_db->guid(); local
360 Associate(&guid, sync_id);
365 std::string guid = guid::GenerateGUID(); local
366 if (guid::IsValidGUID(guid) == false)
    [all...]
  /external/aac/libSYS/src/
wav_file.cpp 178 UCHAR guid[16]; local
188 FDKfread_EL(&(guid), 16, 1, wav->fp);
190 /* check for PCM GUID */
191 for (i = 0; i < 16; i++) if (guid[i] != guidPCM[i]) break;
  /external/chromium/chrome/browser/
crash_handler_host_linux.cc 52 delete[] info->guid;
127 char* guid = new char[kGuidSize + 1]; local
145 iov[1].iov_base = guid;
286 guid[kGuidSize] = crash_url[kMaxActiveURLSize] = distro[kDistroSize] = 0;
300 info->guid_length = strlen(guid);
301 info->guid = guid;
  /external/chromium/chrome/browser/ui/webui/options/
autofill_options_handler.cc 19 #include "chrome/common/guid.h"
255 entry->Append(new StringValue((*i)->guid()));
267 entry->Append(new StringValue((*i)->guid()));
283 std::string guid; local
284 if (!args->GetString(0, &guid)) {
289 personal_data_->RemoveProfile(guid);
295 std::string guid; local
296 if (!args->GetString(0, &guid)) {
301 personal_data_->RemoveCreditCard(guid);
307 std::string guid; local
348 std::string guid; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
Xvlib.h 129 char guid[16]; /* Globally Unique IDentifier */ member in struct:__anon13372
Xvproto.h 114 CARD8 guid[16]; member in struct:__anon13379
  /external/webkit/Source/WebCore/storage/
AbstractDatabase.cpp 94 // FIXME: move all guid-related functions to a DatabaseVersionTracker class.
112 static inline void updateGuidVersionMap(int guid, String newVersion)
124 guidToVersionMap().set(guid, newVersion.isEmpty() ? String() : newVersion.threadsafeCopy());
145 int guid = stringIdentifierToGUIDMap.get(stringID); local
146 if (!guid) {
148 guid = currentNewGUID++;
149 stringIdentifierToGUIDMap.set(stringID, guid);
152 return guid;
265 LOG(StorageAPI, "Current cached version for guid %i is %s", m_guid, currentVersion.ascii().data());
267 LOG(StorageAPI, "No cached version for guid %i", m_guid)
    [all...]
DatabaseTracker.cpp 132 if (!m_database.executeCommand("CREATE TABLE Databases (guid INTEGER PRIMARY KEY AUTOINCREMENT, origin TEXT, name TEXT, displayName TEXT, estimatedSize INTEGER, path TEXT);")) {
212 SQLiteStatement statement(m_database, "SELECT guid FROM Databases WHERE origin=? AND name=?;");
453 int64_t guid = 0; local
460 SQLiteStatement statement(m_database, "SELECT guid FROM Databases WHERE origin=? AND name=?");
469 guid = statement.getColumnInt64(0);
472 if (guid == 0) {
479 LOG_ERROR("Could not retrieve guid for database %s in origin %s from the tracker database - it is invalid to set database details on a database that doesn't already exist in the tracker",
485 SQLiteStatement updateStatement(m_database, "UPDATE Databases SET displayName=?, estimatedSize=? WHERE guid=?");
491 updateStatement.bindInt64(3, guid);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5events.c 135 REFGUID guid; member in struct:__anon13517
177 result = IDirectInput_CreateDevice(dinput, inputs[i].guid,
  /external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.cc 680 // generate a GUID of the form XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX,
681 // for an eventual JID of private-chat-<GUID>@groupchat.google.com
682 char guid[37], guid_room[256]; local
683 for (size_t i = 0; i < ARRAY_SIZE(guid) - 1;) {
685 guid[i++] = '-';
687 sprintf(guid + i, "%04x", rand());
693 "private-chat-%s@%s", guid, pmuc_domain_.c_str());
  /external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager.cc 77 HDEVNOTIFY Register(REFGUID guid);
461 std::string name, guid; local
464 hr = GetStringProp(props, PKEY_AudioEndpoint_GUID, &guid);
468 out->id = guid;
579 HDEVNOTIFY DeviceWatcher::Register(REFGUID guid) {
583 dbdi.dbcc_classguid = guid;
  /external/chromium/chrome/browser/webdata/
autofill_table.cc 26 #include "chrome/common/guid.h"
62 DCHECK(guid::IsValidGUID(profile.guid()));
63 s->BindString(0, profile.guid());
87 DCHECK(guid::IsValidGUID(profile->guid()));
104 DCHECK(guid::IsValidGUID(credit_card.guid()));
105 s->BindString(0, credit_card.guid());
125 DCHECK(guid::IsValidGUID(credit_card->guid()))
968 std::string guid = s.ColumnString(0); local
1194 std::string guid = s.ColumnString(0); local
1271 std::string guid = s_profiles_get.ColumnString(0); local
1306 std::string guid = s_credit_cards_get.ColumnString(0); local
1344 std::string guid = s.ColumnString(0); local
2101 std::string guid = s.ColumnString(0); local
    [all...]
web_data_service.cc 416 void WebDataService::RemoveAutofillProfile(const std::string& guid) {
419 this, GetNextRequestHandle(), NULL, guid);
468 void WebDataService::RemoveCreditCard(const std::string& guid) {
471 this, GetNextRequestHandle(), NULL, guid);
1072 std::string guid = request->GetArgument(); local
1219 std::string guid = request->GetArgument(); local
    [all...]
  /external/libmtp/src/
ptp.c 2308 unsigned char guid[16]; local
    [all...]

Completed in 2119 milliseconds

1 2