Home
last modified time | relevance | path

Searched refs:emsg (Results 1 – 25 of 27) sorted by relevance

12

/openbmc/ipmitool/lib/
H A Dipmi_event.c168 emsg.evm_rev = 0x04; in ipmi_send_platform_event_num()
252 emsg.evm_rev = 0x04; in ipmi_event_fromsensor()
290 emsg.event_data[1] = 0xff; in ipmi_event_fromsensor()
291 emsg.event_data[2] = 0xff; in ipmi_event_fromsensor()
293 switch (emsg.event_type) in ipmi_event_fromsensor()
360 emsg.event_data[2] = rsp->data[(emsg.event_data[0] / 2) + 1]; in ipmi_event_fromsensor()
374 emsg.event_data[1] = emsg.event_data[2] + off; in ipmi_event_fromsensor()
380 emsg.event_data[1] = emsg.event_data[2] - off; in ipmi_event_fromsensor()
402 print_sensor_states(emsg.sensor_type, emsg.event_type); in ipmi_event_fromsensor()
442 print_sensor_states(emsg.sensor_type, emsg.event_type); in ipmi_event_fromsensor()
[all …]
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dfweh.c34 struct brcmf_event_msg_be emsg; member
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()
230 event->emsg.addr); in brcmf_fweh_event_worker()
237 emsg_be = &event->emsg; in brcmf_fweh_event_worker()
246 memcpy(emsg.ifname, emsg_be->ifname, sizeof(emsg.ifname)); in brcmf_fweh_event_worker()
251 emsg.version, emsg.flags, emsg.status, emsg.reason); in brcmf_fweh_event_worker()
[all …]
/openbmc/linux/net/xfrm/
H A Despintcp.c191 emsg->offset, emsg->len); in espintcp_sendskb_locked()
200 memset(emsg, 0, sizeof(*emsg)); in espintcp_sendskb_locked()
252 memset(emsg, 0, sizeof(*emsg)); in espintcp_sendskmsg_locked()
263 if (!emsg->len) in espintcp_push_msgs()
270 if (emsg->skb) in espintcp_push_msgs()
279 memset(emsg, 0, sizeof(*emsg)); in espintcp_push_msgs()
303 if (emsg->len) { in espintcp_push_skb()
311 emsg->len = len; in espintcp_push_skb()
312 emsg->skb = skb; in espintcp_push_skb()
391 memset(emsg, 0, sizeof(*emsg)); in espintcp_sendmsg()
[all …]
/openbmc/qemu/python/qemu/qmp/
H A Dqmp_client.py273 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"
281 self.logger.debug("%s:\n%s\n", emsg, pretty_traceback())
309 emsg = "Negotiation failed"
311 self.logger.debug("%s:\n%s\n", emsg, pretty_traceback())
312 raise NegotiationError(emsg, err) from err
315 emsg = "Negotiation failed"
[all …]
H A Dprotocol.py145 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)
427 self.logger.error("%s: %s", emsg, exception_summary(err))
428 self.logger.debug("%s:\n%s\n", emsg, pretty_traceback())
437 emsg = (
456 raise ConnectError(emsg, err) from err
789 emsg = "Failed to flush the writer"
[all …]
H A Dmessage.py159 emsg = "Failed to deserialize QMP message."
160 raise DeserializationError(emsg, data) from err
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dmigration-permissions73 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 Dbootconfig.c936 int __init xbc_init(const char *data, size_t size, const char **emsg, int *epos) in xbc_init() argument
944 if (emsg) in xbc_init()
945 *emsg = "Bootconfig is already initialized"; in xbc_init()
949 if (emsg) in xbc_init()
950 *emsg = size ? "Config data is too big" : in xbc_init()
957 if (emsg) in xbc_init()
958 *emsg = "Failed to allocate bootconfig data"; in xbc_init()
967 if (emsg) in xbc_init()
968 *emsg = "Failed to allocate bootconfig nodes"; in xbc_init()
981 if (emsg) in xbc_init()
[all …]
/openbmc/openbmc/poky/meta/recipes-multimedia/libtiff/tiff/
H A DCVE-2023-52356.patch20 if (TIFFRGBAImageOK(tif, emsg) &&
21 TIFFRGBAImageBegin(&img, tif, stop_on_error, emsg))
/openbmc/qemu/qga/
H A Dchannel-win32.c305 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 Dcommands-win32.c345 g_autofree gchar *emsg = g_win32_error_message(GetLastError()); in qmp_guest_shutdown() local
346 slog("guest-shutdown failed: %s", emsg); in qmp_guest_shutdown()
1448 g_autofree gchar *emsg = g_win32_error_message(GetLastError()); in do_suspend() local
1449 slog("failed to suspend guest: %s", emsg); in do_suspend()
/openbmc/linux/drivers/i2c/busses/
H A Di2c-ls2x.c258 struct i2c_msg *msg, *emsg = msgs + num; in ls2x_i2c_master_xfer() local
261 for (msg = msgs; msg < emsg; msg++) { in ls2x_i2c_master_xfer()
262 ret = ls2x_i2c_xfer_one(priv, msg, msg == emsg - 1); in ls2x_i2c_master_xfer()
H A Di2c-uniphier.c219 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 Di2c-uniphier-f.c410 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/qemu/tests/qtest/
H A Ddbus-display-test.c195 g_autofree char *emsg = g_win32_error_message(WSAGetLastError()); in test_dbus_display_console() local
196 g_error("WSADuplicateSocket failed: %s", emsg); in test_dbus_display_console()
H A Dlibqtest.c1708 g_autofree char *emsg = g_win32_error_message(WSAGetLastError()); in qtest_qmp_add_client() local
1709 g_error("WSADuplicateSocketW failed: %s", emsg); in qtest_qmp_add_client()
/openbmc/linux/drivers/ata/
H A Dlibahci.c958 *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()
2472 const char *emsg = NULL; in ahci_port_suspend() local
2475 rc = ahci_deinit_port(ap, &emsg); in ahci_port_suspend()
2479 ata_port_err(ap, "%s (%d)\n", emsg, rc); in ahci_port_suspend()
2589 const char *emsg = NULL; in ahci_port_stop() local
2595 rc = ahci_deinit_port(ap, &emsg); in ahci_port_stop()
[all …]
/openbmc/linux/tools/perf/
H A Dbuiltin-ftrace.c661 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 Dbuiltin-stat.c896 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg)); in __run_perf_stat() local
897 pr_err("Workload failed: %s\n", emsg); in __run_perf_stat()
/openbmc/linux/tools/tracing/latency/
H A Dlatency-collector.c576 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 Dosdep.c76 g_autofree gchar *emsg = g_win32_error_message(GetLastError()); in qemu_mprotect__osdep() local
77 error_report("%s: VirtualProtect failed: %s", __func__, emsg); in qemu_mprotect__osdep()
/openbmc/linux/include/linux/
H A Dbootconfig.h284 int __init xbc_init(const char *buf, size_t size, const char **emsg, int *epos);
/openbmc/linux/tools/perf/util/
H A Devlist.c1581 char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf)); in evlist__strerror_open() local
1588 "Hint:\tCheck /proc/sys/kernel/perf_event_paranoid setting.", emsg); in evlist__strerror_open()
1619 emsg, max_freq, first->core.attr.sample_freq); in evlist__strerror_open()
1624 scnprintf(buf, size, "%s", emsg); in evlist__strerror_open()
1633 char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf)); in evlist__strerror_mmap() local
1643 emsg, pages_max_per_user, pages_attempted); in evlist__strerror_mmap()
1655 scnprintf(buf, size, "%s", emsg); in evlist__strerror_mmap()
/openbmc/qemu/ui/
H A Ddbus-console.c237 g_autofree gchar *emsg = g_win32_error_message(WSAGetLastError()); in dbus_win32_import_socket() local
242 "Couldn't create socket: %s", emsg); in dbus_win32_import_socket()
/openbmc/linux/fs/ecryptfs/
H A Decryptfs_kernel.h608 struct ecryptfs_message **emsg);
624 struct ecryptfs_message **emsg) in ecryptfs_wait_for_response() argument

12