Home
last modified time | relevance | path

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

/linux-6.15/rust/kernel/
Dstr.rs358 pub fn to_cstring(&self) -> Result<CString, AllocError> { in to_cstring()
401 pub fn to_ascii_lowercase(&self) -> Result<CString, AllocError> { in to_ascii_lowercase()
418 pub fn to_ascii_uppercase(&self) -> Result<CString, AllocError> { in to_ascii_uppercase()
867 pub struct CString { struct
868 buf: KVec<u8>,
871 impl CString { implementation
906 impl Deref for CString { implementation
916 impl DerefMut for CString { implementation
924 impl<'a> TryFrom<&'a CStr> for CString { implementation
927 fn try_from(cstr: &'a CStr) -> Result<CString, AllocError> { in try_from()
[all …]