Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dswr_assert.cpp154 char msgBuf[MAX_MESSAGE_LEN]; in SwrAssert() local
156 sprintf_s(msgBuf, "%s(%d): ASSERT: %s\n", pFileName, lineNum, pExpression); in SwrAssert()
157 msgBuf[MAX_MESSAGE_LEN - 2] = '\n'; in SwrAssert()
158 msgBuf[MAX_MESSAGE_LEN - 1] = 0; in SwrAssert()
159 OutputDebugStringA(msgBuf); in SwrAssert()
161 sprintf_s(msgBuf, "\t%s\n", pFunction); in SwrAssert()
162 msgBuf[MAX_MESSAGE_LEN - 2] = '\n'; in SwrAssert()
163 msgBuf[MAX_MESSAGE_LEN - 1] = 0; in SwrAssert()
164 OutputDebugStringA(msgBuf); in SwrAssert()
173 msgBuf, 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/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/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/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/icu/icu4c/source/test/intltest/
Ditspoof.cpp626 char msgBuf[100]; in testMixedNumbers() local
627 sprintf(msgBuf, "testNum = %d ", testNum); in testMixedNumbers()
639 TEST_ASSERT_MSG((expectedSet.size() > 1) == mixedNumberFailure, msgBuf); in testMixedNumbers()
641 TEST_ASSERT_MSG(expectedSet == *actualSet, msgBuf); in testMixedNumbers()
/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()