Lines Matching full:tr
57 tr: &BinderTransactionDataSg, in new()
60 let trd = &tr.transaction_data; in new()
67 tr, in new()
118 tr: &BinderTransactionDataSg, in new_reply()
122 let trd = &tr.transaction_data; in new_reply()
123 let mut alloc = match from.copy_transaction_data(to.clone(), tr, debug_id, allow_fds, None) in new_reply()
367 let tr = tr_sec.tr_data(); in do_work() localVariable
370 tr.target.ptr = ptr as _; in do_work()
371 tr.cookie = cookie as _; in do_work()
373 tr.code = self.code; in do_work()
374 tr.flags = self.flags; in do_work()
375 tr.data_size = self.data_size as _; in do_work()
376 tr.data.ptr.buffer = self.data_address as _; in do_work()
377 tr.offsets_size = self.offsets_size as _; in do_work()
378 if tr.offsets_size > 0 { in do_work()
379 tr.data.ptr.offsets = (self.data_address + ptr_align(self.data_size).unwrap()) as _; in do_work()
381 tr.sender_euid = self.sender_euid.into_uid_in_current_ns(); in do_work()
382 tr.sender_pid = 0; in do_work()
385 tr.sender_pid = self.from.process.pid_in_current_ns(); in do_work()
401 writer.write_payload(&*tr)?; in do_work()