Searched refs:GRD_DBApiInfo (Results 1 - 4 of 4) sorted by relevance
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/src/ |
H A D | grd_api_manager.cpp | 41 void GRD_DBApiInitCommon(GRD_APIInfo &GRD_DBApiInfo) in GRD_DBApiInitCommon() argument 43 GRD_DBApiInfo.DBOpenApi = GRD_DBOpenInner; in GRD_DBApiInitCommon() 44 GRD_DBApiInfo.DBCloseApi = GRD_DBCloseInner; in GRD_DBApiInitCommon() 45 GRD_DBApiInfo.FlushApi = GRD_FlushInner; in GRD_DBApiInitCommon() 46 GRD_DBApiInfo.IndexPreloadApi = GRD_IndexPreloadInner; in GRD_DBApiInitCommon() 47 GRD_DBApiInfo.CreateCollectionApi = GRD_CreateCollectionInner; in GRD_DBApiInitCommon() 48 GRD_DBApiInfo.DropCollectionApi = GRD_DropCollectionInner; in GRD_DBApiInitCommon() 49 GRD_DBApiInfo.InsertDocApi = GRD_InsertDocInner; in GRD_DBApiInitCommon() 50 GRD_DBApiInfo.FindDocApi = GRD_FindDocInner; in GRD_DBApiInitCommon() 51 GRD_DBApiInfo in GRD_DBApiInitCommon() 75 GRD_DBApiInitEnhance(GRD_APIInfo &GRD_DBApiInfo) GRD_DBApiInitEnhance() argument [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/executor/base/ |
H A D | grd_db_api.cpp | 26 static GRD_APIInfo GRD_DBApiInfo; variable 30 if (GRD_DBApiInfo.DBOpenApi == nullptr) { in GRD_DBOpen() 32 GRD_DBApiInfo = GetApiInfoInstance(); in GRD_DBOpen() 34 if (GRD_DBApiInfo.DBOpenApi == nullptr) { in GRD_DBOpen() 38 return GRD_DBApiInfo.DBOpenApi(dbPath, configStr, flags, db); in GRD_DBOpen() 43 if (GRD_DBApiInfo.DBCloseApi == nullptr) { in GRD_DBClose() 44 GRD_DBApiInfo = GetApiInfoInstance(); in GRD_DBClose() 46 if (GRD_DBApiInfo.DBCloseApi == nullptr) { in GRD_DBClose() 50 return GRD_DBApiInfo.DBCloseApi(db, flags); in GRD_DBClose() 55 if (GRD_DBApiInfo in GRD_DBBackup() [all...] |
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | grd_api_manager.cpp | 31 void GRD_DBApiInitEnhance(GRD_APIInfo &GRD_DBApiInfo) in GRD_DBApiInitEnhance() argument 34 GRD_DBApiInfo.DBOpenApi = (DBOpen)dlsym(g_library, "GRD_DBOpen"); in GRD_DBApiInitEnhance() 35 GRD_DBApiInfo.DBCloseApi = (DBClose)dlsym(g_library, "GRD_DBClose"); in GRD_DBApiInitEnhance() 36 GRD_DBApiInfo.DBRepairApi = (DBRepair)dlsym(g_library, "GRD_DBRepair"); in GRD_DBApiInitEnhance() 37 GRD_DBApiInfo.DBSqlPrepare = (DBSqlPrepare)dlsym(g_library, "GRD_SqlPrepare"); in GRD_DBApiInitEnhance() 38 GRD_DBApiInfo.DBSqlReset = (DBSqlReset)dlsym(g_library, "GRD_SqlReset"); in GRD_DBApiInitEnhance() 39 GRD_DBApiInfo.DBSqlFinalize = (DBSqlFinalize)dlsym(g_library, "GRD_SqlFinalize"); in GRD_DBApiInitEnhance() 40 GRD_DBApiInfo.DBSqlBindBlob = (DBSqlBindBlob)dlsym(g_library, "GRD_SqlBindBlob"); in GRD_DBApiInitEnhance() 41 GRD_DBApiInfo.DBSqlBindText = (DBSqlBindText)dlsym(g_library, "GRD_SqlBindText"); in GRD_DBApiInitEnhance() 42 GRD_DBApiInfo in GRD_DBApiInitEnhance() [all...] |
/foundation/distributeddatamgr/preferences/frameworks/native/platform/src/ |
H A D | preferences_db_adapter.cpp | 46 void GRDDBApiInitEnhance(GRD_APIInfo &GRD_DBApiInfo) in GRDDBApiInitEnhance() argument 49 GRD_DBApiInfo.DbOpenApi = (DBOpen)dlsym(PreferenceDbAdapter::gLibrary_, "GRD_DBOpen"); in GRDDBApiInitEnhance() 50 GRD_DBApiInfo.DbCloseApi = (DBClose)dlsym(PreferenceDbAdapter::gLibrary_, "GRD_DBClose"); in GRDDBApiInitEnhance() 51 GRD_DBApiInfo.DbCreateCollectionApi = (DBCreateCollection)dlsym(PreferenceDbAdapter::gLibrary_, in GRDDBApiInitEnhance() 53 GRD_DBApiInfo.DbDropCollectionApi = (DBDropCollection)dlsym(PreferenceDbAdapter::gLibrary_, "GRD_DropCollection"); in GRDDBApiInitEnhance() 54 GRD_DBApiInfo.DbIndexPreloadApi = (DBIndexPreload)dlsym(PreferenceDbAdapter::gLibrary_, "GRD_IndexPreload"); in GRDDBApiInitEnhance() 55 GRD_DBApiInfo.DbKvPutApi = (DBKvPut)dlsym(PreferenceDbAdapter::gLibrary_, "GRD_KVPut"); in GRDDBApiInitEnhance() 56 GRD_DBApiInfo.DbKvGetApi = (DBKvGet)dlsym(PreferenceDbAdapter::gLibrary_, "GRD_KVGet"); in GRDDBApiInitEnhance() 57 GRD_DBApiInfo.DbKvDelApi = (DBKvDel)dlsym(PreferenceDbAdapter::gLibrary_, "GRD_KVDel"); in GRDDBApiInitEnhance() 58 GRD_DBApiInfo in GRDDBApiInitEnhance() [all...] |
Completed in 2 milliseconds