Home
last modified time | relevance | path

Searched defs:CString (Results 1 – 6 of 6) 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 { impl
849 impl Deref for CString { implementation
[all …]
H A Dconfigfs.rs259 name: CString, in new()
/linux/drivers/cpufreq/
H A Drcpufreq_dt.rs20 fn find_supply_name_exact(dev: &Device, name: &str) -> Option<CString> { in find_supply_name_exact()
29 fn find_supply_names(dev: &Device, cpu: cpu::CpuId) -> Option<KVec<CString>> { in find_supply_names()
/linux/rust/kernel/io/
H A Dresource.rs105 name: CString, in request_region()
/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