Searched refs:BinderTracker (Results 1 – 4 of 4) sorted by relevance
/external/perfetto/src/trace_processor/importers/ftrace/ |
D | binder_tracker.h | 34 class BinderTracker : public Destructible { 38 explicit BinderTracker(TraceProcessorContext*); 39 BinderTracker(const BinderTracker&) = delete; 40 BinderTracker& operator=(const BinderTracker&) = delete; 41 ~BinderTracker() override; 42 static BinderTracker* GetOrCreate(TraceProcessorContext* context) { in GetOrCreate() 44 context->binder_tracker.reset(new BinderTracker(context)); in GetOrCreate() 46 return static_cast<BinderTracker*>(context->binder_tracker.get()); in GetOrCreate()
|
D | binder_tracker.cc | 58 BinderTracker::BinderTracker(TraceProcessorContext* context) in BinderTracker() function in perfetto::trace_processor::BinderTracker 82 BinderTracker::~BinderTracker() = default; 84 void BinderTracker::Transaction(int64_t ts, in Transaction() 147 void BinderTracker::TransactionReceived(int64_t ts, in TransactionReceived() 200 void BinderTracker::Lock(int64_t ts, uint32_t pid) { in Lock() 209 void BinderTracker::Locked(int64_t ts, uint32_t pid) { in Locked() 224 void BinderTracker::Unlock(int64_t ts, uint32_t pid) { in Unlock() 236 void BinderTracker::TransactionAllocBuf(int64_t ts, in TransactionAllocBuf()
|
D | ftrace_parser.cc | 1153 BinderTracker::GetOrCreate(context_)->Transaction( in ParseBinderTransaction() 1164 BinderTracker::GetOrCreate(context_)->TransactionReceived(timestamp, pid, in ParseBinderTransactionReceived() 1176 BinderTracker::GetOrCreate(context_)->TransactionAllocBuf( in ParseBinderTransactionAllocBuf() 1184 BinderTracker::GetOrCreate(context_)->Locked(timestamp, pid); in ParseBinderLocked() 1191 BinderTracker::GetOrCreate(context_)->Lock(timestamp, pid); in ParseBinderLock() 1198 BinderTracker::GetOrCreate(context_)->Unlock(timestamp, pid); in ParseBinderUnlock()
|
/external/perfetto/src/trace_processor/importers/systrace/ |
D | systrace_line_parser.cc | 152 BinderTracker::GetOrCreate(context_)->Transaction( in ParseLine() 160 BinderTracker::GetOrCreate(context_)->TransactionReceived(line.ts, line.pid, in ParseLine() 163 BinderTracker::GetOrCreate(context_)->Lock(line.ts, line.pid); in ParseLine() 165 BinderTracker::GetOrCreate(context_)->Locked(line.ts, line.pid); in ParseLine() 167 BinderTracker::GetOrCreate(context_)->Unlock(line.ts, line.pid); in ParseLine() 177 BinderTracker::GetOrCreate(context_)->TransactionAllocBuf( in ParseLine()
|