Lines Matching refs:rootPath
1819 const char rootPath[] = "/data/app/el2/";
1821 size_t allPathSize = strlen(rootPath) + strlen(basePath) + 1 + USER_ID_SIZE + bundleNameLen;
1824 int len = sprintf_s(path, allPathSize, "%s%u%s%s", rootPath, uid, basePath, bundleName);
1838 static void MountDir(const AppSpawningCtx *property, const char *rootPath, const char *srcPath, const char *targetPath)
1847 size_t allPathSize = strlen(rootPath) + strlen(targetPath) + strlen(bundleName) + 2;
1851 int len = sprintf_s(path, allPathSize, "%s%u/%s%s", rootPath, info->uid / userIdBase, bundleName, targetPath);
1892 const char rootPath[] = "/mnt/sandbox/";
1902 MountDir(property, rootPath, sourcePath.c_str(), el1Path);
1911 MountDir(property, rootPath, nullptr, MOUNT_SHARED_MAP[i].sandboxPath);
1916 MountDir(property, rootPath, nullptr, MOUNT_SHARED_MAP[i].sandboxPath);
1921 std::string lockSbxPathStamp = rootPath + to_string(info->uid / UID_BASE) + "/";