Home
last modified time | relevance | path

Searched refs:packageName (Results 1 - 25 of 218) sorted by relevance

123456789

/foundation/multimedia/media_foundation/src/plugin/
H A Dplugin_list.cpp114 dataSourceStreamPlugin.packageName = "DataStreamSource"; in AddDataSourceStreamPlugins()
125 fileFdSourcePlugin.packageName = "FileFdSource"; in AddFileFdSourcePlugins()
136 fileSourcePlugin.packageName = "FileSource"; in AddFileSourcePlugins()
147 httpSourcePlugin.packageName = "HttpSource"; in AddHttpSourcePlugins()
155 httpsSourcePlugin.packageName = "HttpSource"; in AddHttpSourcePlugins()
166 aacDemuxerPlugin.packageName = "FFmpegDemuxer"; in AddAacDemuxerPlugin()
177 amrDemuxerPlugin.packageName = "FFmpegDemuxer"; in AddAmrDemuxerPlugin()
188 amrnbDemuxerPlugin.packageName = "FFmpegDemuxer"; in AddAmrnbDemuxerPlugin()
199 amrwbDemuxerPlugin.packageName = "FFmpegDemuxer"; in AddAmrwbDemuxerPlugin()
210 apeDemuxerPlugin.packageName in AddApeDemuxerPlugin()
[all...]
H A Dplugin_package.cpp28 bool PluginPackage::LoadPluginPackage(std::string packageName) in LoadPluginPackage() argument
30 packageName_ = packageName; in LoadPluginPackage()
34 std::string libPath = HST_PLUGIN_PATH + fileSeparator + soPrefix + packageName + soSuffix; in LoadPluginPackage()
41 std::string registerFuncName = "register_" + packageName; in LoadPluginPackage()
42 std::string unregisterFuncName = "unregister_" + packageName; in LoadPluginPackage()
/foundation/communication/dsoftbus/tests/core/bus_center/lnn/disc_mgr/
H A Ddisc_manager_mock.cpp39 int32_t DiscPublishService(const char *packageName, const PublishInfo *info) in DiscPublishService() argument
41 return GetDiscManagerInterface()->DiscPublishService(packageName, info); in DiscPublishService()
47 int32_t DiscUnPublishService(const char *packageName, int32_t publishId) in DiscUnPublishService() argument
49 return GetDiscManagerInterface()->DiscUnPublishService(packageName, publishId); in DiscUnPublishService()
55 int32_t DiscStartDiscovery(const char *packageName, const SubscribeInfo *info, const IServerDiscInnerCallback *cb) in DiscStartDiscovery() argument
57 return GetDiscManagerInterface()->DiscStartDiscovery(packageName, info, cb); in DiscStartDiscovery()
67 int32_t DiscStopDiscovery(const char *packageName, int32_t subscribeId) in DiscStopDiscovery() argument
69 return GetDiscManagerInterface()->DiscStopDiscovery(packageName, subscribeId); in DiscStopDiscovery()
H A Ddisc_manager_mock.h29 virtual int32_t DiscPublishService(const char *packageName, const PublishInfo *info) = 0;
31 virtual int32_t DiscUnPublishService(const char *packageName, int32_t publishId) = 0;
33 virtual int32_t DiscStartDiscovery(const char *packageName, const SubscribeInfo *info,
37 virtual int32_t DiscStopDiscovery(const char *packageName, int32_t subscribeId) = 0;
/foundation/communication/dsoftbus/core/discovery/manager/src/
H A Ddisc_manager.c72 char packageName[PKG_NAME_SIZE_MAX]; member
95 #define DFX_RECORD_DISC_CALL_START(infoNode, packageName, interfaceType) \
99 BuildDiscCallEvent(&extra, infoNode, packageName, interfaceType); \
192 static void DfxRecordStopDiscoveryDevice(const char *packageName, DiscInfo *infoNode) in DfxRecordStopDiscoveryDevice() argument
196 SoftbusRecordBleDiscDetails((char *)packageName, totalTime, statistics->repTimes, statistics->devNum, in DfxRecordStopDiscoveryDevice()
209 static void BuildDiscCallEvent(DiscEventExtra *extra, const DiscInfo *info, const char *packageName, in BuildDiscCallEvent() argument
218 if (IsValidString(packageName, PKG_NAME_SIZE_MAX - 1)) { in BuildDiscCallEvent()
219 extra->callerPkg = packageName; in BuildDiscCallEvent()
248 const DiscInfo *infoNode, const char *packageName, const InterfaceFuncType type, int32_t reason) in DfxCallInterfaceByMedium()
253 BuildDiscCallEvent(&extra, infoNode, packageName, typ in DfxCallInterfaceByMedium()
247 DfxCallInterfaceByMedium( const DiscInfo *infoNode, const char *packageName, const InterfaceFuncType type, int32_t reason) DfxCallInterfaceByMedium() argument
258 CallInterfaceByMedium(const DiscInfo *info, const char *packageName, const InterfaceFuncType type) CallInterfaceByMedium() argument
493 CreateDiscItem(SoftBusList *serviceList, const char *packageName, const InnerCallback *cb, const ServiceType type) CreateDiscItem() argument
625 AddDiscInfoToList(SoftBusList *serviceList, const char *packageName, const InnerCallback *cb, DiscInfo *info, ServiceType type) AddDiscInfoToList() argument
677 AddDiscInfoToPublishList(const char *packageName, const InnerCallback *cb, DiscInfo *info, ServiceType type) AddDiscInfoToPublishList() argument
683 AddDiscInfoToDiscoveryList(const char *packageName, const InnerCallback *cb, DiscInfo *info, ServiceType type) AddDiscInfoToDiscoveryList() argument
689 RemoveInfoFromList(SoftBusList *serviceList, const char *packageName, const int32_t id, const ServiceType type) RemoveInfoFromList() argument
742 RemoveInfoFromPublishList(const char *packageName, const int32_t id, const ServiceType type) RemoveInfoFromPublishList() argument
747 RemoveInfoFromDiscoveryList(const char *packageName, const int32_t id, const ServiceType type) RemoveInfoFromDiscoveryList() argument
752 InnerPublishService(const char *packageName, DiscInfo *info, const ServiceType type) InnerPublishService() argument
777 InnerUnPublishService(const char *packageName, int32_t publishId, const ServiceType type) InnerUnPublishService() argument
803 InnerStartDiscovery(const char *packageName, DiscInfo *info, const IServerDiscInnerCallback *cb, const ServiceType type) InnerStartDiscovery() argument
837 InnerStopDiscovery(const char *packageName, int32_t subscribeId, const ServiceType type) InnerStopDiscovery() argument
870 InnerSetDiscoveryCallback(const char *packageName, const DiscInnerCallback *cb) InnerSetDiscoveryCallback() argument
1018 DiscPublishService(const char *packageName, const PublishInfo *info) DiscPublishService() argument
1040 DiscUnPublishService(const char *packageName, int32_t publishId) DiscUnPublishService() argument
1050 DiscStartDiscovery(const char *packageName, const SubscribeInfo *info, const IServerDiscInnerCallback *cb) DiscStartDiscovery() argument
1073 DiscStopDiscovery(const char *packageName, int32_t subscribeId) DiscStopDiscovery() argument
[all...]
/foundation/arkui/ace_engine_lite/frameworks/src/core/context/test/unittest/common/
H A Djsfwk_tdd_test.cpp132 constexpr char packageName[] = "test"; in ACELiteFrameworkInitialization003() local
133 g_targetJSAbility->Launch("user/data/test/", packageName, 0); in ACELiteFrameworkInitialization003()
149 if (strcmp(g_targetJSAbility->GetPackageName(), packageName)) { in ACELiteFrameworkInitialization003()
152 EXPECT_TRUE(!strcmp(g_targetJSAbility->GetPackageName(), packageName)); in ACELiteFrameworkInitialization003()
203 constexpr char packageName[] = "com.example.test"; in ACELiteFrameworkInitialization011() local
204 g_targetJSAbility->Launch("user/data/test/", packageName, 0); in ACELiteFrameworkInitialization011()
214 if (strcmp(g_targetJSAbility->GetPackageName(), packageName)) { in ACELiteFrameworkInitialization011()
217 EXPECT_TRUE(!strcmp(g_targetJSAbility->GetPackageName(), packageName)); in ACELiteFrameworkInitialization011()
231 constexpr char packageName[] = "com.example.test"; in ACELiteFrameworkInitialization012() local
232 g_targetJSAbility->Launch("user/data/test/", packageName, in ACELiteFrameworkInitialization012()
[all...]
/foundation/communication/wifi/wifi/base/utils/
H A Dwifi_app_parser.cpp40 constexpr auto XML_TAG_SECTION_KEY_PACKAGE_NAME = "packageName";
89 [bundleName](const LowLatencyAppInfo &app) { return app.packageName == bundleName; }); in IsLowLatencyApp()
95 [bundleName](const WhiteListAppInfo &app) { return app.packageName == bundleName; }); in IsWhiteListApp()
101 [bundleName](const BlackListAppInfo &app) { return app.packageName == bundleName; }); in IsBlackListApp()
107 [bundleName](const MultiLinkAppInfo &app) { return app.packageName == bundleName; });
113 [bundleName](const ChariotAppInfo &app) { return app.packageName == bundleName; });
120 [bundleName](const HighTempLimitSpeedAppInfo &app) { return app.packageName == bundleName; });
123 [bundleName](const HighTempLimitSpeedAppInfo &app) { return app.packageName == bundleName; });
212 appInfo.packageName = gameName;
221 std::string packageName
[all...]
/foundation/communication/dsoftbus/core/discovery/manager/include/
H A Ddisc_manager.h68 int32_t (*OnServerDeviceFound)(const char *packageName, const DeviceInfo *device,
75 * @param[in] packageName Indicates the pointer to the package name,
91 int32_t DiscPublishService(const char *packageName, const PublishInfo *info);
96 * @param[in] packageName Indicates the pointer to the package name,
106 int32_t DiscUnPublishService(const char *packageName, int32_t publishId);
111 * @param[in] packageName Indicates the pointer to the package name,
130 int32_t DiscStartDiscovery(const char *packageName, const SubscribeInfo *info, const IServerDiscInnerCallback *cb);
135 * @param[in] packageName Indicates the pointer to the package name,
145 int32_t DiscStopDiscovery(const char *packageName, int32_t subscribeId);
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb_device_manager_adapter/src/
H A Drdb_device_manager_adapter.cpp25 RdbDeviceManagerAdaptor::RdbDeviceManagerAdaptor(const std::string &packageName) in RdbDeviceManagerAdaptor() argument
26 :packageName_(packageName) in RdbDeviceManagerAdaptor()
36 RdbDeviceManagerAdaptor& RdbDeviceManagerAdaptor::GetInstance(const std::string &packageName) in GetInstance() argument
38 static RdbDeviceManagerAdaptor instance(packageName); in GetInstance()
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Devent_report.cpp125 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); in SendEvent() local
126 if (packageName.size() > MAX_PACKAGE_NAME_LENGTH) { in SendEvent()
127 StrTrim(packageName); in SendEvent()
132 EVENT_KEY_PACKAGE_NAME, packageName); in SendEvent()
260 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); in SendVsyncException() local
261 StrTrim(packageName); in SendVsyncException()
265 EVENT_KEY_PACKAGE_NAME, packageName, in SendVsyncException()
281 const std::string& packageName, const std::string& reason, const std::string& summary) in JsErrReport()
285 EVENT_KEY_PACKAGE_NAME, packageName, in JsErrReport()
290 void EventReport::ANRRawReport(RawEventType type, int32_t uid, const std::string& packageName, in ANRRawReport() argument
280 JsErrReport( const std::string& packageName, const std::string& reason, const std::string& summary) JsErrReport() argument
315 ANRShowDialog(int32_t uid, const std::string& packageName, const std::string& processName, const std::string& msg) ANRShowDialog() argument
337 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); JankFrameReport() local
354 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); SendEventInner() local
564 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); ReportDoubleClickTitle() local
574 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); ReportClickTitleMaximizeMenu() local
585 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); ReportPageNodeOverflow() local
597 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); ReportPageDepthOverflow() local
609 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); ReportFunctionTimeout() local
622 auto packageName = AceApplicationInfo::GetInstance().GetPackageName(); ReportHoverStatusChange() local
[all...]
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/
H A Dimage_dfx.cpp79 std::string packageName = ImageUtils::GetCurrentProcessName(); in ReportDecodeFault()
83 "PNAMEID", packageName, in ReportDecodeFault()
85 "APPLICATION_NAME", packageName, in ReportDecodeFault()
133 std::string packageName = ImageUtils::GetCurrentProcessName(); in ReportDecodeInfo()
135 { .name = "PNAMEID", .t = HISYSEVENT_STRING, .v = { .s = const_cast<char*>(packageName.c_str()) } }, in ReportDecodeInfo()
139 .v = { .s = const_cast<char*>(packageName.c_str()) } }, in ReportDecodeInfo()
176 std::string packageName = ImageUtils::GetCurrentProcessName(); in ReportCreateImageSourceFault() local
180 "PNAMEID", packageName, in ReportCreateImageSourceFault()
192 std::string packageName = ImageUtils::GetCurrentProcessName(); in ReportEncodeFault() local
196 "PNAMEID", packageName, in ReportEncodeFault()
[all...]
/foundation/multimedia/media_library/frameworks/utils/src/
H A Dpermission_utils.cpp110 void PermissionUtils::GetPackageNameFromCache(int uid, const string &bundleName, string &packageName) in GetPackageNameFromCache() argument
114 if (iter != bundleInfoMap_.end() && !iter->second->second.packageName.empty()) { in GetPackageNameFromCache()
116 packageName = iter->second->second.packageName; in GetPackageNameFromCache()
127 packageName = ""; in GetPackageNameFromCache()
133 packageName = ""; in GetPackageNameFromCache()
137 packageName = bundleMgr->GetAbilityLabel(bundleName, abilityName); in GetPackageNameFromCache()
139 UpdatePackageNameInCache(uid, packageName); in GetPackageNameFromCache()
193 void PermissionUtils::UpdatePackageNameInCache(int uid, const string &packageName) in UpdatePackageNameInCache() argument
198 bundleInfo.packageName in UpdatePackageNameInCache()
230 GetPackageName(const int uid, std::string &packageName) GetPackageName() argument
462 string packageName = ""; GetPackageNameByBundleName() local
[all...]
/foundation/ability/form_fwk/interfaces/inner_api/src/
H A Dform_ecological_rule_param.cpp43 info->packageName = in.ReadString(); in Unmarshalling()
44 HILOG_DEBUG("read packageName result:%{public}s", info->packageName.c_str()); in Unmarshalling()
75 if (!parcel.WriteString(packageName)) { in Marshalling()
76 HILOG_ERROR("write packageName failed"); in Marshalling()
104 std::string str = "CallerInfo{packageName:" + packageName + ",uid:" + std::to_string(uid) + in ToString()
/foundation/multimedia/image_framework/plugins/manager/src/common/
H A Dplatform_adp.cpp40 HMODULE PlatformAdp::AdpLoadLibrary(const string &packageName) in AdpLoadLibrary() argument
42 return LoadLibrary(packageName.c_str()); in AdpLoadLibrary()
55 void *PlatformAdp::LoadLibrary(const std::string &packageName) in LoadLibrary() argument
57 return dlopen(packageName.c_str(), RTLD_LAZY); in LoadLibrary()
/foundation/multimedia/image_framework/plugins/manager/src/framework/
H A Dplugin_metadata.h24 "packageName":"LibJpegPlugin",
68 "packageName":"LibPngPlugin",
95 "packageName":"LibRawPlugin",
122 "packageName":"LibSvgPlugin",
149 "packageName":"LibWebpPlugin",
193 "packageName":"LibBmpPlugin",
220 "packageName":"LibGifPlugin",
247 "packageName":"LibExtPlugin",
293 "packageName":"LibImageFormatAgent",
/foundation/distributedhardware/device_manager/test/benchmarktest/device_manager_fa_test/
H A Ddevice_manager_fa_test.cpp107 const string packageName = "com.ohos.devicemanager"; member in __anon8432::DeviceManagerFaTest
256 string packageName = "com.devicemanager"; in BENCHMARK_F() local
259 DeviceManager::GetInstance().InitDeviceManager(packageName, callback_); in BENCHMARK_F()
271 int32_t ret = DeviceManager::GetInstance().StartDeviceDiscovery(packageName, subInfo, str, callback); in BENCHMARK_F()
277 DeviceManager::GetInstance().StopDeviceDiscovery(packageName, subscribeId); in BENCHMARK_F()
286 string packageName = "com.devicemanager"; in BENCHMARK_F() local
289 DeviceManager::GetInstance().InitDeviceManager(packageName, callback_); in BENCHMARK_F()
307 ret =DeviceManager::GetInstance().StopDeviceDiscovery(packageName, subscribeId); in BENCHMARK_F()
320 int32_t ret = DeviceManager::GetInstance().RegisterDeviceManagerFaCallback(packageName, callback); in BENCHMARK_F()
334 int32_t ret = DeviceManager::GetInstance().RegisterDeviceManagerFaCallback(packageName, callbac in BENCHMARK_F()
[all...]
/foundation/communication/dsoftbus/sdk/bus_center/service/src/
H A Dclient_bus_center.c42 LNN_LOGE(LNN_INIT, "check packageName failed"); in CommonInit()
147 static void DfxRecordSdkJoinLnnEnd(const char *packageName, int32_t reason) in DfxRecordSdkJoinLnnEnd() argument
159 if (packageName != NULL && IsValidString(packageName, PKG_NAME_SIZE_MAX - 1) && strncpy_s(pkgName, in DfxRecordSdkJoinLnnEnd()
160 PKG_NAME_SIZE_MAX, packageName, PKG_NAME_SIZE_MAX - 1) == EOK) { in DfxRecordSdkJoinLnnEnd()
166 static void DfxRecordSdkLeaveLnnEnd(const char *packageName, int32_t reason) in DfxRecordSdkLeaveLnnEnd() argument
178 if (packageName != NULL && IsValidString(packageName, PKG_NAME_SIZE_MAX - 1) && strncpy_s(pkgName, in DfxRecordSdkLeaveLnnEnd()
179 PKG_NAME_SIZE_MAX, packageName, PKG_NAME_SIZE_MAX - 1) == EOK) { in DfxRecordSdkLeaveLnnEnd()
185 static void DfxRecordSdkShiftGearStart(const char *packageName, cons argument
201 DfxRecordLnnDiscServerEnd(int32_t serverType, const char *packageName, int32_t reason) DfxRecordLnnDiscServerEnd() argument
221 DfxRecordRegNodeStart(const char *packageName) DfxRecordRegNodeStart() argument
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_exception_handler.cpp118 auto moduleDir = appCodePath + ServiceConstants::PATH_SEPARATOR + mark.packageName; in InnerHandleInvalidBundle()
119 auto moduleDataDir = info.GetBundleName() + ServiceConstants::HAPS + mark.packageName; in InnerHandleInvalidBundle()
129 info.SetInstallMark(mark.bundleName, mark.packageName, InstallExceptionStatus::INSTALL_FINISH); in InnerHandleInvalidBundle()
134 info.SetInstallMark(mark.bundleName, mark.packageName, InstallExceptionStatus::INSTALL_FINISH); in InnerHandleInvalidBundle()
141 if (info.IsOnlyModule(mark.packageName) && in InnerHandleInvalidBundle()
148 info.RemoveModuleInfo(mark.packageName); in InnerHandleInvalidBundle()
149 info.SetInstallMark(mark.bundleName, mark.packageName, InstallExceptionStatus::INSTALL_FINISH); in InnerHandleInvalidBundle()
157 info.SetInstallMark(mark.bundleName, mark.packageName, InstallExceptionStatus::INSTALL_FINISH); in InnerHandleInvalidBundle()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_common_utils_test/src/
H A Dmedialibrary_permission_utils_test.cpp93 string packageName = ""; in HWTEST_F() local
94 PermissionUtils::GetPackageNameFromCache(uid, "", packageName); in HWTEST_F()
95 EXPECT_EQ(packageName, ""); in HWTEST_F()
103 string packageName = "demo"; in HWTEST_F() local
104 BundleInfo bundleInfo {bundleName, packageName, ""}; in HWTEST_F()
109 EXPECT_EQ(packageNameActual, packageName); in HWTEST_F()
/foundation/ability/idl_tool/idl_tool_2/codegen/HDI/cpp/
H A Dhdi_cpp_code_emitter.cpp85 std::string HDICppCodeEmitter::EmitPackageToNameSpace(const std::string &packageName) const in EmitPackageToNameSpace()
87 if (packageName.empty()) { in EmitPackageToNameSpace()
88 return packageName; in EmitPackageToNameSpace()
92 std::vector<std::string> namespaceVec = EmitCppNameSpaceVec(packageName); in EmitPackageToNameSpace()
165 std::string HDICppCodeEmitter::EmitNamespace(const std::string &packageName) const in EmitNamespace()
167 if (packageName.empty()) { in EmitNamespace()
168 return packageName; in EmitNamespace()
171 size_t index = packageName.rfind('.'); in EmitNamespace()
172 return index != std::string::npos ? StringHelper::SubStr(packageName, 0, index) : packageName; in EmitNamespace()
[all...]
/foundation/window/window_manager/utils/src/
H A Dperform_reporter.cpp181 void WindowInfoReporter::InsertNavigationBarReportInfo(const std::string& bundleName, const std::string& packageName) in InsertNavigationBarReportInfo() argument
183 UpdateReportInfo(windowNavigationBarReportInfos_, bundleName, packageName); in InsertNavigationBarReportInfo()
187 const std::string& bundleName, const std::string& packageName) in UpdateReportInfo()
189 if (bundleName.empty() || packageName.empty()) { in UpdateReportInfo()
196 infos.insert(std::make_pair(packageName, 1)); in UpdateReportInfo()
201 auto countPairIter = iter->second.find(packageName); in UpdateReportInfo()
203 iter->second.insert(std::make_pair(packageName, 1)); in UpdateReportInfo()
206 infoMap[bundleName][packageName]++; in UpdateReportInfo()
228 void WindowInfoReporter::ReportZeroOpacityInfoImmediately(const std::string& bundleName, const std::string& packageName) in ReportZeroOpacityInfoImmediately() argument
234 oss << "{ PROCESS_NAME:" << bundleName.c_str() << ", PACKAGE_NAME:" << "" << packageName in ReportZeroOpacityInfoImmediately()
186 UpdateReportInfo(FullInfoMap& infoMap, const std::string& bundleName, const std::string& packageName) UpdateReportInfo() argument
[all...]
H A Dscreen_fold_data.cpp31 void ScreenFoldData::SetFocusedPkgName(const std::string& packageName) in SetFocusedPkgName() argument
33 focusedPackageName_ = packageName; in SetFocusedPkgName()
/foundation/window/window_manager/utils/test/unittest/
H A Dperform_reporter_test.cpp161 infoMap["bundleName"]["packageName"] = 0; in HWTEST_F()
227 std::string packageName = "packageName"; in HWTEST_F() local
232 windowInfoReporter.InsertNavigationBarReportInfo(bundleName, packageName); in HWTEST_F()
246 std::string packageName; in HWTEST_F() local
247 windowInfoReporter.UpdateReportInfo(infoMap, bundleName, packageName); in HWTEST_F()
263 std::string packageName = "packageName"; in HWTEST_F() local
264 infoMap_1["bundleName"]["packageName"] = 0; in HWTEST_F()
265 windowInfoReporter.UpdateReportInfo(infoMap_1, bundleName, packageName); in HWTEST_F()
328 std::string packageName = "packageName"; HWTEST_F() local
[all...]
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/test/unittest/network/softbus/
H A Dsoftbus_handler_test.cpp120 std::string packageName = "com.example.test"; in HWTEST_F() local
125 int32_t result = handler.CreateSessionServer(packageName, sessionName, role, physicalPath); in HWTEST_F()
131 result = handler.CreateSessionServer(packageName, sessionName, role, physicalPath); in HWTEST_F()
137 result = handler.CreateSessionServer(packageName, sessionName, role, physicalPath); in HWTEST_F()
159 std::string packageName = "com.example.test"; in HWTEST_F() local
167 result = handler.CreateSessionServer(packageName, "", role, physicalPath); in HWTEST_F()
170 result = handler.CreateSessionServer(packageName, sessionName, role, ""); in HWTEST_F()
185 std::string packageName = "com.example.test"; in HWTEST_F() local
191 int32_t result = handler.OpenSession(packageName, sessionName, TEST_NETWORKID, socketId); in HWTEST_F()
196 result = handler.OpenSession(packageName, sessionNam in HWTEST_F()
224 std::string packageName = "com.example.test"; HWTEST_F() local
[all...]
/foundation/arkui/ace_engine/test/mock/core/common/
H A Dmock_ace_application_info.cpp29 bool GetBundleInfo(const std::string& packageName, AceBundleInfo& bundleInfo) override
70 void AceApplicationInfo::SetPackageName(const std::string& packageName) in SetPackageName() argument
72 packageName_ = packageName; in SetPackageName()

Completed in 14 milliseconds

123456789