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

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
Event.c 245 UINT32 EventType;
251 EventType = EFI_EVENT_SIGNAL_LEGACY_BOOT | EFI_EVENT_NOTIFY_SIGNAL_ALL;
253 EventType = EFI_EVENT_SIGNAL_LEGACY_BOOT;
261 EventType,
269 EventType = EFI_EVENT_NOTIFY_SIGNAL;
283 EventType,
324 UINT32 EventType;
330 EventType = EFI_EVENT_SIGNAL_READY_TO_BOOT | EFI_EVENT_NOTIFY_SIGNAL_ALL;
332 EventType = EFI_EVENT_SIGNAL_READY_TO_BOOT;
340 EventType,
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/
UefiNotTiano.c 105 UINT32 EventType;
113 EventType = EFI_EVENT_SIGNAL_LEGACY_BOOT | EFI_EVENT_NOTIFY_SIGNAL_ALL;
115 EventType = EFI_EVENT_SIGNAL_LEGACY_BOOT;
123 EventType,
131 EventType = EVENT_NOTIFY_SIGNAL;
145 EventType,
216 UINT32 EventType;
224 EventType = EFI_EVENT_SIGNAL_READY_TO_BOOT | EFI_EVENT_NOTIFY_SIGNAL_ALL;
226 EventType = EFI_EVENT_SIGNAL_READY_TO_BOOT;
234 EventType,
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
Event.c 226 UINT32 EventType;
232 EventType = EFI_EVENT_SIGNAL_LEGACY_BOOT | EFI_EVENT_NOTIFY_SIGNAL_ALL;
234 EventType = EFI_EVENT_SIGNAL_LEGACY_BOOT;
242 EventType,
250 EventType = EFI_EVENT_NOTIFY_SIGNAL;
264 EventType,
304 UINT32 EventType;
310 EventType = EFI_EVENT_SIGNAL_READY_TO_BOOT | EFI_EVENT_NOTIFY_SIGNAL_ALL;
312 EventType = EFI_EVENT_SIGNAL_READY_TO_BOOT;
320 EventType,
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/logging/
EditorEvent.java 23 public int eventType;
28 public static final class EventType {
36 .add("eventType", eventType)
  /system/core/fastboot/
socket_mock.h 84 enum class EventType { kSend, kReceive, kAccept };
87 Event(EventType _type, std::string _message, ssize_t _status,
90 EventType type;
  /test/framework/harnesses/host_controller/tfc/
command_attempt.py 22 class EventType(object):
94 event_type: A string in EventType.
130 obj = self.CreateCommandEvent(EventType.INVOCATION_COMPLETED,
  /external/xmlrpcpp/src/
XmlRpcDispatch.h 29 enum EventType {
38 //! @param eventMask Which event types to watch for. \see EventType
  /system/extras/simpleperf/
event_type.h 33 // EventType represents one type of event, like cpu_cycle_event, cache_misses_event.
35 // (type, config) pair. EventType connects the two representations, and tells the user if
38 struct EventType {
39 EventType(const std::string& name, uint32_t type, uint64_t config,
45 EventType() : type(0), config(0) {
61 static std::string BuildString(const std::vector<const EventType*>& event_types);
67 std::vector<EventType> saved_event_types_;
70 const std::vector<EventType>& GetAllEventTypes();
71 const EventType* FindEventTypeByName(const std::string& name, bool report_error = true);
75 EventType event_type
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/
PerfTraceEvent.java 48 private enum EventType {
56 EventType(String typeStr) {
166 savePerfString(name, eventId, EventType.INSTANT, false);
183 savePerfString(makeMemoryTraceNameFromTimingName(name), eventId, EventType.START,
187 savePerfString(name, eventId, EventType.START, false);
203 savePerfString(name, eventId, EventType.FINISH, false);
208 savePerfString(makeMemoryTraceNameFromTimingName(name), eventId, EventType.FINISH,
226 savePerfString(makeMemoryTraceNameFromTimingName(name), eventId, EventType.START,
229 savePerfString(name, eventId, EventType.START, false);
245 savePerfString(name, eventId, EventType.FINISH, false)
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_trace.h 29 enum EventType {
40 // u64 typ : 3; // EventType.
  /frameworks/base/core/java/android/net/metrics/
IpManagerEvent.java 51 public @interface EventType {}
53 public final @EventType int eventType;
56 public IpManagerEvent(@EventType int eventType, long duration) {
57 this.eventType = eventType;
62 this.eventType = in.readInt();
68 out.writeInt(eventType);
91 Decoder.constants.get(eventType), durationMs)
    [all...]
NetworkEvent.java 61 public @interface EventType {}
63 public final @EventType int eventType;
66 public NetworkEvent(@EventType int eventType, long durationMs) {
67 this.eventType = eventType;
71 public NetworkEvent(@EventType int eventType) {
72 this(eventType, 0)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/log/
ILogRegistry.java 32 public enum EventType {
95 * @param event the {@link ILogRegistry.EventType} of the event to log.
99 public void logEvent(LogLevel logLevel, EventType event, Map<String, String> args);
  /external/v8/src/heap/
memory-reducer.h 102 enum EventType { kTimer, kMarkCompact, kPossibleGarbage };
105 EventType type;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/vr/
MockVrListenerService.java 41 public enum EventType{
52 public final EventType type;
55 private Event(VrListenerService i, EventType t, Object o) {
61 public static Event build(VrListenerService instance, EventType type, Object argument1) {
65 public static Event build(VrListenerService instance, EventType type) {
75 sEventQueue.put(Event.build(this, EventType.ONBIND, intent));
86 sEventQueue.put(Event.build(this, EventType.ONREBIND, intent));
98 sEventQueue.put(Event.build(this, EventType.ONUNBIND, intent));
109 sEventQueue.put(Event.build(this, EventType.ONCREATE));
120 sEventQueue.put(Event.build(this, EventType.ONDESTROY))
    [all...]
  /device/google/contexthub/util/nanotool/
nanomessage.h 32 enum class EventType {
102 virtual EventType GetEventType() const = 0;
179 EventType GetEventType() const override;
201 EventType GetEventType() const override;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
EfiTpm.h 72 TCG_EVENTTYPE EventType; // TCG EFI event type
83 TCG_EVENTTYPE EventType;
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
AlertStandardFormatTable.h 56 UINT8 EventType;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Tcg2Protocol.h 133 TCG_EVENTTYPE EventType;
TrEEProtocol.h 120 TrEE_EVENTTYPE EventType;
  /external/drm_hwcomposer/
separate_rects.cpp 28 enum EventType { START, END };
45 EventType type;
  /external/libmojo/mojo/edk/system/ports/
event.h 35 enum struct EventType : uint32_t {
45 EventType type;
  /external/webrtc/webrtc/base/
httpbase_unittest.cc 49 enum EventType { E_HEADER_COMPLETE, E_COMPLETE, E_CLOSED };
51 EventType event;
  /frameworks/native/headers/media_plugin/media/drm/
DrmAPI.h 79 enum EventType {
391 void sendEvent(EventType eventType, int extra,
412 virtual void sendEvent(DrmPlugin::EventType eventType, int extra,
424 inline void DrmPlugin::sendEvent(EventType eventType, int extra,
432 listener->sendEvent(eventType, extra, sessionId, data);
  /libcore/ojluni/src/main/java/java/nio/file/
FileTreeWalker.java 109 static enum EventType {
128 private final EventType type;
133 private Event(EventType type, Path file, BasicFileAttributes attrs, IOException ioe) {
140 Event(EventType type, Path file, BasicFileAttributes attrs) {
144 Event(EventType type, Path file, IOException ioe) {
148 EventType type() {
278 return new Event(EventType.ENTRY, entry, ioe);
288 return new Event(EventType.ENTRY, entry, attrs);
293 return new Event(EventType.ENTRY, entry,
302 return new Event(EventType.ENTRY, entry, ioe)
    [all...]

Completed in 583 milliseconds

1 2 3 4 5 6 7