HomeSort by relevance Sort by last modified time
    Searched refs:watchID (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.idl 41 void clearWatch(long watchID);
Geolocation.cpp 159 int watchID;
162 watchID = executionContext()->circularSequentialID();
163 } while (!m_watchers.add(watchID, notifier));
164 return watchID;
266 void Geolocation::clearWatch(int watchID)
268 if (watchID <= 0)
271 if (GeoNotifier* notifier = m_watchers.find(watchID))
273 m_watchers.remove(watchID);
Geolocation.h 75 void clearWatch(int watchID);
  /external/lldb/include/lldb/Breakpoint/
WatchpointList.h 107 /// \a watchID, const
110 /// @param[in] watchID
118 FindByID (lldb::watch_id_t watchID) const;
174 /// Removes the watchpoint given by \b watchID from this list.
176 /// @param[in] watchID
180 /// \b true if the watchpoint \a watchID was in the list.
183 Remove (lldb::watch_id_t watchID, bool notify);
195 /// Enquires of the watchpoint in this list with ID \a watchID whether we
201 /// @param[in] watchID
209 lldb::watch_id_t watchID);
    [all...]
  /external/lldb/source/Plugins/Process/POSIX/
ProcessPOSIX.cpp 670 user_id_t watchID = wp->GetID();
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();
741 log->Printf("ProcessPOSIX::DisableWatchpoint(watchID = %" PRIu64 ")",
742 watchID);
746 log->Printf("ProcessPOSIX::DisableWatchpoint(watchID = %" PRIu64
748 watchID, (uint64_t)addr)
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp     [all...]

Completed in 196 milliseconds