Searched defs:CString (Results 1 – 6 of 6) sorted by relevance
| /linux/rust/kernel/ |
| H A D | str.rs | 231 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 D | configfs.rs | 259 name: CString, in new()
|
| /linux/drivers/cpufreq/ |
| H A D | rcpufreq_dt.rs | 20 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 D | resource.rs | 105 name: CString, in request_region()
|
| /linux/rust/syn/ |
| H A D | lit.rs | 322 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 D | to_tokens.rs | 229 impl ToTokens for CString { implementation
|