HomeSort by relevance Sort by last modified time
    Searched refs:EventType (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/event/
KeyStoreModelEvent.java 26 private final EventType eventType;
38 public enum EventType
46 public EventType getEventType()
48 return eventType;
60 * Constructs a new event given an {@link ITreeNode} and a {@link KeyStoreModelEvent#EventType}.
62 public KeyStoreModelEvent(ITreeNode treeNodeItem, EventType eventType)
64 this.eventType = eventType;
    [all...]
  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/adt/
StudioAndroidEventManager.java 31 private static final HashMap<EventType, List<DdmsRunnable>> listeners =
32 new HashMap<EventType, List<DdmsRunnable>>();
34 public enum EventType
40 public static void addEventListener(EventType type, DdmsRunnable listener)
54 public static void removeEventListener(EventType type, DdmsRunnable listener)
152 addEventListener(EventType.DEVICE_CONNECTED, connectedListener);
156 addEventListener(EventType.DEVICE_DISCONNECTED, disconnectedListener);
176 removeEventListener(EventType.DEVICE_CONNECTED, connectedListener);
180 removeEventListener(EventType.DEVICE_DISCONNECTED, disconnectedListener);
186 public static void fireEvent(EventType type, final String serialNumber
    [all...]
  /external/chromium/net/base/
net_log.h 40 enum EventType {
80 // particular EventType uses, in order to get at the individual components.
122 virtual void AddEntry(EventType type,
140 static const char* EventTypeToString(EventType event_type);
143 static std::vector<EventType> GetAllEventTypes();
153 static Value* EntryToDictionaryValue(NetLog::EventType type,
176 void AddEntry(NetLog::EventType type,
181 NetLog::EventType type,
189 void AddEvent(NetLog::EventType event_type,
191 void BeginEvent(NetLog::EventType event_type
    [all...]
net_log_unittest.h 28 NetLog::EventType expected_event,
63 NetLog::EventType expected_event,
73 NetLog::EventType expected_event,
83 NetLog::EventType expected_event) {
91 NetLog::EventType expected_event) {
98 NetLog::EventType type) {
118 NetLog::EventType expected_event,
138 NetLog::EventType expected_event,
capturing_net_log.h 26 Entry(EventType type,
33 EventType type;
58 virtual void AddEntry(EventType type,
net_log.cc 30 const char* NetLog::EventTypeToString(EventType event) {
40 std::vector<NetLog::EventType> NetLog::GetAllEventTypes() {
41 std::vector<NetLog::EventType> types;
74 Value* NetLog::EntryToDictionaryValue(NetLog::EventType type,
112 NetLog::EventType type,
121 NetLog::EventType type,
131 NetLog::EventType event_type,
137 NetLog::EventType event_type,
143 NetLog::EventType event_type,
148 void BoundNetLog::EndEventWithNetErrorCode(NetLog::EventType event_type
    [all...]
  /external/valgrind/tsan/
ts_events.h 41 enum EventType {
103 Event(EventType type, int32_t tid, uintptr_t pc, uintptr_t a, uintptr_t info)
112 void Init(EventType type, int32_t tid, uintptr_t pc, uintptr_t a, uintptr_t info) {
121 EventType type() const { return type_; }
131 static const char *TypeString(EventType type) {
135 EventType type_;
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
LintListener.java 33 public enum EventType {
60 * {@link EventType#STARTING}, {@link EventType#CANCELED} or
61 * {@link EventType#COMPLETED} events which are fired outside of project
68 public void update(@NonNull LintDriver driver, @NonNull EventType type,
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/command/
RefreshHandler.java 22 import com.motorolamobility.studio.android.certmanager.event.KeyStoreModelEvent.EventType;
34 KeyStoreModelEventManager.getInstance().fireEvent(getSelection().get(0), EventType.REFRESH);
  /external/chromium/chrome/common/deprecated/
event_sys-inl.h 23 // 1. Choose an EventType. This could be an Enum or something more complicated.
24 // 2. Create an EventTraits class for your EventType. It must have
27 // typedef x EventType;
28 // static bool IsChannelShutdownEvent(const EventType& event);
100 typedef typename EventTraits::EventType EventType;
101 typedef EventListener<EventType> Listener;
108 explicit EventChannel(const EventType& shutdown_event)
170 void NotifyListeners(const EventType& event) {
213 const EventType shutdown_event_
    [all...]
event_sys.h 21 template <typename EventType>
24 virtual void HandleEvent(const EventType& event) = 0;
  /external/chromium/base/debug/
trace_event_win.h 47 enum EventType {
66 EventType type,
73 EventType type,
82 EventType type,
104 EventType type,
trace_event.h 93 enum EventType {
110 EventType type,
116 EventType type,
  /external/chromium/chrome/browser/chromeos/login/
shutdown_button.h 29 ui::EventType event_type,
username_view.h 49 ui::EventType event_type,
  /external/chromium/chrome/browser/debugger/
devtools_netlog_observer.h 33 virtual void OnAddEntry(net::NetLog::EventType type,
39 void OnAddURLRequestEntry(net::NetLog::EventType type,
45 void OnAddHTTPStreamJobEntry(net::NetLog::EventType type,
51 void OnAddSocketEntry(net::NetLog::EventType type,
  /external/chromium/chrome/browser/net/
chrome_net_log.h 40 net::NetLog::EventType type,
48 net::NetLog::EventType type;
83 virtual void OnAddEntry(EventType type,
110 virtual void AddEntry(EventType type,
net_log_logger.h 29 virtual void OnAddEntry(net::NetLog::EventType type,
load_timing_observer.h 68 virtual void OnAddEntry(net::NetLog::EventType type,
85 void OnAddURLRequestEntry(net::NetLog::EventType type,
91 void OnAddHTTPStreamJobEntry(net::NetLog::EventType type,
97 void OnAddConnectJobEntry(net::NetLog::EventType type,
103 void OnAddSocketEntry(net::NetLog::EventType type,
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.h 118 enum EventType {
123 static EventType eventType(Event*);
124 bool treatLinkAsLiveForEventType(EventType) const;
  /external/skia/include/xml/
SkXMLParser.h 97 enum EventType {
112 EventType nextToken();
113 EventType getEventType() const { return fCurr.fEventType; }
133 EventType fEventType;
143 EventType onNextToken();
  /external/chromium/net/socket/
client_socket.h 133 void LogByteTransfer(const BoundNetLog& net_log, NetLog::EventType event_type,
  /external/compiler-rt/lib/tsan/rtl/
tsan_trace.h 31 enum EventType {
42 // u64 typ : 3; // EventType.
  /external/chromium/chrome/browser/sync/syncable/
directory_manager.h 39 typedef DirectoryManagerEvent EventType;
40 static inline bool IsChannelShutdownEvent(const EventType& event) {
  /external/llvm/include/llvm/ExecutionEngine/
IntelJITEventsWrapper.h 72 int iJIT_NotifyEvent(iJIT_JVM_EVENT EventType, void *EventSpecificData) {
75 return NotifyEventFunc(EventType, EventSpecificData);

Completed in 1725 milliseconds

1 2 3 4 5