Home
last modified time | relevance | path

Searched refs:into_ptr (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/c_adapter/
H A Dbasic_rust_types.rs367 .into_ptr() as *const c_void; in OhCloudExtVectorGet()
377 .into_ptr() as *const c_void; in OhCloudExtVectorGet()
387 .into_ptr() as *const c_void; in OhCloudExtVectorGet()
400 .into_ptr() as *const c_void; in OhCloudExtVectorGet()
683 .into_ptr() as *const OhCloudExtVector; in OhCloudExtHashMapIterGetKeyValuePair()
685 .into_ptr() as *const OhCloudExtVector; in OhCloudExtHashMapIterGetKeyValuePair()
692 .into_ptr() as *const OhCloudExtVector; in OhCloudExtHashMapIterGetKeyValuePair()
827 .into_ptr() as *const c_void; in OhCloudExtHashMapGet()
839 .into_ptr() as *const c_void; in OhCloudExtHashMapGet()
846 .into_ptr() as *const c_void; in OhCloudExtHashMapGet()
[all …]
H A Dcloud_ext_types.rs144 OhCloudExtValue::new(val, SafetyCheckId::Value).into_ptr() as *mut OhCloudExtValue in OhCloudExtValueNew()
248 OhCloudExtCloudAsset::new(cloud_asset, SafetyCheckId::CloudAsset).into_ptr() in OhCloudExtCloudAssetNew()
445 OhCloudExtDatabase::new(db, SafetyCheckId::Database).into_ptr() in OhCloudExtDatabaseNew()
509 *tables = OhCloudExtHashMap::new(tb_hashmap, SafetyCheckId::HashMap).into_ptr() in OhCloudExtDatabaseGetTable()
546 OhCloudExtTable::new(tb, SafetyCheckId::Table).into_ptr() in OhCloudExtTableNew()
609 *fields = OhCloudExtVector::new(vec, SafetyCheckId::Vector).into_ptr(); in OhCloudExtTableGetFields()
651 OhCloudExtField::new(fd, SafetyCheckId::Field).into_ptr() in OhCloudExtFieldNew()
862 *app_info = OhCloudExtHashMap::new(apps, SafetyCheckId::HashMap).into_ptr(); in OhCloudExtCloudInfoGetAppInfo()
1012 *dbs = OhCloudExtVector::new(vec, SafetyCheckId::Vector).into_ptr(); in OhCloudExtSchemaMetaGetDatabases()
1176 *values = OhCloudExtVector::new(vec, SafetyCheckId::Vector).into_ptr(); in OhCloudExtCloudDbDataGetValues()
[all …]
H A Dcloud_extension.rs108 OhCloudExtCloudAssetLoader::new(loader, SafetyCheckId::CloudAssetLoader).into_ptr() in OhCloudExtCloudAssetLoaderNew()
261 let ptr = OhCloudExtCloudDatabase::new(db, SafetyCheckId::CloudDatabase).into_ptr(); in OhCloudExtCloudDbNew()
470 *out = OhCloudExtCloudDbData::new(cloud_data, SafetyCheckId::CloudDbData).into_ptr(); in OhCloudExtCloudDbBatchQuery()
541 return OhCloudExtCloudSync::new(service, SafetyCheckId::CloudSync).into_ptr(); in OhCloudExtCloudSyncNew()
562 *info = OhCloudExtCloudInfo::new(cloud_info, SafetyCheckId::CloudInfo).into_ptr(); in OhCloudExtCloudSyncGetServiceInfo()
591 *schema = OhCloudExtSchemaMeta::new(schema_meta, SafetyCheckId::SchemaMeta).into_ptr(); in OhCloudExtCloudSyncGetAppSchema()
632 *relations = OhCloudExtHashMap::new(result, SafetyCheckId::HashMap).into_ptr(); in OhCloudExtCloudSyncSubscribe()
641 *err = OhCloudExtVector::new(ret, SafetyCheckId::Vector).into_ptr(); in OhCloudExtCloudSyncSubscribe()
684 *err = OhCloudExtVector::new(ret, SafetyCheckId::Vector).into_ptr(); in OhCloudExtCloudSyncUnsubscribe()
H A Dmod.rs126 pub(crate) fn into_ptr(self) -> *mut SafeCffiWrapper<T> { in into_ptr() method