Lines Matching refs:mountConfig
751 nlohmann::json &mntPoint, SandboxMountConfig &mountConfig)
754 mountConfig.optionsPoint = GetSandboxOptions(appProperty, mntPoint);
755 mountConfig.fsType = GetSandboxFsType(mntPoint);
757 mountConfig.fsType = (mntPoint.find(g_fsType) != mntPoint.end()) ? mntPoint[g_fsType].get<std::string>() : "";
758 mountConfig.optionsPoint = "";
810 SandboxMountConfig mountConfig = {0};
811 GetSandboxMountConfig(appProperty, section, mntPoint, mountConfig);
816 int ret = HandleSpecialAppMount(appProperty, srcPath, sandboxPath, mountConfig.fsType, mountFlags);
818 ret = DoAppSandboxMountOnce(srcPath.c_str(), sandboxPath.c_str(), mountConfig.fsType.c_str(),
819 mountFlags, mountConfig.optionsPoint.c_str(), mountSharedFlag);