Home
last modified time | relevance | path

Searched defs:PathContext (Results 1 – 25 of 31) sorted by relevance

12

/aosp_15_r20/build/soong/java/
H A Ddexpreopt_config.go27 func dexpreoptTargets(ctx android.PathContext) []android.Target {
57 func genBootImageConfigRaw(ctx android.PathContext) map[string]*bootImageConfig {
115 func genBootImageConfigs(ctx android.PathContext) map[string]*bootImageConfig {
193 func defaultBootImageConfig(ctx android.PathContext) *bootImageConfig {
197 func mainlineBootImageConfig(ctx android.PathContext) *bootImageConfig {
202 func isProfileProviderApex(ctx android.PathContext, apexName string) bool {
215 func bcpForDexpreopt(ctx android.PathContext, withUpdatable bool) (android.WritablePaths, []string)…
H A Dsdk.go331 func sdkFrameworkAidlPath(ctx android.PathContext) android.OutputPath {
337 func nonUpdatableFrameworkAidlPath(ctx android.PathContext) android.OutputPath {
H A Dhiddenapi_singleton.go100 func hiddenAPISingletonPaths(ctx android.PathContext) hiddenAPISingletonPathsStruct {
213 func tempPathForRestat(ctx android.PathContext, path android.WritablePath) android.WritablePath {
H A Dgen.go116 func genAidlIncludeFlags(ctx android.PathContext, srcFiles android.Paths, excludeDirs android.Paths…
H A Dplatform_compat_config.go48 func platformCompatConfigPath(ctx android.PathContext) android.OutputPath {
/aosp_15_r20/build/soong/dexpreopt/
H A Dconfig.go211 func constructPath(ctx android.PathContext, path string) android.Path {
222 func constructPaths(ctx android.PathContext, paths []string) android.Paths {
230 func constructWritablePath(ctx android.PathContext, path string) android.WritablePath {
239 func ParseGlobalConfig(ctx android.PathContext, data []byte) (*GlobalConfig, error) {
271 func GetGlobalConfig(ctx android.PathContext) *GlobalConfig {
277 func GetGlobalConfigRawData(ctx android.PathContext) []byte {
285 android.PathContext anonMember
293 func getGlobalConfigRaw(ctx android.PathContext) globalConfigAndRaw {
370 func ParseModuleConfig(ctx android.PathContext, data []byte) (*ModuleConfig, error) {
490 func IsDex2oatNeeded(ctx android.PathContext) bool {
[all …]
H A Ddexpreopt_test.go23 func testSystemModuleConfig(ctx android.PathContext, name string) *ModuleConfig {
27 func testSystemProductModuleConfig(ctx android.PathContext, name string) *ModuleConfig {
31 func testProductModuleConfig(ctx android.PathContext, name string) *ModuleConfig {
35 func testModuleConfig(ctx android.PathContext, name, partition string) *ModuleConfig {
44 func testApexModuleConfig(ctx android.PathContext, name, apexName string) *ModuleConfig {
55 func testPlatformSystemServerModuleConfig(ctx android.PathContext, name string) *ModuleConfig {
64 func testSystemExtSystemServerModuleConfig(ctx android.PathContext, name string) *ModuleConfig {
H A Ddexpreopt.go109 func dexpreoptDisabled(ctx android.PathContext, global *GlobalConfig, module *ModuleConfig) bool {
134 func profileCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConfig,
175 func bootProfileCommand(ctx android.PathContext, globalSoong *GlobalSoongConfig, global *GlobalConf…
209 func GetSystemServerDexLocation(ctx android.PathContext, global *GlobalConfig, lib string) string {
581 func SystemServerDexJarHostPath(ctx android.PathContext, jar string) android.OutputPath {
596 func checkSystemServerOrder(ctx android.PathContext, jarIndex int) {
H A Dclass_loader_context.go595 func fromJsonClassLoaderContext(ctx android.PathContext, jClcMap jsonClassLoaderContextMap) ClassLo…
612 func fromJsonClassLoaderContextRec(ctx android.PathContext, jClcs []*jsonClassLoaderContext) []*Cla…
H A Dclass_loader_context_test.go380 func buildPath(ctx android.PathContext, lib string) android.Path {
H A Dtesting.go102 func FixtureModifyGlobalConfig(configModifier func(ctx android.PathContext, dexpreoptConfig *Global…
/aosp_15_r20/build/soong/cc/
H A Dndk_sysroot.go86 func getNdkInstallBase(ctx android.PathContext) android.OutputPath {
91 func getNdkSysrootBase(ctx android.PathContext) android.OutputPath {
98 func getNdkBaseTimestampFile(ctx android.PathContext) android.WritablePath {
104 func getNdkHeadersTimestampFile(ctx android.PathContext) android.WritablePath {
110 func getNdkFullTimestampFile(ctx android.PathContext) android.WritablePath {
116 func getNdkABIHeadersFile(ctx android.PathContext) android.WritablePath {
H A Dndk_abi.go26 func getNdkAbiDumpInstallBase(ctx android.PathContext) android.OutputPath {
30 func getNdkAbiDumpTimestampFile(ctx android.PathContext) android.OutputPath {
68 func getNdkAbiDiffTimestampFile(ctx android.PathContext) android.WritablePath {
H A Dndk_headers.go35 func getCurrentIncludePath(ctx android.PathContext) android.OutputPath {
/aosp_15_r20/build/soong/android/
H A Dpaths.go35 type PathContext interface { interface
215 func reportPathError(ctx PathContext, err error) {
222 func ReportPathErrorf(ctx PathContext, format string, args ...interface{}) {
232 func pathContextName(ctx PathContext, module blueprint.Module) string {
299 ReplaceExtension(ctx PathContext, ext string) OutputPath
483 func PathsForSource(ctx PathContext, paths []string) Paths {
1276 func safePathForSource(ctx PathContext, pathComponents ...string) (SourcePath, error) {
1293 func pathForSource(ctx PathContext, pathComponents ...string) (SourcePath, error) {
1328 func PathForSource(ctx PathContext, pathComponents ...string) SourcePath {
1356 func PathForArbitraryOutput(ctx PathContext, pathComponents ...string) Path {
[all …]
H A Dapi_levels.go314 func ApiLevelFrom(ctx PathContext, raw string) ApiLevel {
336 func ApiLevelFromUser(ctx PathContext, raw string) (ApiLevel, error) {
416 func ApiLevelOrPanic(ctx PathContext, raw string) ApiLevel {
441 func GetApiLevelsJson(ctx PathContext) WritablePath {
H A Dtest_suites.go153 func pathForPackaging(ctx PathContext, pathComponents ...string) OutputPath {
158 func pathForTestCases(ctx PathContext) InstallPath {
H A Dlogtags.go35 func MergedLogtagsPath(ctx PathContext) OutputPath {
H A Dmodule.go2666 func OutputFilesForModule(ctx PathContext, module Module, tag string) Paths {
2677 func OutputFileForModule(ctx PathContext, module Module, tag string) Path {
2717 func outputFilesForModule(ctx PathContext, module Module, tag string) (Paths, error) {
2746 func outputFilesForModuleFromProvider(ctx PathContext, module Module, tag string) (Paths, error) {
H A Dmodule_test.go983 PathContext anonMember
/aosp_15_r20/build/soong/java/config/
H A Dconfig.go272 func JavaCmd(ctx android.PathContext) android.SourcePath {
277 func JavadocCmd(ctx android.PathContext) android.SourcePath {
281 func javaTool(ctx android.PathContext, tool string) android.SourcePath {
294 func javaToolchain(ctx android.PathContext) android.SourcePath {
302 func javaHome(ctx android.PathContext) android.SourcePath {
/aosp_15_r20/build/soong/rust/config/
H A Dglobal.go97 func RustPath(ctx android.PathContext) string {
153 func GetRustVersion(ctx android.PathContext) string {
/aosp_15_r20/build/soong/cc/config/
H A Dglobal.go543 func ClangPath(ctx android.PathContext, file string) android.SourcePath {
555 func clangPath(ctx android.PathContext) android.SourcePath {
H A Ddarwin_host.go107 func MacStripPath(ctx android.PathContext) string {
124 func getMacTools(ctx android.PathContext) *macPlatformTools {
/aosp_15_r20/build/soong/apex/
H A Dbuilder.go994 func (a *apexBundle) getCertificateAndPrivateKey(ctx android.PathContext) (pem, key android.Path) {

12