Lines Matching refs:value
50 let mut value: MaybeUninit<P> = MaybeUninit::uninit();
51 prctl_2args(option, value.as_mut_ptr().cast())?;
52 Ok(value.assume_init())
61 let mut value: P = Default::default();
62 prctl_2args(option, ((&mut value) as *mut P).cast())?;
63 TryFrom::try_from(value)
72 /// Get the current value of the parent process death signal.
126 fn try_from(value: i32) -> Result<Self, Self::Error> {
127 match value {
331 fn try_from(value: i32) -> Result<Self, Self::Error> {
332 match value {
390 fn try_from(value: u32) -> Result<Self, Self::Error> {
391 match value {
451 fn try_from(value: u32) -> Result<Self, Self::Error> {
452 match value {
537 fn try_from(value: u32) -> Result<Self, Self::Error> {
538 match value {
622 /// Set the current `brk` value.
697 let mut value: c_uint = 0;
698 let value_ptr = (&mut value) as *mut c_uint;
700 Ok(value as usize)
855 fn try_from(value: u32) -> Result<Self, Self::Error> {
856 match value {
914 fn try_from(value: u32) -> Result<Self, Self::Error> {
915 match value {