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

1 2 3 4 5 6 7 8 91011

  /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...]
event_type.cpp 37 static const std::vector<EventType> static_event_type_array = {
53 for (const EventType& event : GetAllEventTypes()) {
65 static std::vector<EventType> GetTracepointEventTypesFromString(const std::string& s) {
66 std::vector<EventType> result;
73 result.push_back(EventType(event_name, PERF_TYPE_TRACEPOINT, id, "", ""));
78 static std::vector<EventType> GetTracepointEventTypesFromTraceFs() {
79 std::vector<EventType> result;
95 result.push_back(EventType(system_name + ":" + event_name, PERF_TYPE_TRACEPOINT, id, "", ""));
101 static std::vector<EventType> GetTracepointEventTypes() {
102 std::vector<EventType> result
    [all...]
event_attr.h 27 struct EventType;
34 perf_event_attr CreateDefaultPerfEventAttr(const EventType& event_type);
  /packages/services/Car/car-lib/src/com/android/car/internal/
SingleMessageHandler.java 31 public abstract class SingleMessageHandler<EventType> implements Callback {
44 protected abstract void handleEvent(EventType event);
49 List<EventType> events = (List<EventType>) msg.obj;
50 events.forEach(new Consumer<EventType>() {
52 public void accept(EventType event) {
61 public void sendEvents(List<EventType> events) {
  /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...]
  /external/libmojo/mojo/edk/system/ports/
message.cc 26 case EventType::kUser:
29 case EventType::kPortAccepted:
32 case EventType::kObserveProxy:
35 case EventType::kObserveProxyAck:
39 case EventType::kObserveClosure:
42 case EventType::kMergePort:
49 if (header->type == EventType::kUser) {
93 GetMutableEventHeader(this)->type = EventType::kUser;
  /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...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
TpmMeasurementLib.h 22 @param[in] EventType Event type.
37 IN UINT32 EventType,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/TpmMeasurementLibNull/
TpmMeasurementLibNull.c 19 @param[in] EventType Event type.
34 IN UINT32 EventType,
  /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.cpp 47 if (events_.front().type != EventType::kSend) {
80 if (event.type != EventType::kReceive) {
115 if (events_.front().type != EventType::kAccept) {
126 events_.push(Event(EventType::kSend, std::move(message), true, nullptr));
130 events_.push(Event(EventType::kSend, std::move(message), false, nullptr));
134 events_.push(Event(EventType::kReceive, std::move(message), false, nullptr));
138 events_.push(Event(EventType::kReceive, "", true, nullptr));
142 events_.push(Event(EventType::kReceive, "", false, nullptr));
146 events_.push(Event(EventType::kAccept, "", false, std::move(sock)));
149 SocketMock::Event::Event(EventType _type, std::string _message, ssize_t _status
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeTpmMeasurementLib/
DxeTpmMeasurementLib.c 35 @param[in] EventType Event type.
49 IN UINT32 EventType,
78 TcgEvent->EventType = EventType;
101 @param[in] EventType Event type.
115 IN UINT32 EventType,
143 Tcg2Event->Header.EventType = EventType;
162 @param[in] EventType Event type.
177 IN UINT32 EventType,
    [all...]
  /test/framework/harnesses/host_controller/
invocation_thread_test.py 80 self.assertEqual([command_attempt.EventType.ALLOCATION_FAILED],
90 self.assertEqual([command_attempt.EventType.EXECUTE_FAILED],
105 self.assertEqual([command_attempt.EventType.CONFIGURATION_ERROR],
119 self.assertEqual([command_attempt.EventType.INVOCATION_STARTED,
120 command_attempt.EventType.TEST_RUN_IN_PROGRESS,
121 command_attempt.EventType.INVOCATION_COMPLETED],
  /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/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventsWrapper.h 66 int iJIT_NotifyEvent(iJIT_JVM_EVENT EventType, void *EventSpecificData) {
69 return NotifyEventFunc(EventType, EventSpecificData);
  /hardware/interfaces/drm/1.0/
IDrmPluginListener.hal 35 * @param eventType the type of the event
39 oneway sendEvent(EventType eventType, SessionId sessionId,
  /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);
  /tools/tradefederation/core/src/com/android/tradefed/util/hostmetric/
HeapHostMonitor.java 19 import com.android.tradefed.log.ILogRegistry.EventType;
57 LogRegistry.getLogRegistry().logEvent(LogLevel.INFO, EventType.HEAP_MEMORY, args);
  /frameworks/av/media/libmedia/include/media/
IDrmClient.h 32 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) = 0;
  /frameworks/base/core/java/android/net/metrics/
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...]
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...]
  /libcore/ojluni/src/main/java/java/nio/file/
FileTreeIterator.java 73 assert next.type() == FileTreeWalker.EventType.ENTRY ||
74 next.type() == FileTreeWalker.EventType.START_DIRECTORY;
91 if (ev.type() != FileTreeWalker.EventType.END_DIRECTORY) {
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 670 milliseconds

1 2 3 4 5 6 7 8 91011