Home
last modified time | relevance | path

Searched refs:seq_print (Results 1 – 10 of 10) sorted by relevance

/linux/drivers/android/binder/
H A Drust_binder_main.rs20 seq_print,
261 seq_print!(m, "{}", prefix); in debug_print()
263 seq_print!(m, "(skipped) "); in debug_print()
266 seq_print!(m, "transaction complete\n"); in debug_print()
268 seq_print!(m, "transaction error: {}\n", self.code); in debug_print()
478 seq_print!(m, "failed to generate state: {:?}\n", err); in rust_binder_stats_show()
494 seq_print!(m, "failed to generate state: {:?}\n", err); in rust_binder_state_show()
512 seq_print!(m, "failed to generate state: {:?}\n", err); in rust_binder_proc_show()
528 seq_print!(m, "failed to generate state: {:?}\n", err); in rust_binder_transactions_show()
534 seq_print!(m, "binder transactions:\n"); in rust_binder_transactions_show_impl()
[all …]
H A Dstats.rs9 use kernel::{ioctl::_IOC_NR, seq_file::SeqFile, seq_print};
50 seq_print!(m, "{}{}: {}\n", prefix, command_string(i), cnt); in debug_print()
56 seq_print!(m, "{}{}: {}\n", prefix, return_string(i), cnt); in debug_print()
H A Dnode.rs9 seq_print,
254 seq_print!( in full_debug_print()
266 seq_print!(m, " proc"); in full_debug_print()
268 seq_print!(m, " {}", node_ref.process.task.pid()); in full_debug_print()
271 seq_print!(m, "\n"); in full_debug_print()
734 seq_print!( in debug_print()
1121 seq_print!(m, "{}has cleared dead binder\n", prefix); in debug_print()
1123 seq_print!(m, "{}has dead binder\n", prefix); in debug_print()
1126 seq_print!(m, "{}has cleared death notification\n", prefix); in debug_print()
H A Dprocess.rs28 seq_print,
527 seq_print!(m, "proc {}\n", self.pid_in_current_ns()); in debug_print_stats()
528 seq_print!(m, "context {}\n", &*ctx.name); in debug_print_stats()
531 seq_print!(m, " threads: {}\n", inner.threads.iter().count()); in debug_print_stats()
532 seq_print!( in debug_print_stats()
540 seq_print!( in debug_print_stats()
545 seq_print!(m, " buffers: {}\n", mapping.alloc.count_buffers()); in debug_print_stats()
547 seq_print!( in debug_print_stats()
552 seq_print!(m, " nodes: {}\n", inner.nodes.iter().count()); in debug_print_stats()
565 seq_print!(m, " refs: {count} s {strong} w {weak}\n"); in debug_print_stats()
[all …]
H A Dtransaction.rs9 seq_print,
157 seq_print!( in debug_print_inner()
170 seq_print!(m, " node {}", target_node.debug_id); in debug_print_inner()
172 seq_print!(m, " size {}:{}\n", self.data_size, self.offsets_size); in debug_print_inner()
H A Dfreeze.rs11 seq_print,
151 seq_print!(m, "{}has frozen binder\n", prefix); in debug_print()
H A Dthread.rs17 seq_print,
461 seq_print!( in debug_print()
1582 seq_print!( in debug_print()
/linux/rust/kernel/
H A Dseq_file.rs48 macro_rules! seq_print { macro
53 pub use seq_print;
/linux/drivers/android/binder/range_alloc/
H A Dtree.rs10 seq_print,
120 seq_print!( in debug_print()
128 seq_print!(m, " oneway"); in debug_print()
132 seq_print!(m, " reserved\n"); in debug_print()
135 seq_print!(m, " allocated\n"); in debug_print()
/linux/rust/kernel/debugfs/
H A Dfile_ops.rs10 use crate::seq_print;
113 seq_print!(seq_file, "{}", WriterAdapter(data)); in writer_act()