Home
last modified time | relevance | path

Searched refs:EventType (Results 1 – 25 of 33) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_trace.h28 enum EventType { enum
73 enum class EventType : u64 { enum
90 EventType type : 3;
96 static constexpr Event NopEvent = {1, 0, EventType::kAccessExt, 0};
124 EventType type : 3; // = EventType::kAccessExt
140 EventType type : 3; // = EventType::kAccessRange
156 EventType type : 3; // = EventType::kLock or EventType::kRLock
169 EventType type : 3; // = EventType::kUnlock
179 EventType type : 3; // = EventType::kTime
H A Dtsan_rtl_report.cpp419 EventType typ = (EventType)(ev >> kEventPCBits); in RestoreStack()
476 case EventType::kTime: { in TraceReplay()
484 case EventType::kAccessExt: in TraceReplay()
486 case EventType::kAccessRange: in TraceReplay()
488 case EventType::kLock: in TraceReplay()
490 case EventType::kRLock: in TraceReplay()
494 case EventType::kUnlock: in TraceReplay()
535 bool RestoreStack(Tid tid, EventType type, Sid sid, Epoch epoch, uptr addr, in RestoreStack()
575 if (evp->is_func == 0 && evp->type == EventType::kAccessExt && in RestoreStack()
586 if (match && type == EventType::kAccessExt && in RestoreStack()
[all …]
H A Dtsan_rtl_access.cpp46 evex->type = EventType::kAccessExt; in TryTraceMemoryAccess()
67 ev->type = EventType::kAccessRange; in TryTraceMemoryAccessRange()
95 void TraceMutexLock(ThreadState *thr, EventType type, uptr pc, uptr addr, in TraceMutexLock()
97 DCHECK(type == EventType::kLock || type == EventType::kRLock); in TraceMutexLock()
118 ev.type = EventType::kUnlock; in TraceMutexUnlock()
130 ev.type = EventType::kTime; in TraceTime()
H A Dtsan_rtl.h616 EventType typ, u64 addr) { in TraceAddEvent()
673 bool RestoreStack(Tid tid, EventType type, Sid sid, Epoch epoch, uptr addr,
745 void TraceMutexLock(ThreadState *thr, EventType type, uptr pc, uptr addr,
H A Dtsan_rtl.cpp632 TraceMutexLock(thr, d.write ? EventType::kLock : EventType::kRLock, 0, in TraceSwitchPart()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventsWrapper.h73 int iJIT_NotifyEvent(iJIT_JVM_EVENT EventType, void *EventSpecificData) { in iJIT_NotifyEvent() argument
76 return NotifyEventFunc(EventType, EventSpecificData); in iJIT_NotifyEvent()
79 int iJitIttNotifyInfo(IttEventType EventType, const char *Name, in iJitIttNotifyInfo() argument
83 return IttnotifyInfoFunc(EventType, Name, Size); in iJitIttNotifyInfo()
H A DIntelJITEventListener.cpp68 void reportSection(llvm::IttEventType EventType, const char *SectionName, in reportSection() argument
70 WrapperRef.iJitIttNotifyInfo(EventType, SectionName, SectionSize); in reportSection()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-jitlistener/
H A Dllvm-jitlistener.cpp42 int NotifyEvent(iJIT_JVM_EVENT EventType, void *EventSpecificData) { in NotifyEvent() argument
43 switch (EventType) { in NotifyEvent()
91 int ittNotifyInfo(IttEventType EventType, const char *Name, unsigned int Size) { in ittNotifyInfo() argument
92 switch (EventType) { in ittNotifyInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCSymbolWasm.h30 Optional<wasm::WasmEventType> EventType; variable
147 assert(EventType.hasValue()); in getEventType()
148 return EventType.getValue(); in getEventType()
150 void setEventType(wasm::WasmEventType ET) { EventType = ET; } in setEventType()
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
H A Dkfd_dbgmgr.h188 enum HSA_EVENTTYPE EventType; /* event type */ member
215 enum HSA_EVENTTYPE EventType; member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DWasm.h40 const wasm::WasmEventType *EventType, in WasmSymbol() argument
43 EventType(EventType), Signature(Signature) {} in WasmSymbol()
48 const wasm::WasmEventType *EventType; variable
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_trace.h29 enum EventType { enum
H A Dtsan_rtl_report.cc408 EventType typ = (EventType)(ev >> kEventPCBits); in RestoreStack()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_trace.h27 enum EventType { enum
H A Dtsan_rtl_report.cc406 EventType typ = (EventType)(ev >> kEventPCBits); in RestoreStack()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_fdr_log_writer.h193 bool writeTypedEvent(int32_t Delta, uint16_t EventType, const void *Event,
199 EventSize, Delta, EventType);
H A Dxray_fdr_controller.h348 bool typedEvent(uint64_t TSC, uint16_t CPU, uint16_t EventType, in typedEvent() argument
359 return W.writeTypedEvent(Delta, EventType, Event, EventSize); in typedEvent()
H A Dxray_fdr_logging.cc586 uint16_t EventType, const void *Event, in fdrLoggingHandleTypedEvent() argument
612 TLD.Controller->typedEvent(TSC, CPU, EventType, Event, ReducedEventSize); in fdrLoggingHandleTypedEvent()
/netbsd-src/external/mit/libuv/dist/test/
H A Dtest-tty-duplicate-key.c87 records[0].EventType = records[1].EventType = KEY_EVENT; in make_key_event_records()
H A Dtest-tty.c207 record.EventType = KEY_EVENT; in TEST_IMPL()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
H A DFDRRecords.h265 uint16_t EventType = 0; variable
281 uint16_t eventType() const { return EventType; } in eventType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DWasmObjectFile.cpp532 const wasm::WasmEventType *EventType = nullptr; in parseLinkingSectionSymtab() local
678 EventType = &Event.Type; in parseLinkingSectionSymtab()
690 EventType = &Import.Event; in parseLinkingSectionSymtab()
691 Signature = &Signatures[EventType->SigIndex]; in parseLinkingSectionSymtab()
713 EventType, Signature); in parseLinkingSectionSymtab()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dwincon.d202 WORD EventType;
/netbsd-src/external/mit/libuv/dist/src/win/
H A Dtty.c760 if (handle->tty.rd.last_input_record.EventType == WINDOW_BUFFER_SIZE_EVENT) { in uv_process_tty_read_raw_req()
765 if (handle->tty.rd.last_input_record.EventType != KEY_EVENT) { in uv_process_tty_read_raw_req()
1068 record.EventType = FOCUS_EVENT; in uv__tty_read_stop()
1122 record.EventType = KEY_EVENT; in uv__cancel_read_console()
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/
H A Dselect.c230 if (irbuffer[i].EventType == KEY_EVENT) in windows_poll_handle()

12