Searched refs:mSharedErrorLogs (Results 1 – 3 of 3) sorted by relevance
/cts/tests/media/common/src/android/mediav2/common/cts/ |
D | OutputManager.java | 65 private final StringBuilder mSharedErrorLogs; field in OutputManager 85 mSharedErrorLogs = sharedErrorLogs; in OutputManager() 358 return mSharedErrorLogs; in getSharedErrorLogs() 367 mSharedErrorLogs.setLength(0); in reset() 472 return arePtsListsIdentical(mOutPtsList, that.mOutPtsList, mSharedErrorLogs); in equalsPtsList() 498 mSharedErrorLogs.append("Ref and Test outputs are not identical \n"); in equalsByteOutput() 499 mSharedErrorLogs.append(msg); in equalsByteOutput() 504 mSharedErrorLogs.append("ref and test output sizes are not identical \n"); in equalsByteOutput() 505 mSharedErrorLogs.append( in equalsByteOutput() 507 mSharedErrorLogs.append( in equalsByteOutput() [all …]
|
/cts/tests/media/jni/ |
D | NativeCodecTestBase.h | 115 std::shared_ptr<std::string> mSharedErrorLogs; variable 119 : mSharedErrorLogs(log) {} in mSharedErrorLogs() function 146 mSharedErrorLogs->clear(); in reset() 152 std::string getErrorMsg() { return mErrorLogs + *mSharedErrorLogs; } in getErrorMsg() 154 std::shared_ptr<std::string> getSharedErrorLogs() { return mSharedErrorLogs; } in getSharedErrorLogs()
|
D | NativeCodecTestBase.cpp | 304 return arePtsListsIdentical(inPtsArrayCopy, outPtsArrayCopy, mSharedErrorLogs); in isOutPtsListIdenticalToInpPtsList() 306 return arePtsListsIdentical(inPtsArrayCopy, outPtsArray, mSharedErrorLogs); in isOutPtsListIdenticalToInpPtsList() 322 mSharedErrorLogs->append("CRC32 checksums computed for byte buffers received from " in equalsDequeuedOutput() 324 mSharedErrorLogs->append(StringFormat("Ref CRC32 checksum value is %lu \n", crc32value)); in equalsDequeuedOutput() 325 mSharedErrorLogs->append( in equalsDequeuedOutput() 335 mSharedErrorLogs->append(StringFormat("At offset %d, ref buffer val is %x and " in equalsDequeuedOutput() 339 mSharedErrorLogs->append("stopping after 20 mismatches, ...\n"); in equalsDequeuedOutput() 345 mSharedErrorLogs->append("Ref and Test outputs are not identical \n"); in equalsDequeuedOutput() 350 mSharedErrorLogs->append("ref and test output sizes are not identical \n"); in equalsDequeuedOutput() 351 mSharedErrorLogs->append(StringFormat("Ref output buffer size %d \n", memory.size())); in equalsDequeuedOutput() [all …]
|