Searched refs:baseInstaller (Results 1 – 8 of 8) sorted by relevance
/build/soong/cc/ |
D | installer.go | 38 func NewBaseInstaller(dir, dir64 string, location installLocation) *baseInstaller { 39 return &baseInstaller{ 46 type baseInstaller struct { struct 58 var _ installer = (*baseInstaller)(nil) 60 func (installer *baseInstaller) installerProps() []interface{} { argument 64 func (installer *baseInstaller) installDir(ctx ModuleContext) android.InstallPath { argument 85 func (installer *baseInstaller) install(ctx ModuleContext, file android.Path) { argument 89 func (installer *baseInstaller) everInstallable() bool { argument 94 func (installer *baseInstaller) inData() bool { argument 98 func (installer *baseInstaller) inSanitizerDir() bool { argument [all …]
|
D | test.go | 321 func NewTestInstaller() *baseInstaller { 447 test.binaryDecorator.baseInstaller.dir = "nativetest" 448 test.binaryDecorator.baseInstaller.dir64 = "nativetest64" 451 test.binaryDecorator.baseInstaller.relative = ctx.ModuleName() 452 } else if String(test.binaryDecorator.baseInstaller.Properties.Relative_install_path) == "" { 459 test.binaryDecorator.baseInstaller.install(ctx, file) 465 binary.baseInstaller = NewTestInstaller() 508 library.baseInstaller = NewTestInstaller() 584 benchmark.binaryDecorator.baseInstaller.dir = filepath.Join("benchmarktest", ctx.ModuleName()) 585 benchmark.binaryDecorator.baseInstaller.dir64 = filepath.Join("benchmarktest64", ctx.ModuleName()) [all …]
|
D | binary.go | 87 *baseInstaller anonMember 205 baseInstaller: NewBaseInstaller("bin", "", InstallInSystem), 479 dir := binary.baseInstaller.installDir(ctx) 504 binary.baseInstaller.subDir = "bootstrap" 506 binary.baseInstaller.install(ctx, file) 510 installedSymlink := ctx.InstallSymlink(binary.baseInstaller.installDir(ctx), symlink, 511 binary.baseInstaller.path) 525 binary.toolPath = android.OptionalPathForPath(binary.baseInstaller.path)
|
D | fuzz.go | 89 func NewFuzzInstaller() *baseInstaller { 254 fuzz.binaryDecorator.baseInstaller.dir = filepath.Join( 256 fuzz.binaryDecorator.baseInstaller.dir64 = filepath.Join( 258 fuzz.binaryDecorator.baseInstaller.install(ctx, file) 329 binary.baseInstaller = NewFuzzInstaller()
|
D | androidmk.go | 285 ctx.subAndroidMk(entries, library.baseInstaller) 329 ctx.subAndroidMk(entries, binary.baseInstaller) 447 func (installer *baseInstaller) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEn…
|
D | library.go | 522 *baseInstaller anonMember 987 library.baseInstaller.location = location 1614 dir := library.baseInstaller.installDir(ctx) 1627 library.baseInstaller.subDir = "vndk-sp" 1629 library.baseInstaller.subDir = "vndk" 1669 library.baseInstaller.subDir = "bootstrap" 1676 library.baseInstaller.install(ctx, file) 1905 baseInstaller: NewBaseInstaller("lib", "lib64", InstallInSystem),
|
D | prebuilt.go | 285 library.baseInstaller = NewTestInstaller()
|
D | snapshot_prebuilt.go | 633 p.baseInstaller.install(ctx, file)
|