Home
last modified time | relevance | path

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

/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
A Dfweh.c35 struct brcmf_event_msg_be emsg; member
160 emsg->addr); in brcmf_fweh_handle_if_event()
162 is_p2pdev, emsg->ifname, emsg->addr); in brcmf_fweh_handle_if_event()
175 brcmf_fweh_call_event_handler(drvr, ifp, emsg->event_code, emsg, in brcmf_fweh_handle_if_event()
272 event->emsg.ifidx, event->emsg.bsscfgidx, in brcmf_fweh_event_worker()
273 event->emsg.addr); in brcmf_fweh_event_worker()
281 emsg_be = &event->emsg; in brcmf_fweh_event_worker()
284 emsg.event_code = code; in brcmf_fweh_event_worker()
290 memcpy(emsg.ifname, emsg_be->ifname, sizeof(emsg.ifname)); in brcmf_fweh_event_worker()
295 emsg.version, emsg.flags, emsg.status, emsg.reason); in brcmf_fweh_event_worker()
[all …]
/linux/net/xfrm/
A Despintcp.c193 emsg->offset, emsg->len); in espintcp_sendskb_locked()
202 memset(emsg, 0, sizeof(*emsg)); in espintcp_sendskb_locked()
254 memset(emsg, 0, sizeof(*emsg)); in espintcp_sendskmsg_locked()
265 if (!emsg->len) in espintcp_push_msgs()
272 if (emsg->skb) in espintcp_push_msgs()
281 memset(emsg, 0, sizeof(*emsg)); in espintcp_push_msgs()
305 if (emsg->len) { in espintcp_push_skb()
313 emsg->len = len; in espintcp_push_skb()
314 emsg->skb = skb; in espintcp_push_skb()
393 memset(emsg, 0, sizeof(*emsg)); in espintcp_sendmsg()
[all …]
/linux/lib/
A Dbootconfig.c935 int __init xbc_init(const char *data, size_t size, const char **emsg, int *epos) in xbc_init() argument
943 if (emsg) in xbc_init()
944 *emsg = "Bootconfig is already initialized"; in xbc_init()
948 if (emsg) in xbc_init()
949 *emsg = size ? "Config data is too big" : in xbc_init()
956 if (emsg) in xbc_init()
957 *emsg = "Failed to allocate bootconfig data"; in xbc_init()
966 if (emsg) in xbc_init()
967 *emsg = "Failed to allocate bootconfig nodes"; in xbc_init()
980 if (emsg) in xbc_init()
[all …]
/linux/drivers/i2c/busses/
A Di2c-ls2x.c257 struct i2c_msg *msg, *emsg = msgs + num; in ls2x_i2c_xfer() local
260 for (msg = msgs; msg < emsg; msg++) { in ls2x_i2c_xfer()
261 ret = ls2x_i2c_xfer_one(priv, msg, msg == emsg - 1); in ls2x_i2c_xfer()
A Di2c-uniphier.c216 struct i2c_msg *msg, *emsg = msgs + num; in uniphier_i2c_xfer() local
223 for (msg = msgs; msg < emsg; msg++) { in uniphier_i2c_xfer()
225 bool stop = (msg + 1 == emsg) || (msg->flags & I2C_M_STOP); in uniphier_i2c_xfer()
A Di2c-uniphier-f.c407 struct i2c_msg *msg, *emsg = msgs + num; in uniphier_fi2c_xfer() local
415 for (msg = msgs; msg < emsg; msg++) { in uniphier_fi2c_xfer()
417 bool stop = (msg + 1 == emsg) || (msg->flags & I2C_M_STOP); in uniphier_fi2c_xfer()
/linux/tools/perf/
A Dbuiltin-ftrace.c705 const char *emsg = str_error_r(workload_exec_errno, buf, sizeof(buf)); in __cmd_ftrace() local
708 pr_err("workload failed: %s\n", emsg); in __cmd_ftrace()
961 const char *emsg = str_error_r(workload_exec_errno, buf, sizeof(buf)); in __cmd_latency() local
962 pr_err("workload failed: %s\n", emsg); in __cmd_latency()
1276 const char *emsg = str_error_r(workload_exec_errno, buf, sizeof(buf)); in __cmd_profile() local
1279 pr_err("workload failed: %s\n", emsg); in __cmd_profile()
A Dbuiltin-stat.c900 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg)); in __run_perf_stat() local
901 pr_err("Workload failed: %s\n", emsg); in __run_perf_stat()
A Dbuiltin-record.c2782 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg)); in __cmd_record() local
2787 strevsels, argv[0], emsg); in __cmd_record()
A Dbuiltin-trace.c2849 const char *emsg = str_error_r(-ret, bf, sizeof(bf)), local
2852 fprintf(trace->output, "-1 %s (%s)", e, emsg);
/linux/drivers/ata/
A Dlibahci.c958 *emsg = "failed to stop engine"; in ahci_deinit_port()
965 *emsg = "failed stop FIS RX"; in ahci_deinit_port()
1283 const char *emsg = NULL; in ahci_port_init() local
1287 rc = ahci_deinit_port(ap, &emsg); in ahci_port_init()
1289 dev_warn(dev, "%s (%d)\n", emsg, rc); in ahci_port_init()
2457 const char *emsg = NULL; in ahci_port_suspend() local
2460 rc = ahci_deinit_port(ap, &emsg); in ahci_port_suspend()
2464 ata_port_err(ap, "%s (%d)\n", emsg, rc); in ahci_port_suspend()
2574 const char *emsg = NULL; in ahci_port_stop() local
2580 rc = ahci_deinit_port(ap, &emsg); in ahci_port_stop()
[all …]
/linux/tools/tracing/latency/
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()
/linux/include/linux/
A Dbootconfig.h285 int __init xbc_init(const char *buf, size_t size, const char **emsg, int *epos);
/linux/tools/perf/util/
A Devlist.c1653 char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf)); in evlist__strerror_open() local
1660 "Hint:\tCheck /proc/sys/kernel/perf_event_paranoid setting.", emsg); in evlist__strerror_open()
1691 emsg, max_freq, first->core.attr.sample_freq); in evlist__strerror_open()
1696 scnprintf(buf, size, "%s", emsg); in evlist__strerror_open()
1705 char sbuf[STRERR_BUFSIZE], *emsg = str_error_r(err, sbuf, sizeof(sbuf)); in evlist__strerror_mmap() local
1715 emsg, pages_max_per_user, pages_attempted); in evlist__strerror_mmap()
1727 scnprintf(buf, size, "%s", emsg); in evlist__strerror_mmap()
/linux/fs/ecryptfs/
A Decryptfs_kernel.h608 struct ecryptfs_message **emsg);
624 struct ecryptfs_message **emsg) in ecryptfs_wait_for_response() argument

Completed in 73 milliseconds