HomeSort by relevance Sort by last modified time
    Searched refs:targetArch (Results 1 - 13 of 13) sorted by null

  /external/syzkaller/tools/syz-env/
env.go 20 targetArch := or(os.Getenv("TARGETARCH"), hostArch)
21 targetVMArch := or(os.Getenv("TARGETVMARCH"), targetArch)
22 target := targets.Get(targetOS, targetArch)
24 fmt.Printf("unknown target %v/%v\n", targetOS, targetArch)
35 {"TARGETARCH", targetArch},
  /external/syzkaller/pkg/build/
build.go 27 func Image(targetOS, targetArch, vmType, kernelDir, outputDir, compiler, userspaceDir,
29 builder, err := getBuilder(targetOS, targetArch, vmType)
42 return builder.build(targetArch, vmType, kernelDir, outputDir, compiler, userspaceDir, cmdlineFile, sysctlFile, config)
45 func Clean(targetOS, targetArch, vmType, kernelDir string) error {
46 builder, err := getBuilder(targetOS, targetArch, vmType)
58 build(targetArch, vmType, kernelDir, outputDir, compiler, userspaceDir,
63 func getBuilder(targetOS, targetArch, vmType string) (builder, error) {
65 case targetOS == "linux" && targetArch == "amd64" && vmType == "gvisor":
67 case targetOS == "linux" && targetArch == "amd64" && (vmType == "qemu" || vmType == "gce"):
69 case targetOS == "fuchsia" && (targetArch == "amd64" || targetArch == "arm64") && vmType == "qemu"
    [all...]
fuchsia.go 17 func (fu fuchsia) build(targetArch, vmType, kernelDir, outputDir, compiler, userspaceDir,
19 sysTarget := targets.Get("fuchsia", targetArch)
21 return fmt.Errorf("unsupported fuchsia arch %v", targetArch)
gvisor.go 17 func (gvisor gvisor) build(targetArch, vmType, kernelDir, outputDir, compiler, userspaceDir,
akaros.go 19 func (ctx akaros) build(targetArch, vmType, kernelDir, outputDir, compiler, userspaceDir,
linux.go 27 func (linux linux) build(targetArch, vmType, kernelDir, outputDir, compiler, userspaceDir,
  /art/tools/checker/file_format/checker/
parser.py 47 def __preprocessLineForStart(prefix, line, targetArch):
49 CHECK-START-y line for matching targetArch y. If no matching
54 if targetArch is not None:
67 if targetArch in archs:
68 return line[:s] + targetArch + line[e + 1:]
73 def __processLine(line, lineNo, prefix, fileName, targetArch):
87 sline = __preprocessLineForStart(prefix + "-START", line, targetArch)
194 def ParseCheckerStream(fileName, prefix, stream, targetArch = None):
196 fnProcessLine = lambda line, lineNo: __processLine(line, lineNo, prefix, fileName, targetArch)
struct.py 29 def testCasesForArch(self, targetArch):
30 return [t for t in self.testCases if t.testArch == targetArch]
test.py 321 for targetArch in archs_list:
322 for testArch in [a for a in archs_list if a != targetArch]:
327 self.assertEqual(len(checkerFile.testCasesForArch(targetArch)), 0)
  /external/grpc-grpc-java/buildscripts/
jenkins-pre.bat 11 echo targetArch=x86_32> gradle.properties
  /art/tools/checker/
checker.py 88 def RunTests(checkPrefix, checkPath, outputFilename, targetArch, debuggableMode):
94 targetArch)
95 MatchFiles(checkerFile, c1File, targetArch, debuggableMode)
  /art/tools/checker/match/
file.py 163 def MatchFiles(checkerFile, c1File, targetArch, debuggableMode):
165 if testCase.testArch not in [None, targetArch]:
  /build/soong/ui/metrics/metrics_proto/
metrics.pb.go 156 TargetArch *MetricsBase_ARCH `protobuf:"varint,6,opt,name=target_arch,json=targetArch,enum=build_metrics.MetricsBase_ARCH,def=0" json:"target_arch,omitempty"`
255 if m != nil && m.TargetArch != nil {
256 return *m.TargetArch

Completed in 589 milliseconds