Searched refs:message (Results 51 - 75 of 416) sorted by path

1234567891011>>

/linux-master/crypto/
H A Dnhpoly1305.c29 * [3] The Poly1305-AES message-authentication code
42 static void nh_generic(const u32 *key, const u8 *message, size_t message_len, argument
51 u32 m0 = get_unaligned_le32(message + 0);
52 u32 m1 = get_unaligned_le32(message + 4);
53 u32 m2 = get_unaligned_le32(message + 8);
54 u32 m3 = get_unaligned_le32(message + 12);
65 message += NH_MESSAGE_UNIT;
87 * "NH message units", through NH and Poly1305. Each NH hash is taken over
100 /* Starting a new NH message */
105 /* Continuing a previous NH message */
[all...]
/linux-master/drivers/
H A DMakefile91 obj-$(CONFIG_FUSION) += message/
/linux-master/drivers/accel/habanalabs/common/
H A Ddevice.c438 static void print_idle_status_mask(struct hl_device *hdev, const char *message, argument
443 message, idle_mask[3], idle_mask[2], idle_mask[1], idle_mask[0]);
446 message, idle_mask[2], idle_mask[1], idle_mask[0]);
449 message, idle_mask[1], idle_mask[0]);
451 dev_err(hdev->dev, "%s (mask %#llx)\n", message, idle_mask[0]);
548 static void print_device_in_use_info(struct hl_device *hdev, const char *message) argument
575 dev_notice(hdev->dev, "%s%s\n", message, buf);
1245 /* Flush processes that are sending message to CPU */
1485 * which case no point sending PCI disable message to it.
1494 * disable, the message wo
[all...]
/linux-master/drivers/acpi/acpica/
H A Dacutils.h85 * Common error message prefixes
105 * Common message suffix
737 const char *message,
H A Ddsdebug.c26 const char *message);
33 * message - Prefix message
42 const char *message)
54 /* Convert handle to full pathname and print it (with supplied message) */
60 if (message) {
62 message));
41 acpi_ds_print_node_pathname(struct acpi_namespace_node *node, const char *message) argument
H A Dnsutils.c29 * message - Prefix message
38 const char *message)
48 /* Convert handle to full pathname and print it (with supplied message) */
54 if (message) {
55 acpi_os_printf("%s ", message);
37 acpi_ns_print_node_pathname(struct acpi_namespace_node *node, const char *message) argument
H A Dutdelete.c370 char *message; local
407 message = "Incremement";
438 message = "Decrement";
456 new_count, object, object->common.type, message));
H A Duterror.c116 * DESCRIPTION: BIOS error message for predefined names. Messages
159 * DESCRIPTION: Print error message with the full pathname constructed this way:
175 const char *message; local
186 message = "Failure creating named object";
192 message = "Could not resolve symbol";
198 message = "Failure resolving symbol";
207 acpi_os_printf("%s [%s], %s", message,
230 * DESCRIPTION: Print error message with the full pathname for the NS node.
287 * message - Error message t
299 acpi_ut_method_error(const char *module_name, u32 line_number, const char *message, struct acpi_namespace_node *prefix_node, const char *path, acpi_status method_status) argument
[all...]
/linux-master/drivers/acpi/
H A Dbus.c1177 char *message = NULL; local
1187 message = "PIC";
1190 message = "IOAPIC";
1193 message = "IOSAPIC";
1196 message = "GIC";
1199 message = "platform specific model";
1202 message = "LPIC";
1209 pr_info("Using %s for interrupt routing\n", message);
/linux-master/drivers/ata/
H A Dlibahci.c1116 u32 message[] = {0, 0}; local
1121 /* get the slot number from the message */
1132 * if we are still busy transmitting a previous message,
1144 * create message header - this is all zero except for
1145 * the message size, which is 4 bytes.
1147 message[0] |= (4 << 8);
1150 message[1] = ((state & ~EM_MSG_LED_HBA_PORT) | ap->port_no);
1152 /* write message to EM_LOC */
1153 writel(message[0], mmio + hpriv->em_loc);
1154 writel(message[
[all...]
/linux-master/drivers/auxdisplay/
H A Dline-display.c36 * Scroll the current message along the display by one character, rearming the
45 /* update the current message string */
49 linedisp->buf[i] = linedisp->message[ch];
68 * linedisp_display() - set the message to be displayed
70 * @msg: the message to display
73 * Display a new message @msg on the display. @msg can be longer than the
96 kfree(linedisp->message);
97 linedisp->message = NULL;
108 kfree(linedisp->message);
110 linedisp->message
[all...]
H A Dline-display.h63 * @message: the full message to display or scroll on the display
65 * @message_len: the length of the @message string
66 * @scroll_pos: index of the first character of @message currently displayed
76 char *message; member in struct:linedisp
/linux-master/drivers/block/
H A Dfloppy.c642 static void is_alive(const char *func, const char *message) argument
647 DPRINT("%s: timeout handler died. %s\n", func, message);
671 static void __reschedule_timeout(int drive, const char *message) argument
683 DPRINT("reschedule timeout %s\n", message);
684 timeout_message = message;
687 static void reschedule_timeout(int drive, const char *message) argument
692 __reschedule_timeout(drive, message);
1703 static void print_result(char *message, int inr) argument
1707 DPRINT("%s ", message);
H A Dxen-blkfront.c1722 const char *message = NULL; local
1728 message = "writing ring-ref";
1739 message = "writing ring-ref";
1747 message = "writing event-channel";
1755 if (message)
1756 xenbus_dev_fatal(info->xbdev, err, "%s", message);
1771 const char *message = NULL; local
1812 message = "writing ring-page-order";
1829 message = "writing multi-queue-num-queues";
1837 message
[all...]
/linux-master/drivers/bluetooth/
H A Dbtusb.c4672 static int btusb_suspend(struct usb_interface *intf, pm_message_t message) argument
4686 if (!(PMSG_IS_AUTO(message) && data->tx_in_flight)) {
4712 if (PMSG_IS_AUTO(message) &&
4715 else if (!PMSG_IS_AUTO(message) &&
/linux-master/drivers/char/tpm/
H A Dxen-tpmfront.c254 const char *message = NULL; local
284 message = "writing ring-ref";
291 message = "writing event-channel";
297 message = "writing feature-protocol-v2";
315 if (message)
316 xenbus_dev_error(dev, rv, "%s", message);
/linux-master/drivers/crypto/bcm/
H A Dcipher.h11 #include <linux/mailbox/brcm-message.h>
59 /* Force at least 4-byte alignment of all SPU message fields */
62 /* Number of times to resend mailbox message if mb queue is full */
119 * Buffers for a SPU request/reply message pair. All part of one structure to
123 /* Request message fragments */
126 * SPU request message header. For SPU-M, holds MH, EMH, SCTX, BDESC,
137 /* SPU request message padding */
140 /* SPU-M request message STATUS field */
143 /* Response message fragments */
145 /* SPU response message heade
[all...]
/linux-master/drivers/dma/
H A Dbcm-sba-raid.c36 #include <linux/mailbox/brcm-message.h>
111 /* BRCM message data */
358 /* Send message for the request */
362 dev_err(sba->dev, "send message failed with error %d", ret);
369 dev_err(sba->dev, "message error %d", ret);
631 /* Fillup request message */
716 /* Fillup request message */
855 /* Fillup request message */
1440 /* Error count if message has error */
1442 dev_err(sba->dev, "%s got message wit
[all...]
/linux-master/drivers/edac/
H A Dal_mc_edac.c63 static void prepare_msg(char *message, size_t buffer_size, argument
68 snprintf(message, buffer_size,
H A Ddmc520_edac.c78 * The max-length message would be: "rank:7 bank:15 row:262143 col:1023".
369 char message[DMC520_MSG_BUF_SIZE]; local
379 snprintf(message, ARRAY_SIZE(message),
388 message, "");
H A Dnpcm_edac.c94 char message[EDAC_MSG_SIZE]; member in struct:priv_data
130 snprintf(priv->message, EDAC_MSG_SIZE,
134 addr & ~PAGE_MASK, synd, 0, 0, -1, priv->message, "");
163 snprintf(priv->message, EDAC_MSG_SIZE,
167 addr & ~PAGE_MASK, synd, 0, 0, -1, priv->message, "");
H A Dppc4xx_edac.c96 * following pieces of information in the driver-unique message to the
281 * ppc4xx_edac_generate_bank_message - generate interpretted bank status message
283 * with the bank message being generated.
285 * message from.
287 * message.
291 * driver-unique report message associated with the ECCESS[BKNER]
343 * ppc4xx_edac_generate_checkbit_message - generate interpretted checkbit message
345 * with the checkbit message being generated.
347 * message from.
349 * message
616 char message[PPC4XX_EDAC_MESSAGE_SIZE]; local
706 char message[PPC4XX_EDAC_MESSAGE_SIZE]; local
737 char message[PPC4XX_EDAC_MESSAGE_SIZE]; local
[all...]
H A Dsynopsys_edac.c304 * @message: Buffer for framing the event specific info.
319 char message[SYNPS_EDAC_MSG_SIZE]; member in struct:synps_edac_priv
486 snprintf(priv->message, SYNPS_EDAC_MSG_SIZE,
492 snprintf(priv->message, SYNPS_EDAC_MSG_SIZE,
500 priv->message, "");
506 snprintf(priv->message, SYNPS_EDAC_MSG_SIZE,
511 snprintf(priv->message, SYNPS_EDAC_MSG_SIZE,
518 priv->message, "");
H A Dversal_edac.c212 * @message: Buffer for framing the event specific info.
230 char message[XDDR_EDAC_MSG_SIZE]; member in struct:edac_priv
422 snprintf(priv->message, XDDR_EDAC_MSG_SIZE,
429 priv->message, "");
435 snprintf(priv->message, XDDR_EDAC_MSG_SIZE,
442 priv->message, "");
H A Dzynqmp_edac.c101 * @message: Buffer for framing the event specific info
112 char message[ZYNQMP_OCM_EDAC_MSG_SIZE]; member in struct:edac_priv
164 snprintf(priv->message, ZYNQMP_OCM_EDAC_MSG_SIZE,
167 edac_device_handle_ce(dci, 0, 0, priv->message);
172 snprintf(priv->message, ZYNQMP_OCM_EDAC_MSG_SIZE,
175 edac_device_handle_ue(dci, 0, 0, priv->message);

Completed in 345 milliseconds

1234567891011>>