/aosp_15_r20/prebuilts/go/linux-x86/src/internal/trace/ |
D | event.go | 346 type Event struct { struct 347 table *evTable 348 ctx schedCtx 349 base baseEvent 353 func (e Event) Kind() EventKind { 358 func (e Event) Time() Time { 371 func (e Event) Goroutine() GoID { 380 func (e Event) Proc() ProcID { 394 func (e Event) Thread() ThreadID { 402 func (e Event) Stack() Stack { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/trace/traceviewer/format/ |
D | format.go | 21 type Event struct { struct 22 Name string `json:"name,omitempty"` 23 Phase string `json:"ph"` 24 Scope string `json:"s,omitempty"` 25 Time float64 `json:"ts"` 26 Dur float64 `json:"dur,omitempty"` 27 PID uint64 `json:"pid"` 28 TID uint64 `json:"tid"` 29 ID uint64 `json:"id,omitempty"` 30 BindPoint string `json:"bp,omitempty"` [all …]
|
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/core/ |
H A D | event.rs | 46 pub struct Event { struct 51 pub deps: Vec<Arc<Event>>, argument 52 state: Mutex<EventMutState>, argument 56 impl_cl_type_trait!(cl_event, Event, CL_INVALID_EVENT); argument 58 impl Event { implementation 62 deps: Vec<Arc<Event>>, in new() 64 ) -> Arc<Event> { in new() 80 pub fn new_user(context: Arc<Context>) -> Arc<Event> { in new_user() 265 fn deep_unflushed_deps_impl<'a>(&'a self, result: &mut HashSet<&'a Event>) { in deep_unflushed_deps_impl() 280 pub fn deep_unflushed_deps(events: &[Arc<Event>]) -> HashSet<&Event> { in deep_unflushed_deps() [all …]
|
/aosp_15_r20/external/perfetto/src/trace_redaction/ |
H A D | process_thread_timeline.h | 29 struct Event { struct 36 bool operator==(const Event& o) const { argument 56 static Event Open(uint64_t ts, int32_t pid, int32_t ppid, uint64_t uid) { in Open() argument 60 static Event Open(uint64_t ts, int32_t pid, int32_t ppid) { in Open() argument 64 static Event Close(uint64_t ts, int32_t pid) { in Close() argument 68 Type type = Type::kInvalid; 92 void Append(const Event& event); argument
|
/aosp_15_r20/external/rust/android-crates-io/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() argument 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
|
/aosp_15_r20/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() argument 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
|
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/sync/ |
D | event.rs | 48 pub struct Event { struct 49 handle: ash::vk::Event, argument 55 impl Event { impl 63 pub fn new(device: Arc<Device>, _create_info: EventCreateInfo) -> Result<Event, EventError> { in new() 110 pub fn from_pool(device: Arc<Device>) -> Result<Event, EventError> { in from_pool() 148 handle: ash::vk::Event, in from_handle() 150 ) -> Event { in from_handle() 220 impl Drop for Event { implementation 235 unsafe impl VulkanObject for Event { implementation 244 unsafe impl DeviceOwned for Event { implementation
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/crypto/fipsmodule/rand/ |
H A D | urandom_test.cc | 67 struct Event { struct 79 explicit Event(Syscall syscall) : type(syscall) {} in Event() argument 81 bool operator==(const Event &other) const { in operator ==() argument 87 static Event GetRandom(size_t length, unsigned flags) { in GetRandom() argument 94 static Event Open(const std::string &filename) { in Open() argument 100 static Event UrandomRead(size_t length) { in UrandomRead() argument 106 static Event Socket() { in Socket() argument 111 static Event Connect() { in Connect() argument 116 static Event SocketRead(size_t length) { in SocketRead() argument 122 static Event SocketClose() { in SocketClose() argument [all …]
|
/aosp_15_r20/external/boringssl/src/crypto/fipsmodule/rand/ |
H A D | urandom_test.cc | 67 struct Event { struct 79 explicit Event(Syscall syscall) : type(syscall) {} in Event() argument 81 bool operator==(const Event &other) const { in operator ==() argument 87 static Event GetRandom(size_t length, unsigned flags) { in GetRandom() argument 94 static Event Open(const std::string &filename) { in Open() argument 100 static Event UrandomRead(size_t length) { in UrandomRead() argument 106 static Event Socket() { in Socket() argument 111 static Event Connect() { in Connect() argument 116 static Event SocketRead(size_t length) { in SocketRead() argument 122 static Event SocketClose() { in SocketClose() argument [all …]
|
/aosp_15_r20/frameworks/native/libs/debugstore/rust/src/ |
H A D | event.rs | 24 pub struct Event { struct 32 pub event_type: EventType, argument 37 impl Event { argument 56 impl fmt::Display for Event { implementation
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/trace/ |
D | gen.go | 20 StackSample(ctx *traceContext, ev *trace.Event) 21 GlobalRange(ctx *traceContext, ev *trace.Event) 22 GlobalMetric(ctx *traceContext, ev *trace.Event) 25 GoroutineLabel(ctx *traceContext, ev *trace.Event) 26 GoroutineRange(ctx *traceContext, ev *trace.Event) 27 GoroutineTransition(ctx *traceContext, ev *trace.Event) 30 ProcRange(ctx *traceContext, ev *trace.Event) 31 ProcTransition(ctx *traceContext, ev *trace.Event) 34 Log(ctx *traceContext, ev *trace.Event) 200 func (g *stackSampleGenerator[R]) StackSample(ctx *traceContext, ev *trace.Event) { [all …]
|
/aosp_15_r20/frameworks/native/libs/gui/include/gui/ |
H A D | DisplayEventReceiver.h | 72 struct Event { struct 87 VsyncEventData vsyncData; argument 90 struct Hotplug { 95 struct ModeChange { 100 struct ModeRejection { 104 struct FrameRateOverride { 128 static_assert(sizeof(Event) == 224); argument
|
/aosp_15_r20/external/tensorflow/tensorflow/core/profiler/backends/cpu/ |
H A D | traceme_recorder.h | 58 struct Event { struct 79 std::deque<Event> events; argument
|
/aosp_15_r20/external/crosvm/base/src/ |
H A D | event.rs | 34 pub struct Event(pub(crate) PlatformEvent); struct 44 impl Event { implementation 88 pub fn try_clone(&self) -> Result<Event> { in try_clone() 93 impl AsRawDescriptor for Event { implementation 99 impl FromRawDescriptor for Event { implementation 105 impl IntoRawDescriptor for Event { implementation 117 impl From<SafeDescriptor> for Event { implementation
|
/aosp_15_r20/external/crosvm/tools/contrib/vcpu_blocker_analyzer/src/ |
H A D | parse.rs | 14 pub struct Event { struct 22 impl PartialEq for Event { argument 34 pub fn parse_event(line: &str) -> Option<Event> { in parse_event() 185 fn test_parse_event(#[case] name: &str, #[case] line: &str, #[case] want: Event) { in test_parse_event()
|
/aosp_15_r20/external/rust/android-crates-io/crates/epoll/src/ |
D | lib.rs | 110 pub struct Event { struct 115 impl Event { argument 116 pub fn new(events: Events, data: u64) -> Event { in new() 124 impl Debug for Event { implementation 151 mut event: Event, in ctl()
|
/aosp_15_r20/prebuilts/vndk/v33/arm64/include/frameworks/native/libs/gui/include/gui/ |
D | DisplayEventReceiver.h | 65 struct Event { struct 80 VsyncEventData vsyncData; argument 83 struct Hotplug { 108 * DisplayEventReceiver creates and registers an event connection with argument
|
/aosp_15_r20/prebuilts/vndk/v33/arm/include/frameworks/native/libs/gui/include/gui/ |
D | DisplayEventReceiver.h | 65 struct Event { struct 80 VsyncEventData vsyncData; argument 83 struct Hotplug { 108 * DisplayEventReceiver creates and registers an event connection with argument
|
/aosp_15_r20/prebuilts/vndk/v33/x86_64/include/frameworks/native/libs/gui/include/gui/ |
D | DisplayEventReceiver.h | 65 struct Event { struct 80 VsyncEventData vsyncData; argument 83 struct Hotplug { 108 * DisplayEventReceiver creates and registers an event connection with argument
|
/aosp_15_r20/prebuilts/vndk/v33/x86/include/frameworks/native/libs/gui/include/gui/ |
D | DisplayEventReceiver.h | 65 struct Event { struct 80 VsyncEventData vsyncData; argument 83 struct Hotplug { 108 * DisplayEventReceiver creates and registers an event connection with argument
|
/aosp_15_r20/external/compiler-rt/lib/tsan/tests/rtl/ |
H A 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
|
/aosp_15_r20/prebuilts/vndk/v34/x86/include/frameworks/native/libs/gui/include/gui/ |
D | DisplayEventReceiver.h | 71 struct Event { struct 86 VsyncEventData vsyncData; argument 89 struct Hotplug { 114 * DisplayEventReceiver creates and registers an event connection with argument
|
/aosp_15_r20/prebuilts/vndk/v34/arm64/include/frameworks/native/libs/gui/include/gui/ |
D | DisplayEventReceiver.h | 71 struct Event { struct 86 VsyncEventData vsyncData; argument 89 struct Hotplug { 114 * DisplayEventReceiver creates and registers an event connection with argument
|
/aosp_15_r20/prebuilts/vndk/v34/arm/include/frameworks/native/libs/gui/include/gui/ |
D | DisplayEventReceiver.h | 71 struct Event { struct 86 VsyncEventData vsyncData; argument 89 struct Hotplug { 114 * DisplayEventReceiver creates and registers an event connection with argument
|
/aosp_15_r20/prebuilts/vndk/v34/x86_64/include/frameworks/native/libs/gui/include/gui/ |
D | DisplayEventReceiver.h | 71 struct Event { struct 86 VsyncEventData vsyncData; argument 89 struct Hotplug { 114 * DisplayEventReceiver creates and registers an event connection with argument
|