Lines Matching full:fn
14 unsafe fn binder_ioctl(cmd: c_uint, arg: c_ulong);
15 unsafe fn binder_ioctl_done(ret: c_int);
16 unsafe fn binder_read_done(ret: c_int);
17 unsafe fn binder_write_done(ret: c_int);
18 unsafe fn binder_wait_for_work(proc_work: bool, transaction_stack: bool, thread_todo: bool);
19 unsafe fn binder_transaction(reply: bool, t: rust_binder_transaction, thread: *mut task_struct);
20 unsafe fn binder_transaction_received(t: rust_binder_transaction);
21 unsafe fn binder_transaction_fd_send(t_debug_id: c_int, fd: c_int, offset: usize);
22 unsafe fn binder_transaction_fd_recv(t_debug_id: c_int, fd: c_int, offset: usize);
23 unsafe fn binder_command(cmd: u32);
24 unsafe fn binder_return(ret: u32);
28 fn raw_transaction(t: &Transaction) -> rust_binder_transaction { in raw_transaction()
33 fn to_errno(ret: Result) -> i32 { in to_errno()
41 pub(crate) fn trace_ioctl(cmd: u32, arg: usize) { in trace_ioctl()
47 pub(crate) fn trace_ioctl_done(ret: Result) { in trace_ioctl_done()
52 pub(crate) fn trace_read_done(ret: Result) { in trace_read_done()
57 pub(crate) fn trace_write_done(ret: Result) { in trace_write_done()
63 pub(crate) fn trace_wait_for_work(proc_work: bool, transaction_stack: bool, thread_todo: bool) { in trace_wait_for_work()
69 pub(crate) fn trace_transaction(reply: bool, t: &Transaction, thread: Option<&Task>) { in trace_transaction()
80 pub(crate) fn trace_transaction_received(t: &Transaction) { in trace_transaction_received()
86 pub(crate) fn trace_transaction_fd_send(t_debug_id: usize, fd: u32, offset: usize) { in trace_transaction_fd_send()
91 pub(crate) fn trace_transaction_fd_recv(t_debug_id: usize, fd: u32, offset: usize) { in trace_transaction_fd_recv()
97 pub(crate) fn trace_command(cmd: u32) { in trace_command()
102 pub(crate) fn trace_return(ret: u32) { in trace_return()