Searched refs:other (Results 1 – 9 of 9) sorted by relevance
/DragonOS-0.1.5/kernel/src/process/ |
D | pid.rs | 17 fn eq(&self, other: &PidType) -> bool { in eq() 18 *self as u8 == *other as u8 in eq()
|
/DragonOS-0.1.5/ |
D | LICENSE | 16 Foundation's software and to any other program whose authors commit to 17 using it. (Some other Free Software Foundation software is covered by 62 0. This License applies to any program or other work which contains 72 Activities other than copying, distribution and modification are not 84 and give any other recipients of the Program a copy of this License 121 this License, whose permissions for other licensees extend to the 131 a storage or distribution medium does not bring the other work under 198 infringement or for any other reason (not limited to patent issues), 203 License and any other pertinent obligations, then as a consequence you 212 apply and the section as a whole is intended to apply in other [all …]
|
D | README_EN.md | 97 …d to: plagiarizing the code of the project as your graduation project and other academic misconduc…
|
/DragonOS-0.1.5/kernel/src/filesystem/ramfs/ |
D | mod.rs | 286 fn link(&self, name: &str, other: &Arc<dyn IndexNode>) -> Result<(), i32> { in link() 287 let other: &LockedRamFSInode = other in link() localVariable 291 let mut other_locked: SpinLockGuard<RamFSInode> = other.0.lock(); in link()
|
/DragonOS-0.1.5/kernel/src/filesystem/vfs/ |
D | mount.rs | 220 fn link(&self, name: &str, other: &Arc<dyn IndexNode>) -> Result<(), i32> { in link() 221 return self.inner_inode.link(name, other); in link()
|
/DragonOS-0.1.5/kernel/src/filesystem/procfs/ |
D | mod.rs | 528 fn link(&self, name: &str, other: &Arc<dyn IndexNode>) -> Result<(), i32> { in link() 529 let other: &LockedProcFSInode = other in link() localVariable 533 let mut other_locked: SpinLockGuard<ProcFSInode> = other.0.lock(); in link()
|
/DragonOS-0.1.5/kernel/src/ipc/ |
D | signal_types.rs | 339 fn eq(&self, other: &SignalNumber) -> bool { in eq() 340 *self as i32 == *other as i32 in eq()
|
/DragonOS-0.1.5/kernel/src/filesystem/fat/ |
D | fs.rs | 47 fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> { in partial_cmp() 48 return self.cluster_num.partial_cmp(&other.cluster_num); in partial_cmp() 54 fn eq(&self, other: &Self) -> bool { in eq() 55 self.cluster_num == other.cluster_num in eq()
|
/DragonOS-0.1.5/kernel/src/libs/libELF/ |
D | elf.h | 2689 #define PPC64_LOCAL_ENTRY_OFFSET(other) \ argument 2690 (((1 << (((other) & STO_PPC64_LOCAL_MASK) >> STO_PPC64_LOCAL_BIT)) >> 2) << 2)
|