Home
last modified time | relevance | path

Searched refs:Path (Results 1 – 25 of 173) sorted by relevance

1234567

/build/pesto/experiments/prepare_bazel_test_env/
Dbazelenv.py49 soong_workspace: pathlib.Path
50 soong_executable: pathlib.Path
52 def __init__(self, soong_workspace: pathlib.Path): argument
110 stage_path: pathlib.Path
111 workspace_path: pathlib.Path
141 def __init__(self, stage_path: pathlib.Path, workspace_path: pathlib.Path, argument
142 resource_path: pathlib.Path): argument
178 resource_path: pathlib.Path
193 def __init__(self, stage_path: pathlib.Path, workspace_path: pathlib.Path, argument
194 resource_path: pathlib.Path): argument
[all …]
/build/soong/rust/
Dbuilder.go89 outputFile android.Path
96 func TransformSrcToBinary(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, argument
103 func TransformSrctoRlib(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, argument
108 func TransformSrctoDylib(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, argument
113 func TransformSrctoStatic(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, argument
119 func TransformSrctoShared(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, argument
125 func TransformSrctoProcMacro(ctx ModuleContext, mainSrc android.Path, deps PathDeps, argument
133 paths = append(paths, lib.Path)
143 libFlags = append(libFlags, "--extern "+lib.CrateName+"="+lib.Path.String())
146 libFlags = append(libFlags, "--extern "+lib.CrateName+"="+lib.Path.String())
[all …]
/build/soong/cc/
Dprebuilt_test.go185 assertString(t, shared.OutputFile().Path().Base(), "libtest.so")
199 assertString(t, static.OutputFile().Path().Base(), "libf.a")
222 assertString(t, shared.OutputFile().Path().Base(), "libtest.so")
225 assertString(t, static.OutputFile().Path().Base(), "libf.a")
249 assertString(t, static.OutputFile().Path().Base(), "libfoo.a")
252 assertString(t, shared.OutputFile().Path().Base(), "libbar.so")
270 assertString(t, shared.OutputFile().Path().Base(), "libbar.so")
310 var libfooDep android.Path
353 assertString(t, static.OutputFile().Path().Base(), "libf.a")
359 assertString(t, static2.OutputFile().Path().Base(), "libf.a")
[all …]
Dsdk_test.go62 var toFile android.Path
65 toFile = toc.Path()
67 toFile = m.outputFile.Path()
Dstrip.go62 func (stripper *Stripper) strip(actx android.ModuleContext, in android.Path, out android.ModuleOutP…
86 func (stripper *Stripper) StripExecutableOrSharedLib(actx android.ModuleContext, in android.Path,
94 func (stripper *Stripper) StripStaticLib(actx android.ModuleContext, in android.Path, out android.M…
Dgen.go68 func genYacc(ctx android.ModuleContext, rule *android.RuleBuilder, yaccFile android.Path, argument
114 func genAidl(ctx android.ModuleContext, rule *android.RuleBuilder, aidlFile android.Path, aidlFlags… argument
164 func genLex(ctx android.ModuleContext, lexFile android.Path, outFile android.ModuleGenPath, props *… argument
179 func genSysprop(ctx android.ModuleContext, syspropFile android.Path) (android.Path, android.Paths) { argument
203 …WinMsg(ctx android.ModuleContext, srcFile android.Path, flags builderFlags) (android.Path, android… argument
Dccdeps.go41 outputPath android.Path
55 Path []string `json:"path,omitempty"` member
209 dpInfo.Path = append(dpInfo.Path, path.Dir(ctx.BlueprintFile(ccModule)))
211 dpInfo.Path = android.FirstUniqueStrings(dpInfo.Path)
/build/soong/android/
Dpaths.go164 type Path interface { interface
199 RelativeToTop() Path
209 Path
233 func GenPathWithExt(ctx ModuleOutPathContext, subdir string, p Path, ext string) ModuleGenPath { argument
243 func ObjPathWithExt(ctx ModuleOutPathContext, subdir string, p Path, ext string) ModuleObjPath { argument
254 func ResPathWithName(ctx ModuleOutPathContext, p Path, name string) ModuleResPath { argument
265 path Path
269 func OptionalPathForPath(path Path) OptionalPath { argument
283 func (p OptionalPath) Path() Path { func
321 type Paths []Path
[all …]
Ddeapexer.go76 exports map[string]Path
85 func (i DeapexerInfo) PrebuiltExportPath(apexRelativePath string) Path {
98 func NewDeapexerInfo(exports map[string]Path) DeapexerInfo { argument
Dhooks.go123 SrcPath() Path
124 Path() InstallPath methodSpec
138 srcPath Path
145 func (x *installHookContext) SrcPath() Path {
149 func (x *installHookContext) Path() InstallPath { func
157 func (x *hooks) runInstallHooks(ctx ModuleContext, srcPath Path, path InstallPath, symlink bool) { argument
Dnamespace.go54 return s.items[i].Path < s.items[j].Path
125 existingNamespace, exists := r.namespaceAt(namespace.Path)
127 if existingNamespace.Path == namespace.Path {
128 return fmt.Errorf("namespace %v already exists", namespace.Path)
137 r.namespacesByDir.Store(namespace.Path, namespace)
311 foundInNamespaces = append(foundInNamespaces, namespace.Path)
320 importedNames = append(importedNames, ns.Path)
322 …amespace %q which can read these %v namespaces: %q", depender, dependerNs.Path, len(importedNames)…
349 Path string member
364 return &Namespace{Path: path, moduleContainer: blueprint.NewSimpleNameInterface()}
Dmakevars.go63 Phony(names string, deps ...Path) argument
67 DistForGoal(goal string, paths ...Path) argument
72 DistForGoalWithFilename(goal string, path Path, filename string) argument
76 DistForGoals(goals []string, paths ...Path) argument
81 DistForGoalsWithFilename(goals []string, path Path, filename string) argument
472 func (c *makeVarsContext) Phony(name string, deps ...Path) {
476 func (c *makeVarsContext) DistForGoal(goal string, paths ...Path) {
480 func (c *makeVarsContext) DistForGoalWithFilename(goal string, path Path, filename string) {
484 func (c *makeVarsContext) DistForGoals(goals []string, paths ...Path) {
488 func (c *makeVarsContext) DistForGoalsWithFilename(goals []string, path Path, filename string) {
Donceper.go99 func (once *OncePer) OncePath(key OnceKey, value func() Path) Path {
100 return once.Once(key, func() interface{} { return value() }).(Path)
/build/soong/tradefed/
Dautogen.go33 func getTestConfig(ctx android.ModuleContext, prop *string) android.Path {
35 return p.Path()
37 return p.Path()
47 …tring, autoGenConfig *bool, testConfigTemplateProp *string) (path android.Path, autogenPath androi…
141 …, testSuites []string, config []Config, autoGenConfig *bool, testInstallBase string) android.Path {
161 …g, testSuites []string, config []Config, autoGenConfig *bool, outputFileName string) android.Path {
176 …figTemplateProp *string, testSuites []string, configs []Config, autoGenConfig *bool) android.Path {
191 testSuites []string, autoGenConfig *bool, unitTest *bool) android.Path {
214 testConfigTemplateProp *string, testSuites []string, autoGenConfig *bool) android.Path {
230 …nfigTemplateProp *string, testSuites []string, config []Config, autoGenConfig *bool) android.Path {
[all …]
/build/soong/finder/fs/
Dfs.go265 Path: path,
276 Path: path,
284 Path: path,
307 Path: fileName,
314 Path: fileName,
321 Path: fileName,
343 Path: name,
488 Path: path,
545 Path: path,
579 Path: sourcePath,
[all …]
/build/soong/java/
Dhiddenapi_modular.go279 …JarBuildPath(ctx android.ModuleContext, module android.Module, kind android.SdkKind) android.Path {
280 var dexJar android.Path
410 commandMutator func(command *android.RuleBuilderCommand, path android.Path)
424 commandMutator: func(command *android.RuleBuilderCommand, path android.Path) {
436 commandMutator: func(command *android.RuleBuilderCommand, path android.Path) {
447 commandMutator: func(command *android.RuleBuilderCommand, path android.Path) {
457 commandMutator: func(command *android.RuleBuilderCommand, path android.Path) {
467 commandMutator: func(command *android.RuleBuilderCommand, path android.Path) {
477 commandMutator: func(command *android.RuleBuilderCommand, path android.Path) {
487 commandMutator: func(command *android.RuleBuilderCommand, path android.Path) {
[all …]
Ddevice_host_converter.go39 combinedHeaderJar android.Path
40 combinedImplementationJar android.Path
153 func (d *DeviceHostConverter) DexJarBuildPath() android.Path {
157 func (d *DeviceHostConverter) DexJarInstallPath() android.Path {
169 func (d *DeviceHostConverter) JacocoReportClassesFile() android.Path {
179 func(w io.Writer, outputFile android.Path) {
Dandroid_resources.go46 func androidResourceGlob(ctx android.ModuleContext, dir android.Path) android.Paths { argument
52 func androidResourceGlobList(ctx android.ModuleContext, dir android.Path, argument
67 path android.Path
80 dir android.Path
84 func overlayResourceGlob(ctx android.ModuleContext, a *aapt, dir android.Path) (res []globbedResour… argument
Daar.go31 ExportPackage() android.Path
96 aaptSrcJar android.Path
97 exportPackage android.Path
98 manifestPath android.Path
100 proguardOptionsFile android.Path
102 rTxt android.Path
103 extraAaptPackagesFile android.Path
104 mergedManifestFile android.Path
124 path android.Path
139 func (a *aapt) ExportPackage() android.Path {
[all …]
Dhiddenapi.go40 bootDexJarPath android.Path
52 func (h *hiddenAPI) bootDexJar() android.Path {
71 bootDexJar() android.Path
82 func (h *hiddenAPI) initHiddenAPI(ctx android.ModuleContext, dexJar, classesJar android.Path, uncom…
169 …duleContext, desc string, classesJars android.Paths, stubFlagsCSV android.Path, outputPath android… argument
193 …duleContext, desc string, classesJars android.Paths, stubFlagsCSV android.Path, metadataCSV androi… argument
249 func hiddenAPIEncodeDex(ctx android.ModuleContext, dexInput, flagsCSV android.Path, uncompressDex b… argument
Dandroid_manifest.go46 func manifestFixer(ctx android.ModuleContext, manifest android.Path, sdkContext android.SdkContext, argument
48 useEmbeddedDex, hasNoCode bool, loggingParent string) android.Path {
128 func manifestMerger(ctx android.ModuleContext, manifest android.Path, staticLibManifests android.Pa… argument
129 isLibrary bool) android.Path {
/build/soong/apex/
Ddeapexer.go75 inputApex android.Path
95 p.inputApex = android.OptionalPathForModuleSrc(ctx, p.selectedApexProperties.Selected_apex).Path()
100 exports := make(map[string]android.Path)
/build/soong/dexpreopt/
Dconfig.go105 Profman android.Path
106 Dex2oat android.Path
107 Aapt android.Path
108 SoongZip android.Path
109 Zip2zip android.Path
110 ManifestCheck android.Path
111 ConstructContext android.Path
118 DexPath android.Path
129 EnforceUsesLibrariesStatusFile android.Path // a file with verify_uses_libraries errors (if any)
161 func constructPath(ctx android.PathContext, path string) android.Path {
[all …]
/build/soong/ui/build/
Dutil.go83 dir == pathErr.Path || seenErr[pathErr.Path] {
87 seenErr[pathErr.Path] = true
88 err = os.Chmod(filepath.Dir(pathErr.Path), 0700)
Dsandbox_darwin.go55 c.Args[0] = c.Path
56 c.Path = sandboxExecPath

1234567