Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/
H A Dkv_store_nb_delegate.h39 struct Option { struct
47 SecurityOption secOption; // Add data security level parameter argument
48 KvStoreObserver *observer = nullptr;
50 unsigned int mode = 0; // obsever mode
51 int conflictType = 0;
52 KvStoreNbConflictNotifier notifier = nullptr;
53 int conflictResolvePolicy = LAST_WIN;
54 bool isNeedIntegrityCheck = false;
55 bool isNeedRmCorruptedDb = false;
56 bool isNeedCompressOnSync = false;
[all …]
H A Dkv_store_delegate.h31 struct Option { struct
32 bool createIfNecessary = true;
33 bool localOnly = false;
34 bool isEncryptedDb = false;
35 CipherType cipher = CipherType::DEFAULT;
36 CipherPassword passwd;
37 bool createDirByStoreIdOnly = false;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/relational/
H A Drelational_store_delegate.h35 struct Option { struct
36 StoreObserver *observer = nullptr;
38 bool syncDualTupleMode = false;
39 bool isEncryptedDb = false;
40 CipherType cipher = CipherType::DEFAULT;
41 CipherPassword passwd;
42 uint32_t iterateTimes = 0;
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Drdb_service.h31 struct Option { struct
47 …virtual int32_t Sync(const RdbSyncerParam &param, const Option &option, const PredicatesMemo &pred… argument
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/common/distributeddb/include/
H A Ddistributeddb_nb_test_tools.h38 struct Option { struct
49 DistributedDB::SecurityOption secOption; argument
61Option(bool createIfNecessary, bool isMemoryDb, bool isEncryptedDb, DistributedDB::CipherType ciph… in Option() argument
68Option(bool createIfNecessary, bool isMemoryDb, bool isEncryptedDb, const DistributedDB::CipherTyp… in Option() function
76 Option() in Option() function
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/
H A Dobex_socket_transport.h59 struct Option { struct
66 …ObexClientSocketTransport(const Option &option, ObexTransportObserver &observer, utility::Dispatch… argument
136 struct Option { struct
141 …ObexServerSocketTransport(const Option &option, ObexTransportObserver &observer, utility::Dispatch… argument
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_result_set.h37 struct Option { struct
42 …SQLiteSingleVerResultSet(SQLiteSingleVerNaturalStore *kvDB, const Key &keyPrefix, const Option& op… argument
/ohos5.0/foundation/window/window_manager/interfaces/kits/napi/screenshot/
H A Dnative_screenshot_module.cpp39 struct Option { struct
40 Media::Rect rect;
41 Media::Size size;
42 int rotation = 0;
43 DisplayId displayId = 0;
44 bool isNeedNotify = true;
/ohos5.0/foundation/communication/ipc/interfaces/innerkits/rust/src/parcel/
H A Dexts.rs73 impl<T: Serialize> Serialize for Option<T> { implementation
84 impl<T: Deserialize> Deserialize for Option<T> { implementation
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Drdb_types_util.h30 using Option = DistributedRdb::RdbService::Option; variable
/ohos5.0/drivers/hdf_core/framework/tools/hdi-gen/
H A Dbuild_hdi_files_info.py224 class Option(object): class
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/
H A Dchunk.rs996 ) -> Option<()> { in match_decode_result()