Lines Matching refs:process
22 use crate::{context::Context, page_range::Shrinker, process::Process, thread::Thread};
37 mod process; module
91 p: process::PROCESS_LAYOUT,
118 self.thread.process.stats.inc_br(code); in write_code()
394 let process = match Process::open(ctx, file) { in rust_binder_open() localVariable
395 Ok(process) => process, in rust_binder_open()
400 match unsafe { BinderfsProcFile::new(inode, process.task.pid()) } { in rust_binder_open()
401 Ok(Some(file)) => process.inner.lock().binderfs_file = Some(file), in rust_binder_open()
407 unsafe { (*file_ptr).private_data = process.into_foreign().cast_mut() }; in rust_binder_open()
416 let process = unsafe { Arc::<Process>::from_foreign((*file).private_data) }; in rust_binder_release() localVariable
419 Process::release(process, file); in rust_binder_release()