Home
last modified time | relevance | path

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

/linux/rust/kernel/
H A Dstr.rs231 fn to_cstring(&self) -> Result<CString, AllocError>; in to_cstring()
264 fn to_ascii_lowercase(&self) -> Result<CString, AllocError>; in to_ascii_lowercase()
275 fn to_ascii_uppercase(&self) -> Result<CString, AllocError>; in to_ascii_uppercase()
341 fn to_cstring(&self) -> Result<CString, AllocError> { in to_cstring()
355 fn to_ascii_lowercase(&self) -> Result<CString, AllocError> { in to_ascii_lowercase()
363 fn to_ascii_uppercase(&self) -> Result<CString, AllocError> { in to_ascii_uppercase()
810 pub struct CString { struct
811 buf: KVec<u8>,
814 impl CString { implementation
849 impl Deref for CString { 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/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/kernel/io/
H A Dresource.rs105 name: CString, in request_region()
/linux/rust/quote/
H A Dto_tokens.rs229 impl ToTokens for CString { implementation