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 | 61 File protoDir = null; in getProtoResultDirectory() local 67 protoDir = new File(resultDir, PROTO_DIR); in getProtoResultDirectory() 68 protoDir.mkdir(); in getProtoResultDirectory() 72 if (!protoDir.exists()) { in getProtoResultDirectory() 74 "Result Directory was not created: " + protoDir.getAbsolutePath()); in getProtoResultDirectory() 76 CLog.d("Proto Results Directory: %s", protoDir.getAbsolutePath()); in getProtoResultDirectory() 77 return protoDir; in getProtoResultDirectory()
|
D | PreviousResultLoader.java | 122 File protoDir = new File(mResultDir, CompatibilityProtoResultReporter.PROTO_DIR); in init() local 124 if (new File(protoDir, CompatibilityProtoResultReporter.PROTO_FILE_NAME).exists()) { in init() 128 protoDir, in init() 130 } else if (new File(protoDir, CompatibilityProtoResultReporter.PROTO_FILE_NAME + "0") in init() 136 protoDir, in init() 139 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 | 220 File protoDir = in createFakeBuild() local 224 protoDir.mkdir(); in createFakeBuild() 226 mProtoFile = new File(protoDir, CompatibilityProtoResultReporter.PROTO_FILE_NAME + "0"); in createFakeBuild() 228 mProtoFile = new File(protoDir, CompatibilityProtoResultReporter.PROTO_FILE_NAME); in createFakeBuild()
|