HomeSort by: relevance | last modified time | path
    Searched defs:Event (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/external/bsd/gnu-efi/dist/lib/
event.c 1 /* $NetBSD: event.c,v 1.3 2018/08/16 18:22:05 jmcneill Exp $ */
9 event.c
37 EFI_EVENT Event;
40 // Create the event
50 &Event
56 // Register for protocol notifactions on this event
63 Event,
70 // Kick the event so we will perform an initial pass of
74 uefi_call_wrapper(BS->SignalEvent, 1, Event);
75 return Event;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/DirectoryWatcher/
DirectoryWatcher.h 22 /// Invokes client-provided function on every filesystem event in the watched
24 /// found, an event is synthesized as if the file was added.
41 /// event occurs during the initial scan but that would introduce continuous
66 struct Event {
73 /// The DirectoryWatcher that originated this event is no longer valid and
88 /// The only proper response to this kind of event is to destruct the
94 /// Filename that this event is related to or an empty string in
95 /// case this event is related to the watched directory itself.
98 Event(EventKind Kind, llvm::StringRef Filename)
108 std::function<void(llvm::ArrayRef<DirectoryWatcher::Event> Events
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_range.cpp 19 struct Event {
25 InternalMmapVector<Event> events;
39 [](const Event &lh, const Event &rh) { return lh.val < rh.val; });
  /src/games/trek/
externs.c 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
106 /* dynamic event list; one entry per pending event */
107 struct event Event[MAXEVENTS];
  /src/sys/external/bsd/acpica/dist/compiler/
aslstartup.c 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
308 UINT8 Event;
388 Event = UtBeginEvent ("Open AML output file");
390 UtEndEvent (Event);
aslcompile.c 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
95 UINT8 Event;
100 Event = UtBeginEvent ("Open input and output files");
101 UtEndEvent (Event);
103 Event = UtBeginEvent ("Preprocess input file");
119 UtEndEvent (Event);
123 UtEndEvent (Event);
128 Event = UtBeginEvent ("Parse source code and build parse tree");
130 UtEndEvent (Event);
168 Event = UtBeginEvent ("Flush source input")
    [all...]
dtcompile.c 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
89 UINT8 Event;
104 Event = UtBeginEvent ("Preprocess input file");
106 UtEndEvent (Event);
118 Event = UtBeginEvent ("Parse data table in prototype mode");
125 UtEndEvent (Event);
133 Event = UtBeginEvent ("Scan and parse input file");
135 UtEndEvent (Event);
150 Event = UtBeginEvent ("Compile parse tree");
153 UtEndEvent (Event);
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
PerfHelper.h 37 // Retrieves the encoding for the event described by pfm_event_string.
52 // Whether the event was successfully created.
55 // The encoded event to be passed to the Kernel.
58 // The fully qualified name for the event.
70 // underlying event.
73 // event: the PerfEvent to measure.
74 explicit Counter(PerfEvent &&event);
81 /// Starts the measurement of the event.
84 /// Stops the measurement of the event.
102 PerfEvent Event;
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_trace.h 39 // Represents a thread event (from most significant bit):
42 typedef u64 Event;
  /src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/linux/
DirectoryWatcher-linux.cpp 86 std::queue<DirectoryWatcher::Event> Events;
89 void push_back(const DirectoryWatcher::Event::EventKind K,
99 // event to return.
100 DirectoryWatcher::Event pop_front_blocking() {
106 DirectoryWatcher::Event Front = Events.front();
119 std::function<void(llvm::ArrayRef<Event>, bool)> Receiver,
142 std::function<void(llvm::ArrayRef<Event>, bool)> Receiver;
161 // Push event of WatcherGotInvalidated kind to the Queue to stop the loop.
168 Queue.push_back(DirectoryWatcher::Event::EventKind::WatcherGotInvalidated,
235 // event for stopping, it must be an inotify event ready for reading
    [all...]
  /src/external/bsd/ntp/dist/include/
ntpsim.h 5 * The header file for the ntp discrete event simulator.
45 /* Discrete Event Queue
47 * The NTP simulator is a discrete event simulator.
49 * Central to this simulator is an event queue which is a priority queue
50 * in which the "priority" is given by the time of arrival of the event.
59 BEEP, /* Event to record simulator stats */
60 CLOCK, /* Event to advance the clock to the specified time */
61 TIMER, /* Event that designates a timer interrupt. */
62 PACKET /* Event that designates arrival of a packet */
66 /* Event information *
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_trace.h 32 struct Event {
33 // We use variable-length type encoding to give more bits to some event
42 static_assert(sizeof(Event) == 8, "bad Event size");
44 // Nop event used as padding and does not affect state during replay.
45 static constexpr Event NopEvent = {1, 0, EventType::kAccessExt, 0};
149 // Time change event.
176 (kByteSize - sizeof(TraceHeader)) / sizeof(Event);
177 // TraceAcquire does a fast event pointer overflow check by comparing
183 Event events[kSize]
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
Checker.h 440 template <typename EVENT>
441 class Event {
443 static void _checkEvent(void *checker, const void *event) {
444 ((const CHECKER *)checker)->checkEvent(*(const EVENT *)event);
449 mgr._registerListenerForEvent<EVENT>(
535 template <typename EVENT>
543 mgr._registerDispatcherForEvent<EVENT>();
544 static_cast<EventDispatcher<EVENT> *>(checker)->Mgr = &mgr;
547 void dispatchEvent(const EVENT &event) const
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_trace.h 38 // Represents a thread event (from most significant bit):
41 typedef u64 Event;
83 struct Event {
84 // We use variable-length type encoding to give more bits to some event
93 static_assert(sizeof(Event) == 8, "bad Event size");
95 // Nop event used as padding and does not affect state during replay.
96 static constexpr Event NopEvent = {1, 0, EventType::kAccessExt, 0};
175 // Time change event.
196 (kByteSize - sizeof(TraceHeader)) / sizeof(Event);
    [all...]
  /src/sys/dev/ic/
cs89x0.c 19 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
53 * non-infringement are disclaimed. In no event shall DIGITAL be
175 ** infrequent event. It could have been used in the IFF_PROMISCUOUS
1382 uint16_t Event;
1393 /* Read an event from the Interrupt Status Queue */
1395 Event = CS_READ_PACKET_PAGE(sc, PKTPG_ISQ);
1397 Event = CS_READ_PORT(sc, PORT_ISQ);
1399 if ((Event & REG_NUM_MASK) == 0 || Event == 0xffff)
1402 rndEvent = Event;
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
efiudp.h 115 EFI_EVENT Event;
229 EFI_EVENT Event;
efitcp.h 110 EFI_EVENT Event;
287 EFI_EVENT Event;
efiip.h 166 EFI_EVENT Event;
414 EFI_EVENT Event;
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendActions.cpp 357 std::string Event;
369 io.mapRequired("event", fields.Event);
467 Entry.Event = BeginInstantiation ? "Begin" : "End";
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
PerfReader.cpp 304 void PerfReader::updateBinaryAddress(const MMapEvent &Event) {
306 StringRef BinaryPath = Event.BinaryPath;
310 // Drop the event which doesn't belong to user-provided binaries
312 if (I == BinaryTable.end() || Event.BaseAddress == I->second.getBaseAddress())
320 AddrToBinaryMap[Event.BaseAddress] = &Binary;
323 Binary.setBaseAddress(Event.BaseAddress);
499 WithColor::warning() << "No MMAP event in the perfscript, create it "
601 std::string ErrorMsg = "Cannot parse mmap event: Line" +
606 MMapEvent Event;
607 Fields[PID].getAsInteger(10, Event.PID)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Wasm.h 105 // Kind of event. Currently only WASM_EVENT_ATTRIBUTE_EXCEPTION is possible.
125 WasmEventType Event;
241 WASM_SEC_EVENT = 13 // Event declarations
346 // GLOBAL, EVENT, and TABLE are in here but LLVM doesn't use them yet.
365 // Kinds of event attributes.
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 80 struct Event {
95 Event EventImport;
326 std::vector<Event> Events;
428 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Event)
573 template <> struct MappingTraits<WasmYAML::Event> {
574 static void mapping(IO &IO, WasmYAML::Event &Event);
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
524 ACPI_OBJECT_EVENT Event;
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
PathDiagnostic.h 406 enum Kind { ControlFlow, Event, Macro, Call, Note, PopUp };
530 return P->getKind() == Event || P->getKind() == Macro ||
541 : PathDiagnosticSpotPiece(pos, s, Event, addPosRange) {}
561 return P->getKind() == Event;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 198 // function/global/table/event/section index space.
617 // Provisional value is function/global/event Wasm index
817 encodeULEB128(Import.Event.Attribute, W->OS);
818 encodeULEB128(Import.Event.SigIndex, W->OS);
850 for (const wasm::WasmEventType &Event : Events) {
851 encodeULEB128(Event.Attribute, W->OS);
852 encodeULEB128(Event.SigIndex, W->OS);
1326 report_fatal_error("undefined event symbol cannot be weak");
1332 Import.Event.Attribute = wasm::WASM_EVENT_ATTRIBUTE_EXCEPTION;
1333 Import.Event.SigIndex = getEventType(WS)
    [all...]

Completed in 59 milliseconds

1 2