Lines Matching defs:log
255 struct binder_transaction_log *log)
258 unsigned int cur = atomic_inc_return(&log->cur);
260 if (cur >= ARRAY_SIZE(log->entry))
261 log->full = true;
262 e = &log->entry[cur % ARRAY_SIZE(log->entry)];
3724 * of log entry
3798 * of log entry
5838 * Only create for the first PID to avoid debugfs log spamming
5854 * Similar to debugfs, the process specific log file is shared
5856 * This is ok since same as debugfs, the log file will contain
6604 * we print the log values
6626 struct binder_transaction_log *log = m->private;
6627 unsigned int log_cur = atomic_read(&log->cur);
6633 cur = count < ARRAY_SIZE(log->entry) && !log->full ?
6634 0 : count % ARRAY_SIZE(log->entry);
6635 if (count > ARRAY_SIZE(log->entry) || log->full)
6636 count = ARRAY_SIZE(log->entry);
6638 unsigned int index = cur++ % ARRAY_SIZE(log->entry);
6640 print_binder_transaction_log_entry(m, &log->entry[index]);