Lines Matching refs:bytes_read

1747     int bytes_read;  in logVendorResumeLatencyStats()  local
1753 &bytes_read)) in logVendorResumeLatencyStats()
1755 offset += bytes_read; in logVendorResumeLatencyStats()
1760 if (!sscanf(data + offset, "Max Resume Latency: %" PRId64 "\n%n", &max_latency, &bytes_read)) in logVendorResumeLatencyStats()
1762 offset += bytes_read; in logVendorResumeLatencyStats()
1767 if (!sscanf(data + offset, "Sum Resume Latency: %" PRIu64 "\n%n", &sum_latency, &bytes_read)) in logVendorResumeLatencyStats()
1769 offset += bytes_read; in logVendorResumeLatencyStats()
1785 while (sscanf(data + offset, "%*ld - %*ldms ====> %" PRId64 "\n%n", &count, &bytes_read) == 1 || in logVendorResumeLatencyStats()
1786 sscanf(data + offset, "%*ld - infms ====> %" PRId64 "\n%n", &count, &bytes_read) == 1) { in logVendorResumeLatencyStats()
1787 offset += bytes_read; in logVendorResumeLatencyStats()
1835 int bytes_read; in process_irqatom_values() local
1841 while (sscanf(data + *offset, "%d %" PRId64 "\n%n", &irq_num, &irq_data, &bytes_read) == 2) { in process_irqatom_values()
1843 *offset += bytes_read; in process_irqatom_values()
1892 int bytes_read; in logVendorLongIRQStatsReported() local
1897 if (sscanf(data + offset, "long SOFTIRQ count: %" PRId64 "\n%n", &irq_count, &bytes_read) != 1) in logVendorLongIRQStatsReported()
1899 offset += bytes_read; in logVendorLongIRQStatsReported()
1905 if (sscanf(data + offset, "long SOFTIRQ detail (num, latency):\n%n", &bytes_read) != 0) in logVendorLongIRQStatsReported()
1907 offset += bytes_read; in logVendorLongIRQStatsReported()
1911 if (sscanf(data + offset, "long IRQ count: %" PRId64 "\n%n", &irq_count, &bytes_read) != 1) in logVendorLongIRQStatsReported()
1913 offset += bytes_read; in logVendorLongIRQStatsReported()
1917 if (sscanf(data + offset, "long IRQ detail (num, latency):\n%n", &bytes_read) != 0) in logVendorLongIRQStatsReported()
1919 offset += bytes_read; in logVendorLongIRQStatsReported()
1925 if (sscanf(data + offset, "storm IRQ detail (num, storm_count):\n%n", &bytes_read) != 0) in logVendorLongIRQStatsReported()
1927 offset += bytes_read; in logVendorLongIRQStatsReported()