Home
last modified time | relevance | path

Searched defs:CString (Results 1 – 5 of 5) sorted by relevance

/linux/rust/kernel/
H A Dstr.rs232 to_cstring(&self) -> Result<CString, AllocError> to_cstring() argument
265 to_ascii_lowercase(&self) -> Result<CString, AllocError> to_ascii_lowercase() argument
276 to_ascii_uppercase(&self) -> Result<CString, AllocError> to_ascii_uppercase() argument
344 to_cstring(&self) -> Result<CString, AllocError> to_cstring() argument
358 to_ascii_lowercase(&self) -> Result<CString, AllocError> to_ascii_lowercase() argument
366 to_ascii_uppercase(&self) -> Result<CString, AllocError> to_ascii_uppercase() argument
826 pub struct CString { global() struct
827 bufBStr::fmt::CString global() argument
830 impl CString { global() implementation
868 impl Deref for CString { global() implementation
878 impl DerefMut for CString { global() implementation
886 impl<'a> TryFrom<&'a CStr> for CString { global() implementation
889 try_from(cstr: &'a CStr) -> Result<CString, AllocError> try_from() argument
900 impl fmt::Debug for CString { global() implementation
[all...]
H A Dconfigfs.rs259 new( name: CString, item_type: &'static ItemType<Group<Data>, Data>, data: impl PinInit<Data, Error>, ) -> impl PinInit<Self, Error> new() argument
/linux/rust/kernel/io/
H A Dresource.rs105 name: CString, in request_region() argument
/linux/rust/syn/
H A Dlit.rs322 pub fn value(&self) -> CString { in value()
1445 pub(crate) fn parse_lit_c_str(s: &str) -> (CString, Box<str>) { in parse_lit_c_str()
1454 fn parse_lit_c_str_cooked(mut s: &str) -> (CString, Box<str>) { in parse_lit_c_str_cooked()
1521 fn parse_lit_c_str_raw(s: &str) -> (CString, Box<str>) { in parse_lit_c_str_raw()
/linux/rust/quote/
H A Dto_tokens.rs229 impl ToTokens for CString { implementation