Home
last modified time | relevance | path

Searched refs:msgBuf (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dswr_assert.cpp157 char msgBuf[MAX_MESSAGE_LEN]; in SwrAssert() local
159 sprintf_s(msgBuf, "%s(%d): ASSERT: %s\n", pFileName, lineNum, pExpression); in SwrAssert()
160 msgBuf[MAX_MESSAGE_LEN - 2] = '\n'; in SwrAssert()
161 msgBuf[MAX_MESSAGE_LEN - 1] = 0; in SwrAssert()
162 OutputDebugStringA(msgBuf); in SwrAssert()
164 sprintf_s(msgBuf, "\t%s\n", pFunction); in SwrAssert()
165 msgBuf[MAX_MESSAGE_LEN - 2] = '\n'; in SwrAssert()
166 msgBuf[MAX_MESSAGE_LEN - 1] = 0; in SwrAssert()
167 OutputDebugStringA(msgBuf); in SwrAssert()
175 offset = _vsnprintf_s(msgBuf, sizeof(msgBuf), sizeof(msgBuf), pFmtString, args); in SwrAssert()
[all …]
/external/lzma/CPP/Windows/
DErrorMsg.cpp20 LPVOID msgBuf; in MyFormatMessage() local
26 NULL, errorCode, 0, (LPTSTR) &msgBuf, 0, NULL) == 0) in MyFormatMessage()
28 message = GetUnicodeString((LPCTSTR)msgBuf); in MyFormatMessage()
35 NULL, errorCode, 0, (LPWSTR) &msgBuf, 0, NULL) == 0) in MyFormatMessage()
37 message = (LPCWSTR)msgBuf; in MyFormatMessage()
39 ::LocalFree(msgBuf); in MyFormatMessage()
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/Shared/TPMDevice/src/
DTpmDevice.c746 unsigned int rspLenTPM = sizeof(tpmOp.msgBuf) - sizeof(rspLenTPM); in TpmOperationsLoop()
747 unsigned char* rspTPM = (unsigned char*)&tpmOp.msgBuf[sizeof(rspLenTPM)]; in TpmOperationsLoop()
754 itmPrintAppend(ITMCMDRSP, "0x%02x", tpmOp.msgBuf[n]); in TpmOperationsLoop()
759 dbgPrint("Executing command %s\r\n", TpmDecodeTPM_CC((uint8_t*)&tpmOp.msgBuf[6])); in TpmOperationsLoop()
761 … _plat__RunCommand((unsigned int)tpmOp.cmdSize, (unsigned char*)tpmOp.msgBuf, &rspLenTPM, &rspTPM); in TpmOperationsLoop()
762 *((unsigned int*)tpmOp.msgBuf) = rspLenTPM; in TpmOperationsLoop()
787 while(CDC_Transmit_FS((unsigned char*)&tpmOp.msgBuf, 0) != 0); // Wake up the link in TpmOperationsLoop()
788 …while(CDC_Transmit_FS((unsigned char*)&tpmOp.msgBuf, 14) != 0); // Send the header which is the mi… in TpmOperationsLoop()
792 while(CDC_Transmit_FS((unsigned char*)&tpmOp.msgBuf[n], chunk) != 0); in TpmOperationsLoop()
807 memset((void*)tpmOp.msgBuf, 0x00, sizeof(tpmOp.msgBuf)); in TpmConnectionReset()
[all …]
/external/deqp/framework/delibs/deutil/
DdeProcess.c74 char msgBuf[256]; in dieLastError() local
76 deSprintf(msgBuf, sizeof(msgBuf), "%s, error %d: %s", message, lastErr, strerror(lastErr)); in dieLastError()
77 die(statusPipe, msgBuf); in dieLastError()
202 char msgBuf[256]; in deProcess_setErrorFromErrno() local
204 deSprintf(msgBuf, sizeof(msgBuf), "%s, error %d: %s", message, lastErr, strerror(lastErr)); in deProcess_setErrorFromErrno()
546 LPSTR msgBuf; in deProcess_setErrorFromWin32() local
554 NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&msgBuf, 0, DE_NULL) > 0) in deProcess_setErrorFromWin32()
556 deSprintf(errBuf, sizeof(errBuf), "%s, error %d: %s", msg, error, msgBuf); in deProcess_setErrorFromWin32()
557 LocalFree(msgBuf); in deProcess_setErrorFromWin32()
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/Shared/TPMDevice/include/
DTpmDevice.h61 unsigned char msgBuf[MAX_TPM_MESSAGE_SIZE]; member
/external/deqp/execserver/
DxsWin32TestProcess.cpp54 LPSTR msgBuf; in formatErrMsg() local
61 NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&msgBuf, 0, DE_NULL) > 0) in formatErrMsg()
62 str << msg << ", error " << error << ": " << msgBuf; in formatErrMsg()
/external/icu/icu4c/source/test/intltest/
Ditspoof.cpp649 char msgBuf[100]; in testMixedNumbers() local
650 sprintf(msgBuf, "testNum = %d ", testNum); in testMixedNumbers()
662 TEST_ASSERT_MSG((expectedSet.size() > 1) == mixedNumberFailure, msgBuf); in testMixedNumbers()
664 TEST_ASSERT_MSG(expectedSet == *actualSet, msgBuf); in testMixedNumbers()
/external/dexmaker/dexmaker-mockito-inline-extended/src/main/jni/staticjvmtiagent/
Dagent.cc631 char msgBuf[512]; in throwRuntimeExpection() local
635 vsnprintf(msgBuf, sizeof(msgBuf), fmt, args); in throwRuntimeExpection()
639 env->ThrowNew(exceptionClass, msgBuf); in throwRuntimeExpection()
/external/dexmaker/dexmaker-mockito-inline/src/main/jni/dexmakerjvmtiagent/
Dagent.cc832 char msgBuf[512]; in throwRuntimeExpection() local
836 vsnprintf(msgBuf, sizeof(msgBuf), fmt, args); in throwRuntimeExpection()
840 env->ThrowNew(exceptionClass, msgBuf); in throwRuntimeExpection()
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DNettyServerHandler.java680 ByteBuf msgBuf = ByteBufUtil.writeUtf8(ctx.alloc(), msg); in respondWithHttpError() local
681 encoder().writeData(ctx, streamId, msgBuf, 0, true, ctx.newPromise()); in respondWithHttpError()