Home
last modified time | relevance | path

Searched refs:packagePath (Results 1 – 7 of 7) sorted by relevance

/system/tools/hidl/c2hal/
Dmain.cpp80 auto packagePath = package.substr(0, index); in applyPackageRootPath() local
87 if (isPathPrefix(rootPackage, packagePath)) { in applyPackageRootPath()
89 packagePath = packagePath.substr(rootPackage.size() + 1); in applyPackageRootPath()
90 std::replace(packagePath.begin(), packagePath.end(), '.', '/'); in applyPackageRootPath()
91 packagePath += '/' + packageVersion; in applyPackageRootPath()
97 outputPath += '/' + packagePath + '/'; in applyPackageRootPath()
/system/tools/hidl/
DCoordinator.cpp134 std::string packagePath; in getFilepath() local
142 err = getPackagePath(fqName, false /* relative */, false /* sanitized */, &packagePath); in getFilepath()
145 *path = mOutputPath + packagePath + fileName; in getFilepath()
150 err = getPackagePath(fqName, true /* relative */, false /* sanitized */, &packagePath); in getFilepath()
153 *path = mOutputPath + packageRootPath + packagePath + fileName; in getFilepath()
158 err = getPackagePath(fqName, true /* relative */, true /* sanitized */, &packagePath); in getFilepath()
161 *path = mOutputPath + packageRootPath + packagePath + fileName; in getFilepath()
256 std::string packagePath; in parseOptional() local
258 getPackagePath(fqName, false /* relative */, false /* sanitized */, &packagePath); in parseOptional()
261 const std::string path = makeAbsolute(packagePath + fqName.name() + ".hal"); in parseOptional()
[all …]
Dmain.cpp811 std::string packagePath; in generateExportHeaderForPackage() local
813 false /* sanitized */, &packagePath); in generateExportHeaderForPackage()
818 << "// Location: " << packagePath << "\n\n"; in generateExportHeaderForPackage()
/system/apex/apexd/
Dapexservice.cpp71 BinderStatus activatePackage(const std::string& packagePath) override;
72 BinderStatus deactivatePackage(const std::string& packagePath) override;
170 out.packagePath = package.GetPath(); in submitStagedSession()
262 out.packagePath = package.GetPath(); in getApexInfo()
273 << " Path: " << package.packagePath in toString()
320 BinderStatus ApexService::activatePackage(const std::string& packagePath) { in activatePackage() argument
327 << packagePath; in activatePackage()
329 Status res = ::android::apex::activatePackage(packagePath); in activatePackage()
336 LOG(ERROR) << "Failed to activate " << packagePath << ": " in activatePackage()
342 BinderStatus ApexService::deactivatePackage(const std::string& packagePath) { in deactivatePackage() argument
[all …]
Dapexd_test_utils.h89 Field("packagePath", &ApexInfo::packagePath, Eq(other.packagePath)),
Dapexservice_test.cpp184 " [path=" + p.packagePath + "]"; in GetPackageString()
819 ASSERT_EQ(installer_->test_installed_file, match.packagePath); in TEST_F()
831 ASSERT_EQ(installer_->test_installed_file, active->packagePath); in TEST_F()
841 ASSERT_TRUE(isPathForBuiltinApexes(package.packagePath)); in TEST_F()
1066 ASSERT_EQ(installer.test_file, match.packagePath); in TEST_F()
1208 ASSERT_EQ(installer.test_file, info.packagePath); in TEST_F()
1213 ASSERT_EQ(installer2.test_file, info.packagePath); in TEST_F()
1959 expected.packagePath = "/system/apex/com.android.apex.cts.shim.apex"; in SetUp()
/system/apex/apexd/aidl/android/apex/
DApexInfo.aidl21 @utf8InCpp String packagePath;