Home
last modified time | relevance | path

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

/third_party/node/test/parallel/
Dtest-dgram-send-default-host.js32 for (const msgBuf of common.getArrayBufferViews(toSend[0])) {
33 client.send(msgBuf, 0, msgBuf.byteLength, port);
34 totalBytesSent += msgBuf.byteLength;
36 for (const msgBuf of common.getArrayBufferViews(toSend[1])) {
37 client.send(msgBuf, port);
38 totalBytesSent += msgBuf.byteLength;
40 for (const msgBuf of common.getArrayBufferViews(toSend[2])) {
41 client.send([msgBuf], port);
42 totalBytesSent += msgBuf.byteLength;
Dtest-dgram-udp6-send-default-host.js35 for (const msgBuf of common.getArrayBufferViews(toSend[0])) {
36 client.send(msgBuf, 0, msgBuf.byteLength, port);
37 totalBytesSent += msgBuf.byteLength;
39 for (const msgBuf of common.getArrayBufferViews(toSend[1])) {
40 client.send(msgBuf, port);
41 totalBytesSent += msgBuf.byteLength;
43 for (const msgBuf of common.getArrayBufferViews(toSend[2])) {
44 client.send([msgBuf], port);
45 totalBytesSent += msgBuf.byteLength;
Dtest-child-process-spawnsync-input.js105 const msgBuf = Buffer.from('hello world'.repeat(8)); constant
106 for (const arrayBufferView of common.getArrayBufferViews(msgBuf)) {
115 assert.deepStrictEqual(ret.stdout, msgBuf);
/third_party/lzma/CPP/Windows/
DErrorMsg.cpp32 LPVOID msgBuf; in MyFormatMessage() local
38 NULL, errorCode, 0, (LPTSTR) &msgBuf, 0, NULL) == 0) in MyFormatMessage()
40 message = GetUnicodeString((LPCTSTR)msgBuf); in MyFormatMessage()
47 NULL, errorCode, 0, (LPWSTR) &msgBuf, 0, NULL) == 0) in MyFormatMessage()
49 message = (LPCWSTR)msgBuf; in MyFormatMessage()
51 ::LocalFree(msgBuf); in MyFormatMessage()
/third_party/vk-gl-cts/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()
/third_party/node/test/sequential/
Dtest-child-process-execsync.js77 const msgBuf = Buffer.from(`${msg}\n`); constant
85 assert.strictEqual(ret.length, msgBuf.length);
86 assert.deepStrictEqual(ret, msgBuf);
100 assert.deepStrictEqual(ret, msgBuf);
/third_party/vk-gl-cts/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()
/third_party/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()