Home
last modified time | relevance | path

Searched refs:CIString (Results 1 - 4 of 4) sorted by relevance

/base/msdp/device_status/rust/subsystem/device_profile/binding/include/
H A Dfusion_security.h26 struct CIString { struct
27 CIString* (*clone)(CIString*);
28 void (*destruct)(CIString*);
29 const char *(*data)(CIString*);
33 CIString* GetLocalNetworkId();
/base/msdp/device_status/rust/subsystem/device_profile/binding/src/
H A Dfusion_security.cpp68 struct CString : public CIString {
77 static CIString* Clone(CIString* target);
78 static void Destruct(CIString* target);
79 static const char* GetData(CIString* target);
98 CIString* CString::Clone(CIString* target) in Clone()
105 void CString::Destruct(CIString* target) in Destruct()
112 const char* CString::GetData(CIString* target) in GetData()
119 CIString* GetLocalNetworkI
[all...]
/base/msdp/device_status/rust/subsystem/device_profile/sys/src/
H A Dbinding.rs273 type CIStringClone = extern "C" fn (*mut CIString) -> *mut CIString;
274 type CIStringDestruct = extern "C" fn (*mut CIString);
275 type CIStringGetData = extern "C" fn (*mut CIString) -> *const c_char;
277 // Struct representing a CIString.
279 pub struct CIString { structure names
292 /// Get a mutable pointer to CIString.
296 /// A mutable pointer to CIString. Please note that the pointer may be null if there is an error or no local network
298 pub fn GetLocalNetworkId() -> *mut CIString; in GetLocalNetworkId()
H A Dadapter.rs26 CIString,
401 data: *mut CIString,
405 /// Retrieves the string data from the CIString object.
432 impl From<*mut CIString> for CStringGuard {
440 fn from(value: *mut CIString) -> Self in from()

Completed in 4 milliseconds