Searched refs:protoDir (Results 1 – 3 of 3) sorted by relevance
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/ |
D | CompatibilityProtoResultReporter.java | 90 File protoDir = null; in getProtoResultDirectory() local 96 protoDir = new File(resultDir, PROTO_DIR); in getProtoResultDirectory() 97 protoDir.mkdir(); in getProtoResultDirectory() 101 if (!protoDir.exists()) { in getProtoResultDirectory() 103 "Result Directory was not created: " + protoDir.getAbsolutePath()); in getProtoResultDirectory() 105 CLog.d("Proto Results Directory: %s", protoDir.getAbsolutePath()); in getProtoResultDirectory() 106 return protoDir; in getProtoResultDirectory()
|
D | PreviousResultLoader.java | 120 File protoDir = new File(mResultDir, CompatibilityProtoResultReporter.PROTO_DIR); in init() local 122 if (new File(protoDir, CompatibilityProtoResultReporter.PROTO_FILE_NAME).exists()) { in init() 126 protoDir, in init() 128 } else if (new File(protoDir, CompatibilityProtoResultReporter.PROTO_FILE_NAME + "0") in init() 134 protoDir, in init() 137 new File(protoDir, CompatibilityProtoResultReporter.PROTO_FILE_NAME) in init()
|
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/suite/ |
D | PreviousResultLoaderTest.java | 227 File protoDir = in createFakeBuild() local 231 protoDir.mkdir(); in createFakeBuild() 233 mProtoFile = new File(protoDir, CompatibilityProtoResultReporter.PROTO_FILE_NAME + "0"); in createFakeBuild() 235 mProtoFile = new File(protoDir, CompatibilityProtoResultReporter.PROTO_FILE_NAME); in createFakeBuild()
|