Home
last modified time | relevance | path

Searched refs:pTable (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/ui_lite/frameworks/font/
H A Dbase_font.cpp48 LangTextParam *pTable = fontBuilder->GetLangTextDefaultParamTable(); in GetDefaultParamByLangId() local
49 if (pTable == nullptr) { in GetDefaultParamByLangId()
53 *pParam = (pTable + langId); in GetDefaultParamByLangId()
/ohos5.0/base/hiviewdfx/hilog/services/hilogd/
H A Dservice_controller.cpp187 const PidTable& pTable = stats.GetPidTable(); in SendOverallStats() local
206 rsp.procNum = pTable.size(); in SendOverallStats()
304 const PidTable& pTable = stats.GetPidTable(); in SendProcStats() local
305 int msgSize = pTable.size() * sizeof(ProcStatsRsp); in SendProcStats()
320 for (auto &it : pTable) { in SendProcStats()
351 const PidTable& pTable = stats.GetPidTable(); in SendProcLogTypeStats() local
352 for (auto &it : pTable) { in SendProcLogTypeStats()
394 const PidTable& pTable = stats.GetPidTable(); in SendProcTagStats() local
395 for (auto &it : pTable) { in SendProcTagStats()
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/extension/
H A Dcloud_server_impl.cpp229 …auto pTable = std::shared_ptr<OhCloudExtTable>(table, [](auto *table) { OhCloudExtTableFree(table)… in GetTables() local
230 GetTableInfo(pTable, dbTable); in GetTables()
232 status = OhCloudExtTableGetFields(pTable.get(), &fields); in GetTables()
244 void CloudServerImpl::GetTableInfo(std::shared_ptr<OhCloudExtTable> pTable, DBTable &dbTable) in GetTableInfo() argument
248 OhCloudExtTableGetName(pTable.get(), &tbName, reinterpret_cast<unsigned int *>(&tbNameLen)); in GetTableInfo()
255 OhCloudExtTableGetAlias(pTable.get(), &tbAlias, reinterpret_cast<unsigned int *>(&tbAliasLen)); in GetTableInfo()
H A Dcloud_server_impl.h54 void GetTableInfo(std::shared_ptr<OhCloudExtTable> pTable, DBTable &dbTable);
/ohos5.0/foundation/graphic/graphic_2d/frameworks/vulkan_layers/swapchain_layer/
H A Dswapchain_layer.cpp1782 VkLayerInstanceDispatchTable* pTable = layerData->instanceDispatchTable.get(); in GetPhysicalDeviceProcAddr() local
1784 if (pTable->GetPhysicalDeviceProcAddr == nullptr) { in GetPhysicalDeviceProcAddr()
1787 return pTable->GetPhysicalDeviceProcAddr(instance, funcName); in GetPhysicalDeviceProcAddr()
1971 VkLayerDispatchTable* pTable = devData->deviceDispatchTable.get(); in GetDeviceProcAddr() local
1972 if (pTable->GetDeviceProcAddr == nullptr) { in GetDeviceProcAddr()
1975 return pTable->GetDeviceProcAddr(device, funcName); in GetDeviceProcAddr()
2022 VkLayerInstanceDispatchTable* pTable = layerData->instanceDispatchTable.get(); in GetInstanceProcAddr() local
2023 if (pTable == nullptr) { in GetInstanceProcAddr()
2027 if (pTable->GetInstanceProcAddr == nullptr) { in GetInstanceProcAddr()
2031 addr = pTable->GetInstanceProcAddr(instance, funcName); in GetInstanceProcAddr()