/Linux-v5.4/drivers/s390/crypto/ |
D | zcrypt_msgtype50.c | 77 unsigned char message[128]; member 87 unsigned char message[256]; member 97 unsigned char message[512]; member 110 unsigned char message[128]; member 123 unsigned char message[256]; member 136 unsigned char message[512]; member 210 struct type50_meb1_msg *meb1 = ap_msg->message; in ICAMEX_msg_to_type50MEX_msg() 219 inp = meb1->message + sizeof(meb1->message) - mod_len; in ICAMEX_msg_to_type50MEX_msg() 221 struct type50_meb2_msg *meb2 = ap_msg->message; in ICAMEX_msg_to_type50MEX_msg() 230 inp = meb2->message + sizeof(meb2->message) - mod_len; in ICAMEX_msg_to_type50MEX_msg() [all …]
|
D | zcrypt_msgtype6.c | 269 } __packed * msg = ap_msg->message; in ICAMEX_msg_to_type6MEX_msgX() 339 } __packed * msg = ap_msg->message; in ICACRT_msg_to_type6CRT_msgX() 403 } __packed * msg = ap_msg->message; in XCRB_msg_to_type6CPRB_msgX() 407 char *req_data = ap_msg->message + sizeof(struct type6_hdr) + rcblen; in XCRB_msg_to_type6CPRB_msgX() 515 } __packed * msg = ap_msg->message; in xcrb_msg_to_type6_ep11cprb_msgx() 642 struct type86x_reply *msg = reply->message; in convert_type86_ica() 716 struct type86_fmt2_msg *msg = reply->message; in convert_type86_xcrb() 717 char *data = reply->message; in convert_type86_xcrb() 747 struct type86_fmt2_msg *msg = reply->message; in convert_type86_ep11_xcrb() 748 char *data = reply->message; in convert_type86_ep11_xcrb() [all …]
|
D | zcrypt_cex2a.h | 49 unsigned char message[128]; member 59 unsigned char message[256]; member 69 unsigned char message[512]; member 82 unsigned char message[128]; member 95 unsigned char message[256]; member 108 unsigned char message[512]; member
|
/Linux-v5.4/drivers/mtd/devices/ |
D | mchp23k256.c | 65 struct spi_message message; in mchp23k256_write() local 69 spi_message_init(&message); in mchp23k256_write() 76 spi_message_add_tail(&transfer[0], &message); in mchp23k256_write() 80 spi_message_add_tail(&transfer[1], &message); in mchp23k256_write() 84 ret = spi_sync(flash->spi, &message); in mchp23k256_write() 91 if (retlen && message.actual_length > sizeof(command)) in mchp23k256_write() 92 *retlen += message.actual_length - sizeof(command); in mchp23k256_write() 102 struct spi_message message; in mchp23k256_read() local 106 spi_message_init(&message); in mchp23k256_read() 114 spi_message_add_tail(&transfer[0], &message); in mchp23k256_read() [all …]
|
/Linux-v5.4/include/trace/events/ |
D | intel_ish.h | 12 TP_PROTO(const char *message), 14 TP_ARGS(message), 17 __string(message, message) 21 __assign_str(message, message); 24 TP_printk("%s", __get_str(message))
|
/Linux-v5.4/drivers/hv/ |
D | hv_kvp.c | 200 struct hv_kvp_msg *message = (struct hv_kvp_msg *)msg; in kvp_on_msg() local 204 if (len < sizeof(*message)) in kvp_on_msg() 213 return kvp_handle_handshake(message); in kvp_on_msg() 227 data = &message->body.kvp_enum_data; in kvp_on_msg() 243 error = message->error; in kvp_on_msg() 252 kvp_respond_to_host(message, error); in kvp_on_msg() 375 struct hv_kvp_msg *message; in kvp_send_key() local 387 message = kzalloc(sizeof(*message), GFP_KERNEL); in kvp_send_key() 388 if (!message) in kvp_send_key() 391 message->kvp_hdr.operation = operation; in kvp_send_key() [all …]
|
/Linux-v5.4/Documentation/sphinx/ |
D | kernellog.py | 16 def warn(app, message): argument 18 logger.warning(message) 20 app.warn(message) 22 def verbose(app, message): argument 24 logger.verbose(message) 26 app.verbose(message)
|
/Linux-v5.4/Documentation/driver-api/soundwire/ |
D | locking.rst | 29 SoundWire message transfer lock. This mutex is part of 30 Bus data structure (sdw_bus). This lock is used to serialize the message 40 1. For every message transfer 44 b. Transfer message (Read/Write) to Slave1 or broadcast message on 60 | | b. Transfer message 74 2. For every message transfer in Prepare operation 78 b. Transfer message (Read/Write) to Slave1 or broadcast message on 99 | | b. Transfer message
|
/Linux-v5.4/Documentation/admin-guide/device-mapper/ |
D | dm-dust.txt | 9 the user can send a message to the target to start failing read 79 $ sudo dmsetup message dust1 0 addbadblock 60 82 $ sudo dmsetup message dust1 0 addbadblock 67 85 $ sudo dmsetup message dust1 0 addbadblock 72 97 To enable the "fail read on bad block" behavior, send the "enable" message: 99 $ sudo dmsetup message dust1 0 enable 130 result in an "Invalid argument" error, as well as a helpful message: 132 $ sudo dmsetup message dust1 0 addbadblock 88 133 device-mapper: message ioctl on dust1 failed: Invalid argument 137 result in an "Invalid argument" error, as well as a helpful message: [all …]
|
/Linux-v5.4/lib/ |
D | globtest.c | 30 char const *message; in test() local 33 message = msg_error; in test() 35 message = msg_ok; in test() 39 printk(message, pat, str, mismatch + 3*match); in test() 134 static char const message[] __initconst = in glob_init() local 154 printk(message, successes, n); in glob_init()
|
/Linux-v5.4/tools/testing/selftests/futex/include/ |
D | logging.h | 125 #define info(message, vargs...) \ argument 128 fprintf(stderr, "\t%s: "message, INFO, ##vargs); \ 131 #define error(message, err, args...) \ argument 135 fprintf(stderr, "\t%s: %s: "message, \ 138 fprintf(stderr, "\t%s: "message, ERROR, ##args); \ 142 #define fail(message, args...) \ argument 145 fprintf(stderr, "\t%s: "message, FAIL, ##args); \
|
/Linux-v5.4/drivers/greybus/ |
D | operation.c | 215 static int gb_message_send(struct gb_message *message, gfp_t gfp) in gb_message_send() argument 217 struct gb_connection *connection = message->operation->connection; in gb_message_send() 219 trace_gb_message_send(message); in gb_message_send() 222 message, in gb_message_send() 229 static void gb_message_cancel(struct gb_message *message) in gb_message_cancel() argument 231 struct gb_host_device *hd = message->operation->connection->hd; in gb_message_cancel() 233 hd->driver->message_cancel(message); in gb_message_cancel() 310 struct gb_message *message, in gb_operation_message_init() argument 316 header = message->buffer; in gb_operation_message_init() 318 message->header = header; in gb_operation_message_init() [all …]
|
/Linux-v5.4/drivers/input/keyboard/ |
D | applespi.c | 290 struct message { struct 597 struct spi_message *message, void (*complete)(void *)) in applespi_async() argument 599 message->complete = complete; in applespi_async() 600 message->context = applespi; in applespi_async() 602 return spi_async(applespi->spi, message); in applespi_async() 752 struct message *message = (struct message *)packet->data; in applespi_send_cmd_msg() local 776 message->type = cpu_to_le16(0x1020); in applespi_send_cmd_msg() 777 msg_len = sizeof(message->tp_info_command); in applespi_send_cmd_msg() 779 message->zero = 0x02; in applespi_send_cmd_msg() 780 message->rsp_buf_len = cpu_to_le16(0x0200); in applespi_send_cmd_msg() [all …]
|
/Linux-v5.4/drivers/input/misc/ |
D | keyspan_remote.c | 183 struct keyspan_message message; in keyspan_check_data() local 248 message.system = 0; in keyspan_check_data() 253 message.system = message.system << 1; in keyspan_check_data() 257 message.system = (message.system << 1) + 1; in keyspan_check_data() 269 message.button = 0; in keyspan_check_data() 274 message.button = message.button << 1; in keyspan_check_data() 278 message.button = (message.button << 1) + 1; in keyspan_check_data() 292 message.toggle = 0; in keyspan_check_data() 296 message.toggle = 1; in keyspan_check_data() 318 __func__, message.system, message.button, message.toggle); in keyspan_check_data() [all …]
|
/Linux-v5.4/drivers/acpi/acpica/ |
D | uterror.c | 175 const char *message; in acpi_ut_prefixed_namespace_error() local 186 message = "Failure creating named object"; in acpi_ut_prefixed_namespace_error() 192 message = "Could not resolve symbol"; in acpi_ut_prefixed_namespace_error() 198 message = "Failure resolving symbol"; in acpi_ut_prefixed_namespace_error() 207 acpi_os_printf("%s [%s], %s", message, in acpi_ut_prefixed_namespace_error() 301 const char *message, in acpi_ut_method_error() argument 319 acpi_ns_print_node_pathname(node, message); in acpi_ut_method_error()
|
/Linux-v5.4/drivers/mailbox/ |
D | mailbox-test.c | 39 char *message; member 113 tdev->message = kzalloc(MBOX_MAX_MSG_LEN, GFP_KERNEL); in mbox_test_message_write() 114 if (!tdev->message) in mbox_test_message_write() 117 ret = copy_from_user(tdev->message, userbuf, count); in mbox_test_message_write() 133 data = tdev->message; in mbox_test_message_write() 136 tdev->message, MBOX_MAX_MSG_LEN); in mbox_test_message_write() 144 kfree(tdev->message); in mbox_test_message_write() 276 static void mbox_test_receive_message(struct mbox_client *client, void *message) in mbox_test_receive_message() argument 286 } else if (message) { in mbox_test_receive_message() 288 message, MBOX_MAX_MSG_LEN); in mbox_test_receive_message() [all …]
|
/Linux-v5.4/Documentation/media/uapi/cec/ |
D | cec-ioc-receive.rst | 20 CEC_RECEIVE, CEC_TRANSMIT - Receive or transmit a CEC message 44 To receive a CEC message the application has to fill in the 50 is non-zero and no message arrived within ``timeout`` milliseconds, then 53 A received message can be: 55 1. a message received from another CEC device (the ``sequence`` field will 60 To send a CEC message the application has to fill in the struct 105 - Timestamp in ns of when the last byte of the message was transmitted. 110 - Timestamp in ns of when the last byte of the message was received. 115 - The length of the message. For :ref:`ioctl CEC_TRANSMIT <CEC_TRANSMIT>` this is filled in 118 filled in by the driver with the length of the reply message if ``reply`` was set. [all …]
|
/Linux-v5.4/drivers/spi/ |
D | spi-mpc52xx.c | 80 struct spi_message *message; /* current message */ member 100 cs = ms->message->spi->chip_select; in mpc52xx_spi_chipsel() 158 ms->message = list_first_entry(&ms->queue, struct spi_message, queue); in mpc52xx_spi_fsmstate_idle() 159 list_del_init(&ms->message->queue); in mpc52xx_spi_fsmstate_idle() 163 spi = ms->message->spi; in mpc52xx_spi_fsmstate_idle() 175 sppr = ((ms->ipb_freq / ms->message->spi->max_speed_hz) + 1) >> 1; in mpc52xx_spi_fsmstate_idle() 192 ms->transfer = container_of(ms->message->transfers.next, in mpc52xx_spi_fsmstate_idle() 235 ms->message->status = -EIO; in mpc52xx_spi_fsmstate_transfer() 236 if (ms->message->complete) in mpc52xx_spi_fsmstate_transfer() 237 ms->message->complete(ms->message->context); in mpc52xx_spi_fsmstate_transfer() [all …]
|
/Linux-v5.4/drivers/staging/vc04_services/interface/vchi/ |
D | vchi.h | 41 void *message; member 161 extern void *vchi_held_msg_ptr(const struct vchi_held_msg *message); 164 extern int32_t vchi_held_msg_size(const struct vchi_held_msg *message); 167 extern uint32_t vchi_held_msg_tx_timestamp(const struct vchi_held_msg *message); 170 extern uint32_t vchi_held_msg_rx_timestamp(const struct vchi_held_msg *message); 173 extern int32_t vchi_held_msg_release(struct vchi_held_msg *message); 190 struct vchi_held_msg *message); 196 struct vchi_held_msg *message);
|
/Linux-v5.4/Documentation/infiniband/ |
D | tag_matching.rst | 15 message envelopes may match, the pair that includes the earliest posted-send 21 When a message is sent from the sender to the receiver, the communication 24 this is an expected message, otherwise it is called an unexpected message. 31 1. The Eager protocol- the complete message is sent when the send is 39 A fin message needs to be received in order for the buffer to be reused. 45 unexpected message list. The application posts receive buffers through calls 51 pre-posted receive for this arriving message, it is passed to the software and 52 placed in the unexpected message list. Otherwise the match is processed, 57 When a receive-message is posted, the communication library will first check 58 the software unexpected message list for a matching receive. If a match is [all …]
|
/Linux-v5.4/drivers/misc/ibmasm/ |
D | dot_command.c | 17 void ibmasm_receive_message(struct service_processor *sp, void *message, int message_size) in ibmasm_receive_message() argument 20 struct dot_command_header *header = (struct dot_command_header *)message; in ibmasm_receive_message() 25 size = get_dot_command_size(message); in ibmasm_receive_message() 34 ibmasm_receive_event(sp, message, size); in ibmasm_receive_message() 37 ibmasm_receive_command_response(sp, message, size); in ibmasm_receive_message() 40 ibmasm_receive_heartbeat(sp, message, size); in ibmasm_receive_message()
|
/Linux-v5.4/Documentation/driver-api/nfc/ |
D | nfc-pn544.rst | 19 write functions behave a bit differently because the message formats 26 HCI messages consist of an eight bit header and the message body. The 27 header contains the message length. Maximum size for an HCI message is 30 and third (LSB) bytes of the message. The maximum FW message length is
|
/Linux-v5.4/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/ |
D | gt215.c | 31 u32 process, u32 message, u32 data0, u32 data1) in gt215_pmu_send() argument 54 pmu->recv.message = message; in gt215_pmu_send() 67 nvkm_wr32(device, 0x10a1c4, message); in gt215_pmu_send() 91 u32 process, message, data0, data1; in gt215_pmu_recv() local 107 message = nvkm_rd32(device, 0x10a1c4); in gt215_pmu_recv() 118 message == pmu->recv.message) { in gt215_pmu_recv() 135 process, message, data0, data1); in gt215_pmu_recv()
|
/Linux-v5.4/Documentation/driver-api/md/ |
D | md-cluster.rst | 62 managed through three locks: "token", "message", and "ack", together 63 with the Lock Value Block (LVB) of one of the "message" lock. 76 other nodes to acknowledge the message before proceeding. Only one 77 message can be processed at a time. 96 RESYNCING message identifies a range of the devices that the 112 array. The slot-number of the device is included in the message. 137 3.2.2 message 144 The resource, acquiring which means the message has been 157 sender get EX on "message":: 161 "message":EX [all …]
|
/Linux-v5.4/drivers/fpga/ |
D | ice40-spi.c | 46 struct spi_message message; in ice40_fpga_ops_write_init() local 67 spi_message_init(&message); in ice40_fpga_ops_write_init() 68 spi_message_add_tail(&assert_cs_then_reset_delay, &message); in ice40_fpga_ops_write_init() 69 ret = spi_sync_locked(dev, &message); in ice40_fpga_ops_write_init() 86 spi_message_init(&message); in ice40_fpga_ops_write_init() 87 spi_message_add_tail(&housekeeping_delay_then_release_cs, &message); in ice40_fpga_ops_write_init() 88 ret = spi_sync_locked(dev, &message); in ice40_fpga_ops_write_init()
|