Searched defs:watchID (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocation.cpp159 int watchID; local
162 watchID = executionContext()->circularSequentialID();
163 } while (!m_watchers.add(watchID, notifier));
164 return watchID;
266 void Geolocation::clearWatch(int watchID) argument
268 if (watchID <= 0)
271 if (GeoNotifier* notifier = m_watchers.find(watchID))
273 m_watchers.remove(watchID);
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.cpp670 user_id_t watchID = wp->GetID(); local
674 log->Printf ("ProcessPOSIX::EnableWatchpoint(watchID = %" PRIu64 ")",
675 watchID);
679 log->Printf("ProcessPOSIX::EnableWatchpoint(watchID = %" PRIu64
681 watchID, (uint64_t)addr);
737 user_id_t watchID = wp->GetID(); local
741 log->Printf("ProcessPOSIX::DisableWatchpoint(watchID = %" PRIu64 ")",
742 watchID);
746 log->Printf("ProcessPOSIX::DisableWatchpoint(watchID = %" PRIu64
748 watchID, (uint64_
[all...]
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp2335 user_id_t watchID = wp->GetID(); local
2339 log->Printf ("ProcessGDBRemote::EnableWatchpoint(watchID = %" PRIu64 ")", watchID);
2343 log->Printf("ProcessGDBRemote::EnableWatchpoint(watchID = %" PRIu64 ") addr = 0x%8.8" PRIx64 ": watchpoint already enabled.", watchID, (uint64_t)addr);
2377 user_id_t watchID = wp->GetID(); local
2384 log->Printf ("ProcessGDBRemote::DisableWatchpoint (watchID = %" PRIu64 ") addr = 0x%8.8" PRIx64, watchID, (uint64_t)addr);
2389 log->Printf ("ProcessGDBRemote::DisableWatchpoint (watchID = %" PRIu64 ") addr = 0x%8.8" PRIx64 " -- SUCCESS (already disabled)", watchID, (uint64_
[all...]

Completed in 127 milliseconds