Home
last modified time | relevance | path

Searched refs:write_str (Results 1 – 4 of 4) sorted by relevance

/linux-6.6.21/rust/kernel/
Dstr.rs258 f.write_str("\"")?; in fmt()
262 b'\"' => f.write_str("\\\"")?, in fmt()
267 f.write_str("\"") in fmt()
459 fn write_str(&mut self, s: &str) -> fmt::Result { in write_str() method
511 fn write_str(&mut self, s: &str) -> fmt::Result { in write_str() method
512 self.0.write_str(s)?; in write_str()
557 f.write_str("\0")?; in try_from_fmt()
565 f.write_str("\0")?; in try_from_fmt()
/linux-6.6.21/scripts/
Dgenerate_rust_target.rs37 formatter.write_str("{")?; in fmt()
44 formatter.write_str("}") in fmt()
95 formatter.write_str("{\n")?; in fmt()
102 formatter.write_str("}") in fmt()
/linux-6.6.21/rust/alloc/collections/
Dmod.rs138 fmt.write_str("memory allocation failed")?; in fmt()
147 fmt.write_str(reason) in fmt()
/linux-6.6.21/rust/alloc/
Dboxed.rs1437 fn write_str(&mut self, s: &str) { in write_str() method
1438 (**self).write_str(s) in write_str()