/external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
D | gen_ar_event.hpp | 65 struct Event struct 68 Event() {} in Event() argument 69 virtual ~Event() {} in ~Event() argument 72 virtual const uint32_t GetEventId() const = 0; argument
|
/external/rust/crates/vulkano/src/sync/ |
D | event.rs | 27 pub struct Event { struct 29 event: ash::vk::Event, argument 35 impl Event { impl 42 pub fn from_pool(device: Arc<Device>) -> Result<Event, OomError> { in from_pool() 66 pub fn alloc(device: Arc<Device>) -> Result<Event, OomError> { in alloc() 70 fn alloc_impl(device: Arc<Device>, must_put_in_pool: bool) -> Result<Event, OomError> { in alloc_impl() 163 unsafe impl DeviceOwned for Event { implementation 170 unsafe impl VulkanObject for Event { implementation 174 fn internal_object(&self) -> ash::vk::Event { in internal_object() 179 impl Drop for Event { implementation
|
/external/crosvm/common/cros_asyncv2/src/unix/ |
D | event.rs | 13 pub struct Event { struct 17 impl Event { argument 49 pub fn try_clone(&self) -> anyhow::Result<Event> { in try_clone() 58 impl TryFrom<EventFd> for Event { implementation 61 fn try_from(evt: EventFd) -> anyhow::Result<Event> { in try_from()
|
/external/crosvm/common/cros_asyncv2/src/ |
D | event.rs | 11 pub struct Event { struct 12 inner: sys::Event, argument 15 impl Event { implementation 38 pub fn try_clone(&self) -> anyhow::Result<Event> { in try_clone() 44 impl TryFrom<sys_util::EventFd> for Event { implementation 47 fn try_from(evt: sys_util::EventFd) -> anyhow::Result<Event> { in try_from() 89 async fn wakeup(event: Event, ready: Receiver<()>) { in write_wakes_up_task() 94 async fn go(event: Event, ready: Sender<()>) -> u64 { in write_wakes_up_task()
|
/external/crosvm/base/src/windows/win/ |
D | event.rs | 40 pub struct Event { struct 53 impl Event { impl 54 pub fn new_with_manual_reset(manual_reset: bool) -> Result<Event> { in new_with_manual_reset() 75 pub fn create_event_with_name(name: &str) -> Result<Event> { in create_event_with_name() 102 pub fn open(name: &str) -> Result<Event> { in open() 170 pub fn try_clone(&self) -> Result<Event> { in try_clone() 190 impl AsRawDescriptor for Event { implementation 196 impl FromRawDescriptor for Event { implementation 204 impl AsRawHandle for Event { implementation 210 impl IntoRawDescriptor for Event { implementation [all …]
|
/external/tensorflow/tensorflow/core/profiler/internal/cpu/ |
D | traceme_recorder.h | 58 struct Event { struct 79 std::deque<Event> events; argument
|
/external/crosvm/base/src/ |
D | event.rs | 23 pub struct Event(pub EventFd); struct 24 impl Event { impl 41 pub fn try_clone(&self) -> Result<Event> { in try_clone() 46 impl AsRawDescriptor for Event { implementation 52 impl FromRawDescriptor for Event { implementation 58 impl IntoRawDescriptor for Event { implementation
|
/external/crosvm/base/src/windows/ |
D | eventfd.rs | 23 pub struct Event { struct 36 impl Event { argument 134 pub fn try_clone(&self) -> Result<Event> { in try_clone() 141 impl AsRawDescriptor for Event { implementation 147 impl FromRawDescriptor for Event { implementation 155 impl IntoRawDescriptor for Event { implementation 163 impl AsRawFd for Event { implementation 171 impl IntoRawFd for Event { implementation
|
/external/webrtc/modules/rtp_rtcp/source/ |
D | dtmf_queue.h | 23 struct Event { struct 33 bool AddDtmf(const Event& event); argument
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/rand/ |
D | urandom_test.cc | 42 struct Event { struct 51 explicit Event(Syscall syscall) : type(syscall) {} in Event() function 53 bool operator==(const Event &other) const { in operator ==() argument 60 static Event GetRandom(size_t length, unsigned flags) { in GetRandom() argument 67 static Event Open(const char *filename) { in Open() argument 73 static Event UrandomRead(size_t length) { in UrandomRead() argument 79 static Event UrandomIoctl() { in UrandomIoctl() argument 84 static Event Abort() { in Abort() argument 89 std::string String() const { in String() 121 static std::string ToString(const std::vector<Event> &trace) { in ToString() argument
|
/external/libchrome/base/test/launcher/ |
D | test_launcher_tracer.h | 34 struct Event { struct 45 std::vector<Event> events_; argument
|
/external/rust/crates/mio/src/event/ |
D | event.rs | 17 pub struct Event { struct 18 inner: sys::Event, argument 21 impl Event { impl 178 pub(crate) fn from_sys_event_ref(sys_event: &sys::Event) -> &Event { in from_sys_event_ref() 182 &*(sys_event as *const sys::Event as *const Event) in from_sys_event_ref() constant 193 impl fmt::Debug for Event { implementation
|
/external/skia/src/gpu/geometry/ |
D | GrAATriangulator.h | 33 struct Event { struct 34 Event(SSEdge* edge, const SkPoint& point, uint8_t alpha) in Event() argument 44 bool operator() (Event* const &e1, Event* const &e2) { in operator() argument
|
/external/boringssl/src/crypto/fipsmodule/rand/ |
D | urandom_test.cc | 62 struct Event { struct 75 explicit Event(Syscall syscall) : type(syscall) {} in Event() argument 77 bool operator==(const Event &other) const { in operator ==() argument 84 static Event GetRandom(size_t length, unsigned flags) { in GetRandom() argument 91 static Event Open(const char *filename) { in Open() argument 97 static Event UrandomRead(size_t length) { in UrandomRead() argument 103 static Event UrandomIoctl() { in UrandomIoctl() argument 108 static Event Socket() { in Socket() argument 113 static Event Connect() { in Connect() argument 118 static Event SocketRead(size_t length) { in SocketRead() argument [all …]
|
/external/rust/crates/mio/src/sys/windows/ |
D | event.rs | 9 pub struct Event { struct 14 pub fn token(event: &Event) -> Token { in token() argument 18 impl Event { implementation 19 pub(super) fn new(token: Token) -> Event { in new() 35 pub(super) fn from_completion_status(status: &CompletionStatus) -> Event { in from_completion_status() 152 pub fn get(&self, idx: usize) -> Option<&Event> { in get()
|
/external/tensorflow/tensorflow/core/distributed_runtime/ |
D | scheduler.h | 63 struct Event { struct 68 bool operator<(const Event& other) const { return time < other.time; } argument
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
D | tsan_test_util_posix.cc | 237 struct Event { struct 238 enum Type { 264 Event(Type type, const void *ptr = 0, uptr arg = 0, uptr arg2 = 0) in Event() argument 284 atomic_uintptr_t event; // Event* argument
|
/external/perfetto/src/traced/probes/ftrace/ |
D | event_info_constants.h | 150 struct Event { struct 156 // Field id of the subevent proto (e.g. PrintFtraceEvent) in the FtraceEvent argument 158 uint32_t proto_field_id; 163 uint16_t size;
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
D | graph_memory.cc | 144 struct Event { struct 145 Event(int64_t _timestamp, bool _allocated, in Event() argument 149 int64 timestamp; 150 bool allocated; 151 const GraphMemory::LiveTensor* tensor; 153 bool operator<(const Event& other) const { in operator <()
|
/external/crosvm/media/libvda/src/decode/ |
D | event.rs | 60 pub enum Event { enum 92 impl Event { impl 95 pub(crate) unsafe fn new(event: bindings::vda_event_t) -> Result<Event> { in new()
|
/external/swiftshader/third_party/marl/include/marl/ |
D | trace.h | 82 struct Event { struct 83 enum class Type : uint8_t { 116 char name[MaxEventNameLength] = {}; argument 124 struct BeginEvent : public Event { argument
|
/external/armnn/profiling/server/include/timelineDecoder/ |
D | ITimelineDecoder.hpp | 59 struct Event struct in arm::pipe::ITimelineDecoder 61 uint64_t m_Guid; 62 uint64_t m_TimeStamp; 63 uint64_t m_ThreadId;
|
/external/crosvm/devices/src/virtio/vhost/user/device/vvu/ |
D | device.rs | 31 rxq_evt: Event, in process_rxq() 62 rx_irq: Event, in run_worker() 64 rx_evt: Event, in run_worker() 66 tx_irq: Event, in run_worker() 125 fn event(&self) -> &Event { in event()
|
/external/crosvm/media/libvda/src/encode/ |
D | event.rs | 45 pub enum Event { enum 68 impl Event { implementation
|
/external/crosvm/devices/src/sys/windows/ |
D | serial_device.rs | 23 interrupt_evt: Event, in new() 32 interrupt_evt: Event, in new_pipe() 42 evt: Event, in create_system_type_serial_device()
|