Searched defs:c_void (Results 1 – 6 of 6) sorted by relevance
| /foundation/communication/ipc/interfaces/innerkits/rust/src/ |
| D | process.rs | 39 value: *mut c_void, in allocate_vec_with_buffer() 59 unsafe extern "C" fn allocate_vec<T>(value: *mut c_void, len: i32) -> bool { in allocate_vec() 70 pub(crate) unsafe fn allocate_vec_maybeuninit<T>(value: *mut c_void, len: u32) { in allocate_vec_maybeuninit()
|
| /foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/c_adapter/ |
| D | basic_rust_types.rs | 157 value: *mut c_void, in OhCloudExtVectorPush() 301 value: *mut *const c_void, in OhCloudExtVectorGet() 339 *value = vec[index].as_ptr() as *const c_void; in OhCloudExtVectorGet() constant 367 .into_ptr() as *const c_void; in OhCloudExtVectorGet() constant 377 .into_ptr() as *const c_void; in OhCloudExtVectorGet() constant 387 .into_ptr() as *const c_void; in OhCloudExtVectorGet() constant 400 .into_ptr() as *const c_void; in OhCloudExtVectorGet() constant 573 value: *mut c_void, in OhCloudExtHashMapInsert() 788 value: *mut *const c_void, in OhCloudExtHashMapGet() 803 *value = val as *const _ as *const c_void; in OhCloudExtHashMapGet() constant [all …]
|
| D | mod.rs | 101 pub(crate) unsafe fn type_safety_check(ptr: *const c_void, tar_type: SafetyCheckId) -> bool { in type_safety_check() 135 type_safety_check(obj as *const _ as *const c_void, typ) in from_ptr() constant 145 if type_safety_check(obj as *const _ as *const c_void, typ) { in get_inner_ref() constant 158 if type_safety_check(obj as *const _ as *const c_void, typ) { in get_inner_mut() constant
|
| D | cloud_ext_types.rs | 90 content: *mut c_void, in OhCloudExtValueNew() 155 content: *mut *const c_void, in OhCloudExtValueGetContent() 174 *content = c as *const _ as *const c_void; in OhCloudExtValueGetContent() constant 178 *content = c as *const _ as *const c_void; in OhCloudExtValueGetContent() constant 182 *content = c.as_ptr() as *const c_void; in OhCloudExtValueGetContent() constant 187 *content = c as *const _ as *const c_void; in OhCloudExtValueGetContent() constant 191 *content = c.as_ptr() as *const c_void; in OhCloudExtValueGetContent() constant 1227 content: *mut *const c_void, in OhCloudExtValueBucketGetValue() 1257 *content = i as *const i64 as *const c_void; in OhCloudExtValueBucketGetValue() constant 1261 *content = f as *const f64 as *const c_void; in OhCloudExtValueBucketGetValue() constant [all …]
|
| /foundation/filemanagement/file_api/interfaces/kits/rust/src/ |
| D | ffi.rs | 25 pub unsafe extern "C" fn ReaderIterator(path: *const c_char) -> *mut c_void { in ReaderIterator() 36 pub unsafe extern "C" fn DropReaderIterator(iter: *mut c_void) { in DropReaderIterator()
|
| D | adapter.rs | 78 pub(crate) unsafe fn reader_iterator(path: *const c_char) -> Result<*mut c_void, Error> { in reader_iterator() 94 pub(crate) unsafe fn drop_reader_iterator(iter: *mut c_void) { in drop_reader_iterator()
|