HomeSort by relevance Sort by last modified time
    Searched defs:ftrace_size (Results 1 - 2 of 2) sorted by null

  /external/u-boot/lib/
trace.c 32 ulong ftrace_size; /* Num. of ftrace records we have space for */ member in struct:trace_hdr
66 if (hdr->ftrace_count < hdr->ftrace_size) {
78 if (hdr->ftrace_count < hdr->ftrace_size) {
206 if (count > hdr->ftrace_size)
207 count = hdr->ftrace_size;
253 count = min(hdr->ftrace_count, hdr->ftrace_size);
256 if (hdr->ftrace_count > hdr->ftrace_size) {
258 hdr->ftrace_count - hdr->ftrace_size);
323 hdr->ftrace_size = (buff_size - needed) / sizeof(*hdr->ftrace);
358 hdr->ftrace_size = (buff_size - needed) / sizeof(*hdr->ftrace)
    [all...]
  /external/perfetto/src/traced/probes/ftrace/
event_info_constants.h 135 : ftrace_offset(offset), ftrace_size(size) {}
138 uint16_t ftrace_size; member in struct:perfetto::Field

Completed in 62 milliseconds