Home
last modified time | relevance | path

Searched refs:logPath (Results 1 – 12 of 12) sorted by relevance

/external/openscreen/tools/cddl/
Dcddl.py25 logPath = os.path.join(args.gen_dir, args.log)
26 log = open(logPath, "w")
28 log = open(logPath, "a")
31 print("Logging to %s" % logPath)
/external/swiftshader/tests/regres/deqp/
Ddeqp.go312 logPath := "/dev/null" // TODO(bclayton): Try "nul" on windows.
313 if !util.IsFile(logPath) {
314 logPath = filepath.Join(c.TempDir, fmt.Sprintf("%v.log", goroutineIndex))
321 c.PerformTests(exe, env, coverageFile, logPath, testNames, supportsCoverage, results)
327 c.PerformTests(exe, env, coverageFile, logPath, testNames, supportsCoverage, results)
331 func (c *Config) PerformTests(exe string, env []string, coverageFile string, logPath string, testNa…
355 "--deqp-log-filename="+logPath,
394 c.PerformTests(exe, env, coverageFile, logPath, singleTest, supportsCoverage, results)
/external/bazelbuild-rules_go/tests/core/go_test/
Dtest_fail_fast_test.go62 logPath := filepath.FromSlash("bazel-testlogs/fail_fast_test/test.log")
63 logData, err := ioutil.ReadFile(logPath)
/external/deqp/external/openglcts/modules/runner/
DglcAndroidTestActivity.hpp45 …const std::string &waiverPath, const std::string &logPath, glu::ApiType runType, uint32_t runFlags…
82 …GetTestParamThread(tcu::Android::NativeActivity &nativeActivity, const std::string &logPath, glu::…
DglcAndroidTestActivity.cpp75 const std::string &logPath, glu::ApiType runType, uint32_t runFlags) in TestThread() argument
79 , m_app(m_platform, m_archive, waiverPath.c_str(), logPath.c_str(), runType, runFlags) in TestThread()
/external/intel-media-driver/media_driver/linux/ult/ult_app/
Dmemory_leak_detector.cpp67 void MemoryLeakDetectorIpl::Detect(const string &logPath) in Detect() argument
72 ifstream log(logPath); in Detect()
Dmemory_leak_detector.h64 void Detect(const std::string &logPath);
/external/deqp/scripts/verify/
Dverify.py160 logPath = os.path.join(package.basePath, gitLog)
161 log = readFile(logPath)
/external/autotest/frontend/client/src/autotest/tko/
DTestDetailView.java191 private void addLogFileViewer(String logPath, String logName) { in addLogFileViewer() argument
192 LogFileViewer viewer = new LogFileViewer(logPath, logName); in addLogFileViewer()
/external/lzma/CPP/7zip/UI/Common/
DEnumDirItems.cpp1302 const UString logPath = GetLogPath(i); in FillFixedReparse() local
1303 if (logPath.Len() >= fullPath.Len()) in FillFixedReparse()
1305 if (CompareFileNames(logPath, fullPath.RightPtr(logPath.Len())) != 0) in FillFixedReparse()
1308 const UString prefix = fullPath.Left(fullPath.Len() - logPath.Len()); in FillFixedReparse()
/external/google-breakpad/src/client/mac/sender/
Duploader.mm276 NSString *logPath;
292 logPath = [parameters_ objectForKey:logFileKey];
297 if (!logPath) {
301 NSData *entireLogFile = [[NSData alloc] initWithContentsOfFile:logPath];
322 [[logPath lastPathComponent] fileSystemRepresentation]);
/external/deqp/scripts/
Drun_nightly.py150 def parseAsCSV (logPath, config): argument
151 args = [config.getBinaryPath(LOG_TO_CSV_PATH), "--mode=all", "--format=csv", logPath]