Lines Matching refs:args
50 def compile(args): argument
51 …proc = subprocess.Popen(["../libbcc_driver"] + args, stderr=subprocess.PIPE, stdout=subprocess.PIP…
55 def runCmd(args): argument
56 proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
80 def adb(args): argument
81 return runCmd(["adb"] + args)
104 def compileArm(args): argument
106 proc = subprocess.Popen(["adb", "shell", "/system/bin/bcc"] + args, stdout=subprocess.PIPE)
162 def rewritePaths(args): argument
163 return [rewritePath(x) for x in args]
181 def compileCheck(self, args, stdErrResult, stdOutResult="", argument
187 print args
188 out, err = compile(args)
191 out = compileArm(rewritePaths(args))
194 def compileCheckArm(self, args, result): argument
195 self.assertEqual(compileArm(args), result)