/openbmc/ipmitool/lib/ |
H A D | ipmi_event.c | 82 ipmi_send_platform_event(struct ipmi_intf * intf, struct platform_event_msg * emsg) in ipmi_send_platform_event() argument 101 memcpy(rqdata+1, emsg, sizeof(struct platform_event_msg)); in ipmi_send_platform_event() 105 memcpy(rqdata, emsg, sizeof(struct platform_event_msg)); in ipmi_send_platform_event() 108 ipmi_event_msg_print(intf, emsg); in ipmi_send_platform_event() 159 struct platform_event_msg emsg; in ipmi_send_platform_event_num() local 161 memset(&emsg, 0, sizeof(struct platform_event_msg)); in ipmi_send_platform_event_num() 168 emsg.evm_rev = 0x04; in ipmi_send_platform_event_num() 169 emsg.sensor_type = 0x01; in ipmi_send_platform_event_num() 170 emsg.sensor_num = 0x30; in ipmi_send_platform_event_num() 171 emsg.event_dir = EVENT_DIR_ASSERT; in ipmi_send_platform_event_num() [all …]
|
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | fweh.c | 34 struct brcmf_event_msg_be emsg; member 98 struct brcmf_event_msg *emsg, in brcmf_fweh_call_event_handler() argument 109 err = fweh->evt_handler[code](ifp, emsg, data); in brcmf_fweh_call_event_handler() 126 struct brcmf_event_msg *emsg, in brcmf_fweh_handle_if_event() argument 158 brcmf_dbg(EVENT, "adding %s (%pM)\n", emsg->ifname, in brcmf_fweh_handle_if_event() 159 emsg->addr); in brcmf_fweh_handle_if_event() 161 is_p2pdev, emsg->ifname, emsg->addr); in brcmf_fweh_handle_if_event() 174 brcmf_fweh_call_event_handler(drvr, ifp, emsg->event_code, emsg, in brcmf_fweh_handle_if_event() 221 struct brcmf_event_msg emsg; in brcmf_fweh_event_worker() local 229 event->emsg.ifidx, event->emsg.bsscfgidx, in brcmf_fweh_event_worker() [all …]
|
/openbmc/linux/net/xfrm/ |
H A D | espintcp.c | 184 static int espintcp_sendskb_locked(struct sock *sk, struct espintcp_msg *emsg, in espintcp_sendskb_locked() argument 190 ret = skb_send_sock_locked(sk, emsg->skb, in espintcp_sendskb_locked() 191 emsg->offset, emsg->len); in espintcp_sendskb_locked() 195 emsg->len -= ret; in espintcp_sendskb_locked() 196 emsg->offset += ret; in espintcp_sendskb_locked() 197 } while (emsg->len > 0); in espintcp_sendskb_locked() 199 kfree_skb(emsg->skb); in espintcp_sendskb_locked() 200 memset(emsg, 0, sizeof(*emsg)); in espintcp_sendskb_locked() 206 struct espintcp_msg *emsg, int flags) in espintcp_sendskmsg_locked() argument 211 struct sk_msg *skmsg = &emsg->skmsg; in espintcp_sendskmsg_locked() [all …]
|
/openbmc/qemu/python/qemu/qmp/ |
H A D | qmp_client.py | 273 emsg = "Did not understand Greeting" 274 self.logger.error("%s: %s", emsg, exception_summary(err)) 275 self.logger.debug("%s:\n%s\n", emsg, pretty_traceback()) 276 raise GreetingError(emsg, err) from err 279 emsg = "Failed to receive Greeting" 280 self.logger.error("%s: %s", emsg, exception_summary(err)) 281 self.logger.debug("%s:\n%s\n", emsg, pretty_traceback()) 309 emsg = "Negotiation failed" 310 self.logger.error("%s: %s", emsg, exception_summary(err)) 311 self.logger.debug("%s:\n%s\n", emsg, pretty_traceback()) [all …]
|
H A D | protocol.py | 145 emsg = f"{name} is currently connecting." 147 emsg = (f"{name} is disconnecting." 150 emsg = f"{name} is already connected and running." 152 emsg = f"{name} is disconnected and idle." 155 raise StateError(emsg, proto.runstate, required_state) 405 async def _session_guard(self, coro: Awaitable[None], emsg: str) -> None: 427 self.logger.error("%s: %s", emsg, exception_summary(err)) 428 self.logger.debug("%s:\n%s\n", emsg, pretty_traceback()) 437 emsg = ( 443 self.logger.critical("%s:\n%s\n", emsg, pretty_traceback()) [all …]
|
H A D | message.py | 159 emsg = "Failed to deserialize QMP message." 160 raise DeserializationError(emsg, data) from err
|
/openbmc/qemu/tests/qemu-iotests/tests/ |
H A D | migration-permissions | 73 emsg = ('ERROR (pre-migration): qemu-io should not be able to ' 75 with self.assertRaises(CalledProcessError, msg=emsg) as ctx: 87 emsg = ('ERROR (post-migration): qemu-io should not be able to ' 89 with self.assertRaises(CalledProcessError, msg=emsg) as ctx:
|
/openbmc/linux/lib/ |
H A D | bootconfig.c | 937 int __init xbc_init(const char *data, size_t size, const char **emsg, int *epos) in xbc_init() argument 945 if (emsg) in xbc_init() 946 *emsg = "Bootconfig is already initialized"; in xbc_init() 950 if (emsg) in xbc_init() 951 *emsg = size ? "Config data is too big" : in xbc_init() 958 if (emsg) in xbc_init() 959 *emsg = "Failed to allocate bootconfig data"; in xbc_init() 968 if (emsg) in xbc_init() 969 *emsg = "Failed to allocate bootconfig nodes"; in xbc_init() 982 if (emsg) in xbc_init() [all …]
|
/openbmc/qemu/qga/ |
H A D | channel-win32.c | 305 g_autofree gchar *emsg = g_win32_error_message(GetLastError()); in ga_channel_open() local 306 g_critical("error opening path %s: %s", newpath, emsg); in ga_channel_open() 312 g_autofree gchar *emsg = g_win32_error_message(GetLastError()); in ga_channel_open() local 313 g_critical("error setting timeout for com port: %s", emsg); in ga_channel_open()
|
H A D | commands-win32.c | 340 g_autofree gchar *emsg = g_win32_error_message(GetLastError()); in qmp_guest_shutdown() local 341 slog("guest-shutdown failed: %s", emsg); in qmp_guest_shutdown() 1443 g_autofree gchar *emsg = g_win32_error_message(GetLastError()); in do_suspend() local 1444 slog("failed to suspend guest: %s", emsg); in do_suspend()
|
/openbmc/linux/drivers/i2c/busses/ |
H A D | i2c-ls2x.c | 266 struct i2c_msg *msg, *emsg = msgs + num; in ls2x_i2c_master_xfer() local 269 for (msg = msgs; msg < emsg; msg++) { in ls2x_i2c_master_xfer() 270 ret = ls2x_i2c_xfer_one(priv, msg, msg == emsg - 1); in ls2x_i2c_master_xfer()
|
H A D | i2c-uniphier.c | 219 struct i2c_msg *msg, *emsg = msgs + num; in uniphier_i2c_master_xfer() local 226 for (msg = msgs; msg < emsg; msg++) { in uniphier_i2c_master_xfer() 228 bool stop = (msg + 1 == emsg) || (msg->flags & I2C_M_STOP); in uniphier_i2c_master_xfer()
|
H A D | i2c-uniphier-f.c | 410 struct i2c_msg *msg, *emsg = msgs + num; in uniphier_fi2c_master_xfer() local 418 for (msg = msgs; msg < emsg; msg++) { in uniphier_fi2c_master_xfer() 420 bool stop = (msg + 1 == emsg) || (msg->flags & I2C_M_STOP); in uniphier_fi2c_master_xfer()
|
/openbmc/linux/drivers/ata/ |
H A D | libahci.c | 950 static int ahci_deinit_port(struct ata_port *ap, const char **emsg) in ahci_deinit_port() argument 958 *emsg = "failed to stop engine"; in ahci_deinit_port() 965 *emsg = "failed stop FIS RX"; in ahci_deinit_port() 1284 const char *emsg = NULL; in ahci_port_init() local 1289 rc = ahci_deinit_port(ap, &emsg); in ahci_port_init() 1291 dev_warn(dev, "%s (%d)\n", emsg, rc); in ahci_port_init() 2464 const char *emsg = NULL; in ahci_port_suspend() local 2467 rc = ahci_deinit_port(ap, &emsg); in ahci_port_suspend() 2471 ata_port_err(ap, "%s (%d)\n", emsg, rc); in ahci_port_suspend() 2581 const char *emsg = NULL; in ahci_port_stop() local [all …]
|
/openbmc/linux/tools/perf/ |
H A D | builtin-ftrace.c | 661 const char *emsg = str_error_r(workload_exec_errno, buf, sizeof(buf)); in __cmd_ftrace() local 664 pr_err("workload failed: %s\n", emsg); in __cmd_ftrace() 929 const char *emsg = str_error_r(workload_exec_errno, buf, sizeof(buf)); in __cmd_latency() local 930 pr_err("workload failed: %s\n", emsg); in __cmd_latency()
|
H A D | builtin-stat.c | 910 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg)); in __run_perf_stat() local 911 pr_err("Workload failed: %s\n", emsg); in __run_perf_stat()
|
/openbmc/qemu/scripts/qapi/ |
H A D | parser.py | 562 emsg = ( 568 raise QAPIParseError(self, emsg) 571 emsg = ( 576 raise QAPIParseError(self, emsg)
|
/openbmc/qemu/tests/qtest/ |
H A D | dbus-display-test.c | 263 g_autofree char *emsg = g_win32_error_message(WSAGetLastError()); in test_dbus_display_console() local 264 g_error("WSADuplicateSocket failed: %s", emsg); in test_dbus_display_console()
|
H A D | libqtest.c | 1795 g_autofree char *emsg = g_win32_error_message(WSAGetLastError()); in qtest_qmp_add_client() local 1796 g_error("WSADuplicateSocketW failed: %s", emsg); in qtest_qmp_add_client()
|
/openbmc/linux/tools/tracing/latency/ |
H A D | latency-collector.c | 576 static const char *emsg = "Failed to read the %s file"; in read_file() local 581 warn(emsg, file); in read_file() 585 errx(EXIT_FAILURE, emsg, file); in read_file() 1344 static const char *emsg = "Failed to write to the %s file!"; in write_file() local 1353 warnx(emsg, file); in write_file() 1357 errx(EXIT_FAILURE, emsg, file); in write_file()
|
/openbmc/qemu/util/ |
H A D | osdep.c | 81 g_autofree gchar *emsg = g_win32_error_message(GetLastError()); in qemu_mprotect__osdep() local 82 error_report("%s: VirtualProtect failed: %s", __func__, emsg); in qemu_mprotect__osdep()
|
/openbmc/linux/tools/perf/util/ |
H A D | evlist.c | 1596 char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf)); in evlist__strerror_open() local 1603 "Hint:\tCheck /proc/sys/kernel/perf_event_paranoid setting.", emsg); in evlist__strerror_open() 1634 emsg, max_freq, first->core.attr.sample_freq); in evlist__strerror_open() 1639 scnprintf(buf, size, "%s", emsg); in evlist__strerror_open() 1648 char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf)); in evlist__strerror_mmap() local 1658 emsg, pages_max_per_user, pages_attempted); in evlist__strerror_mmap() 1670 scnprintf(buf, size, "%s", emsg); in evlist__strerror_mmap()
|
/openbmc/linux/include/linux/ |
H A D | bootconfig.h | 284 int __init xbc_init(const char *buf, size_t size, const char **emsg, int *epos);
|
/openbmc/qemu/ui/ |
H A D | dbus-console.c | 239 g_autofree gchar *emsg = g_win32_error_message(WSAGetLastError()); in dbus_win32_import_socket() local 244 "Couldn't create socket: %s", emsg); in dbus_win32_import_socket()
|
/openbmc/linux/fs/ecryptfs/ |
H A D | ecryptfs_kernel.h | 608 struct ecryptfs_message **emsg); 624 struct ecryptfs_message **emsg) in ecryptfs_wait_for_response() argument
|