/build/soong/cmd/sbox/sbox_proto/ |
D | sbox.pb.go | 104 …CopyBefore []*Copy `protobuf:"bytes,1,rep,name=copy_before,json=copyBefore" json:"copy_before,omit… 112 …CopyAfter []*Copy `protobuf:"bytes,4,rep,name=copy_after,json=copyAfter" json:"copy_after,omitempt… 153 func (x *Command) GetCopyBefore() []*Copy { 174 func (x *Command) GetCopyAfter() []*Copy { 198 type Copy struct { struct 209 func (x *Copy) Reset() { argument 210 *x = Copy{} 218 func (x *Copy) String() string { argument 222 func (*Copy) ProtoMessage() {} argument 224 func (x *Copy) ProtoReflect() protoreflect.Message { argument [all …]
|
D | sbox.proto | 34 repeated Copy copy_before = 1; 45 repeated Copy copy_after = 4; 56 // Copy describes a from-to pair of files to copy. The paths may be relative, the root that they 57 // are relative to is specific to the context the Copy is used in and will be different for 59 message Copy { message
|
/build/blueprint/parser/ |
D | ast.go | 67 func (m *Module) Copy() *Module { func 71 ret.Properties[i] = m.Properties[i].Copy() 121 func (p *Property) Copy() *Property { func 123 ret.Value = p.Value.Copy() 140 Copy() Expression methodSpec 223 func (x *Operator) Copy() Expression { func 225 ret.Args[0] = x.Args[0].Copy() 226 ret.Args[1] = x.Args[1].Copy() 255 func (x *Variable) Copy() Expression { func 279 func (x *Map) Copy() Expression { func [all …]
|
D | modify.go | 120 written, err := io.Copy(out, io.NewSectionReader(in, offset, toWrite)) 136 _, err := io.Copy(out, io.NewSectionReader(in, offset, math.MaxInt64-offset))
|
/build/soong/aconfig/codegen/ |
D | aconfig_declarations_group.go | 91 maps.Copy(modeInfos, provider.ModeInfos) 94 maps.Copy(modeInfos, provider.ModeInfos) 96 maps.Copy(modeInfos, provider.ModeInfos) 98 maps.Copy(modeInfos, provider.ModeInfos)
|
/build/soong/ui/build/ |
D | util.go | 145 return io.Copy(destination, source) 166 _, err = io.Copy(gz, in)
|
D | environment.go | 123 func (e *Environment) Copy() *Environment { func
|
D | staging_snapshot.go | 52 if _, err := io.Copy(h, f); err != nil {
|
D | exec.go | 45 Environment: config.Environment().Copy(),
|
/build/make/tools/docker/ |
D | README.md | 7 # Copy your host gitconfig, or create a stripped down version
|
/build/soong/symbol_inject/ |
D | symbol_inject.go | 103 _, err = io.Copy(w, io.NewSectionReader(r, 0, int64(offset))) 113 _, err = io.Copy(w, io.NewSectionReader(r, pos, 1<<63-1-pos))
|
/build/soong/cmd/sbox/ |
D | sbox.go | 361 func makeOutputDirs(copies []*sbox_proto.Copy, sandboxDir string) error { argument 374 func validateOutputFiles(copies []*sbox_proto.Copy, sandboxDir, outputDir, rawCommand string) error… argument 467 func copyFiles(copies []*sbox_proto.Copy, fromDir, toDir string, exists existsType, write writeType… argument 552 _, err = io.Copy(out, in) 650 func moveFiles(copies []*sbox_proto.Copy, fromDir, toDir string, write writeType) error { argument 681 func clearOutputDirectory(copies []*sbox_proto.Copy, outputDir string, write writeType) error { argument
|
/build/soong/android/ |
D | aconfig_providers.go | 70 maps.Copy(to, from) 108 maps.Copy(mergedModeInfos, aconfig_dep.ModeInfos)
|
D | filegroup.go | 108 maps.Copy(modeInfos, dep.ModeInfos)
|
D | rule_builder.go | 519 command.CopyBefore = append(command.CopyBefore, &sbox_proto.Copy{ 526 command.CopyBefore = append(command.CopyBefore, &sbox_proto.Copy{ 540 command.CopyBefore = append(command.CopyBefore, &sbox_proto.Copy{ 572 command.CopyAfter = append(command.CopyAfter, &sbox_proto.Copy{
|
/build/blueprint/gotestrunner/ |
D | gotestrunner.go | 47 io.Copy(os.Stdout, reader)
|
/build/make/tools/aconfig/aconfig/src/codegen/ |
D | mod.rs | 31 #[derive(Copy, Clone, Debug, PartialEq, Eq, ValueEnum)]
|
/build/soong/cmd/diff_target_files/ |
D | zip_artifact.go | 127 _, err = io.Copy(w, r)
|
/build/soong/cmd/fileslist/ |
D | fileslist.go | 75 if _, err := io.Copy(h, f); err != nil {
|
/build/soong/ui/status/ |
D | kati.go | 133 io.Copy(&buf, pipe)
|
/build/soong/cmd/zipsync/ |
D | zipsync.go | 51 _, err = io.Copy(out, in)
|
/build/soong/third_party/zip/ |
D | android.go | 68 io.Copy(w.cw, io.NewSectionReader(orig.zipr, dataOffset, int64(orig.CompressedSize64)))
|
/build/soong/ui/tracer/ |
D | tracer.go | 152 if _, err := io.Copy(t.w, &t.buf); err != nil {
|
/build/soong/cmd/zip2zip/ |
D | zip2zip.go | 230 _, err = io.Copy(zw, zr)
|
/build/soong/zip/ |
D | zip_test.go | 622 len, err := io.Copy(crc, r) 726 len, err := io.Copy(crc, r)
|