Home
last modified time | relevance | path

Searched refs:trace_call (Results 1 – 8 of 8) sorted by relevance

/external/u-boot/lib/
Dtrace.c32 struct trace_call *ftrace; /* The function call records */
111 struct trace_call *rec = &hdr->ftrace[hdr->ftrace_count]; in add_ftrace()
123 struct trace_call *rec = &hdr->ftrace[hdr->ftrace_count]; in add_textbase()
258 if (ptr + sizeof(struct trace_call) < end) { in trace_list_calls()
259 struct trace_call *call = &hdr->ftrace[rec]; in trace_list_calls()
260 struct trace_call *out = ptr; in trace_list_calls()
267 ptr += sizeof(struct trace_call); in trace_list_calls()
375 hdr->ftrace = (struct trace_call *)(buff + needed); in trace_init()
411 hdr->ftrace = (struct trace_call *)((char *)hdr + needed); in trace_early_init()
DKconfig205 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
250 12 bytes (see struct trace_call). A suggested minimum size is 1MB. If
/external/u-boot/tools/
Dproftool.c56 struct trace_call *call_list;
210 struct trace_call *call_data; in read_calls()
214 call_list = (struct trace_call *)calloc(count, sizeof(*call_data)); in read_calls()
494 struct trace_call *call; in make_ftrace()
/external/u-boot/include/
Dtrace.h74 struct trace_call { struct
/external/python/cpython2/Lib/test/
Dtest_sys_setprofile.py67 def trace_call(self, frame): member in ProfileSimulator
83 'call': trace_call,
/external/python/cpython3/Lib/test/
Dtest_sys_setprofile.py66 def trace_call(self, frame): member in ProfileSimulator
82 'call': trace_call,
/external/tensorflow/tensorflow/stream_executor/
Dstream_executor_pimpl.cc858 void StreamExecutor::SubmitTrace(TraceCallT trace_call, ArgsT &&... args) { in SubmitTrace() argument
864 (listener->*trace_call)(std::forward<ArgsT>(args)...); in SubmitTrace()
Dstream_executor_pimpl.h647 void SubmitTrace(TraceCallT trace_call, ArgsT&&... args);