Home
last modified time | relevance | path

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

/openbmc/qemu/tests/unit/
H A Dtest-xs-node.c220 static int write_str(XenstoreImplState *s, unsigned int dom_id, in write_str() function
284 err = write_str(s, DOMID_QEMU, XBT_NULL, abspath, ""); in setup()
299 err = write_str(s, DOMID_QEMU, XBT_NULL, abspath, ""); in setup()
346 err = write_str(s, DOMID_GUEST, XBT_NULL, "some/relative/path", in test_xs_node_simple()
378 err = write_str(s, DOMID_GUEST, XBT_NULL, "/local/domain/badplace", in test_xs_node_simple()
384 err = write_str(s, DOMID_GUEST, XBT_NULL, in test_xs_node_simple()
394 err = write_str(s, DOMID_GUEST, XBT_NULL, "some/relative/path", in test_xs_node_simple()
439 err = write_str(s, DOMID_GUEST, XBT_NULL, "some/relative", "moredata"); in test_xs_node_simple()
444 err = write_str(s, DOMID_GUEST, XBT_NULL, "/local/domain/badplace", in test_xs_node_simple()
459 err = write_str(s, DOMID_GUEST, XBT_NULL, "some/relative", "otherdata"); in test_xs_node_simple()
[all …]
/openbmc/linux/rust/kernel/
H A 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()
/openbmc/linux/scripts/
H A 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()
/openbmc/linux/rust/alloc/collections/
H A Dmod.rs138 fmt.write_str("memory allocation failed")?; in fmt()
147 fmt.write_str(reason) in fmt()
/openbmc/linux/drivers/char/ipmi/
H A Dkcs_bmc_cdev_raw.c255 bool write_odr, write_str; in kcs_bmc_raw_write() local
282 write_str = (*ppos == 1) || (count == 2); in kcs_bmc_raw_write()
287 if (write_str) { in kcs_bmc_raw_write()
/openbmc/linux/rust/alloc/
H A Dboxed.rs1437 fn write_str(&mut self, s: &str) { in write_str() method
1438 (**self).write_str(s) in write_str()