| /openbmc/libpldm/tests/ |
| H A D | msgbuf.cpp | 15 TEST(msgbuf, init_bad_minsize) in TEST() argument 25 TEST(msgbuf, init_bad_len) in TEST() argument 34 TEST(msgbuf, init_overflow) in TEST() argument 44 TEST(msgbuf, init_success) in TEST() argument 53 TEST(msgbuf, destroy_none) in TEST() argument 63 TEST(msgbuf, destroy_exact) in TEST() argument 76 TEST(msgbuf, destroy_over) in TEST() argument 90 TEST(msgbuf, destroy_under) in TEST() argument 103 TEST(msgbuf, extract_one_uint8) in TEST() argument 116 TEST(msgbuf, extract_over_uint8) in TEST() argument [all …]
|
| H A D | meson.build | 31 tests = ['instance-id', 'msgbuf', 'responder', 'utils']
|
| /openbmc/webui-vue/src/utilities/ |
| H A D | NBDServer.js | 43 this.msgbuf = null; 81 if (this.msgbuf == null) { 82 this.msgbuf = data; 84 const tmp = new Uint8Array(this.msgbuf.byteLength + data.byteLength); 85 tmp.set(new Uint8Array(this.msgbuf), 0); 86 tmp.set(new Uint8Array(data), this.msgbuf.byteLength); 87 this.msgbuf = tmp.buffer; 96 var consumed = handler(this.msgbuf); 108 if (consumed == this.msgbuf.byteLength) { 109 this.msgbuf = null; [all …]
|
| /openbmc/phosphor-webui/app/server-control/controllers/ |
| H A D | virtual-media-controller.js | 111 this.msgbuf = null; 150 if (this.msgbuf == null) { 151 this.msgbuf = data; 153 var tmp = new Uint8Array(this.msgbuf.byteLength + data.byteLength); 154 tmp.set(new Uint8Array(this.msgbuf), 0); 155 tmp.set(new Uint8Array(data), this.msgbuf.byteLength); 156 this.msgbuf = tmp.buffer; 167 var consumed = handler(this.msgbuf); 180 if (consumed == this.msgbuf.byteLength) { 181 this.msgbuf = null; [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/gsoap/gsoap/ |
| H A D | 0001-Provide-strtod_l-signature-on-non-glibc-linux-musl-s.patch | 51 err = strerror_r(err, soap->msgbuf, sizeof(soap->msgbuf)); /* XSI-compliant */ 53 soap_strcpy(soap->msgbuf, sizeof(soap->msgbuf), "unknown error"); 83 err = strerror_r(err, soap->msgbuf, sizeof(soap->msgbuf)); /* XSI-compliant */ 85 soap_strcpy(soap->msgbuf, sizeof(soap->msgbuf), "unknown error");
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/hplip/hplip/ |
| H A D | 0003-pserror.c-Define-column-to-be-int-explcitly.patch | 21 char msgbuf[MAX_MESSAGE] ; /* buffer in which to put the message */ 22 char *bufptr = msgbuf ; /* message buffer pointer */
|
| /openbmc/openbmc/poky/meta/classes-global/ |
| H A D | package_pkgdata.bbclass | 110 msgbuf = [] 125 retval = setscene_depvalid(datadep, taskdeps, [], d, msgbuf) 129 msgbuf.append("Skipping setscene dependency %s" % datadep) 133 msgbuf.append("Adding dependency on %s" % setscenedeps[datadep][0]) 135 msgbuf.append("Following dependency on %s" % setscenedeps[datadep][0]) 139 #bb.debug(2, "\n".join(msgbuf))
|
| H A D | staging.bbclass | 373 msgbuf = [] 388 retval = setscene_depvalid(datadep, taskdeps, [], d, msgbuf) 390 … msgbuf.append("Skipping setscene dependency %s for installation into the sysroot" % datadep) 396 msgbuf.append("Adding dependency on %s" % setscenedeps[datadep][0]) 398 msgbuf.append("Following dependency on %s" % setscenedeps[datadep][0]) 402 #bb.debug(2, "\n".join(msgbuf))
|
| /openbmc/ipmi-fru-parser/ |
| H A D | frup.hpp | 110 int parse_fru(const void* msgbuf, sd_bus_message* vpdtbl); 112 int parse_fru_area(const uint8_t area, const void* msgbuf, const size_t len,
|
| H A D | frup.cpp | 675 int parse_fru_area(const uint8_t area, const void* msgbuf, const size_t len, in parse_fru_area() argument 696 ASSERT(msgbuf); in parse_fru_area() 710 static_cast<const uint8_t*>(msgbuf) + 2, len, &chassis_type, in parse_fru_area() 733 static_cast<const uint8_t*>(msgbuf) + 2, len, nullptr, in parse_fru_area() 761 static_cast<const uint8_t*>(msgbuf) + 2, len, nullptr, in parse_fru_area()
|
| /openbmc/qemu/ui/ |
| H A D | vdagent.c | 44 uint8_t *msgbuf; member 158 uint8_t *msgbuf = (void *)msg; in vdagent_send_msg() local 179 g_byte_array_append(vd->outbuf, msgbuf + msgoff, chunk.size); in vdagent_send_msg() 772 VDAgentMessage *msg = (void *)vd->msgbuf; in vdagent_chr_recv_chunk() 798 memcpy(vd->xbuf + vd->xoff, vd->msgbuf, vd->msgsize); in vdagent_chr_recv_chunk() 813 g_free(vd->msgbuf); in vdagent_reset_bufs() 814 vd->msgbuf = NULL; in vdagent_reset_bufs() 837 assert(vd->msgbuf == NULL); in vdagent_chr_write() 838 vd->msgbuf = g_malloc0(vd->chunk.size); in vdagent_chr_write() 845 memcpy(vd->msgbuf + vd->msgsize, buf, copy); in vdagent_chr_write() [all …]
|
| /openbmc/qemu/ |
| H A D | qemu-bridge-helper.c | 186 char msgbuf[CMSG_SPACE(sizeof(fd))]; in send_fd() local 188 .msg_control = msgbuf, in send_fd() 189 .msg_controllen = sizeof(msgbuf), in send_fd()
|
| /openbmc/qemu/net/ |
| H A D | tap-win32.c | 498 LPTSTR msgbuf; in tap_win32_write() local 502 &msgbuf, 0, NULL); in tap_win32_write() 503 fprintf(stderr, "Tap-Win32: Error WriteFile %d - %s\n", error, msgbuf); in tap_win32_write() 504 LocalFree(msgbuf); in tap_win32_write()
|
| H A D | tap.c | 480 uint8_t msgbuf[CMSG_SPACE(sizeof(fd))]; in recv_fd() local 482 .msg_control = msgbuf, in recv_fd() 483 .msg_controllen = sizeof(msgbuf), in recv_fd()
|
| /openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-netifaces/ |
| H A D | 0001-netifaces-initialize-msghdr-in-a-portable-way.patch | 28 struct iovec iov = { msgbuf, bufsize };
|
| /openbmc/u-boot/arch/m68k/include/asm/coldfire/ |
| H A D | flexcan.h | 90 void *msgbuf; /* 0x80 Message Buffer 0-15 */ member
|
| /openbmc/libpldm/ |
| H A D | meson.build | 22 # For memmem() in src/msgbuf.h
|
| H A D | CHANGELOG.md | 113 - msgbuf: Correct pldm_msgbuf_extract_effecter_data()'s child function 527 Applying LIBPLDM_CC_NONNULL to the internal msgbuf APIs caused 639 - msgbuf: Require sensor data enum in pldm_msgbuf_extract_sensor_value() 641 - tests: oem: meta: Fix fileio use of msgbuf
|
| H A D | CONTRIBUTING.md | 352 the `msgbuf` APIs found in `src/msgbuf.h` (and under `src/msgbuf/`) to
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/opensaf/opensaf/ |
| H A D | 0001-src-Add-missing-header-limits.h-for-_POSIX_HOST_NAME.patch | 34 struct msgbuf {
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/ |
| H A D | rdist-6.1.5-cleanup.patch | 1339 static char ebuf[BUFSIZ], msgbuf[MSGBUFSIZ]; 1381 char *msgbuf; 1389 if (msgbuf && *msgbuf) { 1393 - if (cp = strchr(msgbuf, '\n')) 1394 + if ((cp = strchr(msgbuf, '\n')))
|
| /openbmc/libpldm/docs/checklists/ |
| H A D | changes.md | 352 the `msgbuf` APIs found in `src/msgbuf.h` (and under `src/msgbuf/`) to
|
| /openbmc/qemu/linux-user/ |
| H A D | syscall.c | 4301 struct msgbuf *host_mb; in do_msgsnd() 4358 struct msgbuf *host_mb; in do_msgrcv()
|
| /openbmc/openbmc/poky/meta/lib/oeqa/files/ |
| H A D | buildhistory_filelist2.txt | 1458 -rw-r--r-- root root 1618 ./usr/include/asm-generic/msgbuf.h 1491 -rw-r--r-- root root 1053 ./usr/include/asm/msgbuf.h
|
| H A D | buildhistory_filelist1.txt | 1457 -rw-r--r-- root root 1618 ./usr/include/asm-generic/msgbuf.h 1490 -rw-r--r-- root root 1053 ./usr/include/asm/msgbuf.h
|