Home
last modified time | relevance | path

Searched refs:CString (Results 1 – 9 of 9) sorted by relevance

/linux/rust/kernel/
H A Dstr.rs66 /// # use kernel::{prelude::fmt, b_str, str::{BStr, CString}};
68 /// let s = CString::try_from_fmt(fmt!("{ascii}"))?;
72 /// let s = CString::try_from_fmt(fmt!("{non_ascii}"))?;
97 /// # use kernel::{prelude::fmt, b_str, str::{BStr, CString}};
100 /// let s = CString::try_from_fmt(fmt!("{ascii:?}"))?;
104 /// let s = CString::try_from_fmt(fmt!("{non_ascii:?}"))?;
230 /// Convert this [`CStr`] into a [`CString`] by allocating memory and
232 fn to_cstring(&self) -> Result<CString, AllocError>;
256 /// Returns a copy of this [`CString`] where each character is mapped to its
265 fn to_ascii_lowercase(&self) -> Result<CString, AllocErro in to_ascii_lowercase()
231 to_cstring(&self) -> Result<CString, AllocError> to_cstring() argument
264 to_ascii_lowercase(&self) -> Result<CString, AllocError> to_ascii_lowercase() argument
275 to_ascii_uppercase(&self) -> Result<CString, AllocError> to_ascii_uppercase() argument
341 to_cstring(&self) -> Result<CString, AllocError> to_cstring() argument
355 to_ascii_lowercase(&self) -> Result<CString, AllocError> to_ascii_lowercase() argument
363 to_ascii_uppercase(&self) -> Result<CString, AllocError> to_ascii_uppercase() argument
810 pub struct CString { global() struct
811 bufBStr::fmt::CString global() argument
814 impl CString { global() implementation
849 impl Deref for CString { global() implementation
859 impl DerefMut for CString { global() implementation
867 impl<'a> TryFrom<&'a CStr> for CString { global() implementation
870 try_from(cstr: &'a CStr) -> Result<CString, AllocError> try_from() argument
881 impl fmt::Debug for CString { global() implementation
[all...]
H A Dopp.rs18 str::CString,
91 fn to_c_str_array(names: &[CString]) -> Result<KVec<*const c_char>> { in to_c_str_array()
362 clk_names: Option<KVec<CString>>,
363 prop_name: Option<CString>,
364 regulator_names: Option<KVec<CString>>,
380 pub fn set_clk_names(mut self, names: KVec<CString>) -> Result<Self> { in set_clk_names()
394 pub fn set_prop_name(mut self, name: CString) -> Result<Self> { in set_prop_name()
404 pub fn set_regulator_names(mut self, names: KVec<CString>) -> Result<Self> { in set_regulator_names()
H A Dconfigfs.rs116 use crate::str::CString;
258 name: CString, in new()
259 new( name: CString, item_type: &'static ItemType<Group<Data>, Data>, data: impl PinInit<Data, Error>, ) -> impl PinInit<Self, Error> new() argument
/linux/samples/rust/
H A Drust_debugfs_scoped.rs17 str::CString,
70 let name = CString::try_from_fmt(fmt!("{name_str}"))?; in create_file_write()
71 let file_name = CString::try_from_fmt(fmt!("{name_str}"))?; in create_file_write()
86 let Ok(name) = CString::try_from_fmt(fmt!("{idx}")) else { in create_file_write()
124 name: CString, in init_control()
H A Drust_debugfs.rs47 str::CString,
73 _compatible: File<CString>,
159 .property_read::<CString>(c"compatible") in new()
H A Drust_driver_platform.rs78 str::CString,
136 let prop = fwnode.property_read::<CString>(name).required_by(dev)?; in properties_parse()
/linux/rust/kernel/io/
H A Dresource.rs15 str::CString,
35 _name: CString,
105 name: CString, in request_region() argument
/linux/rust/quote/
H A Dto_tokens.rs8 use std::ffi::{CStr, CString};
229 impl ToTokens for CString { implementation
/linux/rust/syn/
H A Dlit.rs11 use std::ffi::{CStr, CString};
322 pub fn value(&self) -> CString { in value() argument
1135 use std::ffi::CString;
1445 pub(crate) fn parse_lit_c_str(s: &str) -> (CString, Box<str>) { in parse_lit_c_str() argument
1454 fn parse_lit_c_str_cooked(mut s: &str) -> (CString, Box<str>) { in parse_lit_c_str_cooked() argument
1518 (CString::new(out).unwrap(), suffix) in parse_lit_c_str_cooked()
1521 fn parse_lit_c_str_raw(s: &str) -> (CString, Box<str>) { in parse_lit_c_str_raw() argument
1524 (CString::new(String::from(value)).unwrap(), suffix) in parse_lit_c_str_raw()