Searched refs:message (Results 1 - 25 of 412) sorted by relevance

1234567891011>>

/linux-master/scripts/
H A Drust_is_available_bindgen_libclang.h2 #pragma message("clang version " __clang_version__)
/linux-master/include/trace/events/
H A Dintel_ish.h12 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-master/Documentation/sphinx/
H A Dkernellog.py15 def warn(app, message):
16 logger.warning(message)
18 def verbose(app, message):
19 logger.verbose(message)
21 def info(app, message):
22 logger.info(message)
/linux-master/tools/verification/rv/src/
H A Dutils.c17 * err_msg - print an error message to the stderr
21 char message[MAX_MSG_LENGTH]; local
25 vsnprintf(message, sizeof(message), fmt, ap);
28 fprintf(stderr, "%s", message);
32 * debug_msg - print a debug message to stderr if debug is set
36 char message[MAX_MSG_LENGTH]; local
43 vsnprintf(message, sizeof(message), fmt, ap);
46 fprintf(stderr, "%s", message);
[all...]
H A Drv.c123 char message[1024]; local
143 vsnprintf(message, sizeof(message), fmt, ap);
146 fprintf(stderr, "rv version %s: %s\n", VERSION, message);
/linux-master/tools/testing/selftests/user_events/
H A Duser_events_selftests.h19 static inline bool tracefs_enabled(char **message, bool *fail, bool *umount) argument
24 *message = "";
32 *message = "Tracefs is not installed";
41 *message = "Cannot mount tracefs";
52 *message = "Cannot access tracefs";
60 static inline bool user_events_enabled(char **message, bool *fail, bool *umount) argument
65 *message = "";
70 *message = "Must be run as root";
75 if (!tracefs_enabled(message, fail, umount))
84 *message
[all...]
/linux-master/arch/powerpc/boot/dts/fsl/
H A Dpq3-mpic-message-B.dtsi35 message@42400 {
H A Dpq3-rmu-0.dtsi42 message-unit@0 {
49 message-unit@100 {
H A Dqoriq-rmu-0.dtsi42 message-unit@0 {
49 message-unit@100 {
/linux-master/drivers/scsi/arm/
H A Dmsgqueue.h7 * message queue handling
12 struct message { struct
19 struct message msg;
33 * Purpose : initialise a message queue
47 * Purpose : calculate the total length of all messages on the message queue
54 * Function: struct message *msgqueue_getmsg(MsgQueue_t *msgq, int msgno)
55 * Purpose : return a message & its length
56 * Params : msgq - queue to obtain message from
57 * : msgno - message number
58 * Returns : pointer to message strin
[all...]
/linux-master/include/kunit/
H A Dassert.h52 const struct va_format *message,
70 const struct va_format *message,
90 const struct va_format *message,
110 const struct va_format *message,
146 const struct va_format *message,
169 const struct va_format *message,
192 const struct va_format *message,
218 const struct va_format *message,
/linux-master/lib/
H A Dglobtest.c30 char const *message; local
33 message = msg_error;
35 message = msg_ok;
39 printk(message, pat, str, mismatch + 3*match);
134 static char const message[] __initconst =
154 printk(message, successes, n);
/linux-master/tools/testing/selftests/futex/include/
H A Dlogging.h125 #define info(message, vargs...) \
128 fprintf(stderr, "\t%s: "message, INFO, ##vargs); \
131 #define error(message, err, args...) \
135 fprintf(stderr, "\t%s: %s: "message, \
138 fprintf(stderr, "\t%s: "message, ERROR, ##args); \
142 #define fail(message, args...) \
145 fprintf(stderr, "\t%s: "message, FAIL, ##args); \
/linux-master/drivers/mtd/devices/
H A Dmchp23k256.c65 struct spi_message message; local
69 spi_message_init(&message);
78 spi_message_add_tail(&transfer[0], &message);
82 spi_message_add_tail(&transfer[1], &message);
86 ret = spi_sync(flash->spi, &message);
93 if (retlen && message.actual_length > cmd_len)
94 *retlen += message.actual_length - cmd_len;
104 struct spi_message message; local
108 spi_message_init(&message);
118 spi_message_add_tail(&transfer[0], &message);
146 struct spi_message message; local
[all...]
/linux-master/lib/kunit/
H A Dassert.c33 static void kunit_assert_print_msg(const struct va_format *message, argument
36 if (message->fmt)
37 string_stream_add(stream, "\n%pV", message);
41 const struct va_format *message,
44 string_stream_add(stream, "%pV", message);
49 const struct va_format *message,
64 kunit_assert_print_msg(message, stream);
69 const struct va_format *message,
87 kunit_assert_print_msg(message, stream);
115 const struct va_format *message,
40 kunit_fail_assert_format(const struct kunit_assert *assert, const struct va_format *message, struct string_stream *stream) argument
48 kunit_unary_assert_format(const struct kunit_assert *assert, const struct va_format *message, struct string_stream *stream) argument
68 kunit_ptr_not_err_assert_format(const struct kunit_assert *assert, const struct va_format *message, struct string_stream *stream) argument
114 kunit_binary_assert_format(const struct kunit_assert *assert, const struct va_format *message, struct string_stream *stream) argument
142 kunit_binary_ptr_assert_format(const struct kunit_assert *assert, const struct va_format *message, struct string_stream *stream) argument
182 kunit_binary_str_assert_format(const struct kunit_assert *assert, const struct va_format *message, struct string_stream *stream) argument
233 kunit_mem_assert_format(const struct kunit_assert *assert, const struct va_format *message, struct string_stream *stream) argument
[all...]
/linux-master/drivers/misc/ibmasm/
H A Dlowlevel.c23 struct i2o_message *message; local
33 message = get_i2o_message(sp->base_address, mfa);
35 memcpy_toio(&message->header, &header, sizeof(struct i2o_header));
36 memcpy_toio(&message->data, command->buffer, command_size);
H A Ddot_command.c14 * Dispatch an incoming message to the specific handler for the message.
17 void ibmasm_receive_message(struct service_processor *sp, void *message, int message_size) argument
20 struct dot_command_header *header = (struct dot_command_header *)message;
25 size = get_dot_command_size(message);
34 ibmasm_receive_event(sp, message, size);
37 ibmasm_receive_command_response(sp, message, size);
40 ibmasm_receive_heartbeat(sp, message, size);
43 dev_err(sp->dev, "Received unknown message from service processor\n");
/linux-master/drivers/acpi/acpica/
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...]
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
/linux-master/arch/powerpc/include/asm/
H A Dmpic_msgr.h23 /* Get a message register
25 * @reg_num: the MPIC message register to get
27 * A pointer to the message register is returned. If
28 * the message register asked for is already in use, then
30 * with an actual message register, then ENODEV is returned.
35 /* Relinquish a message register
37 * @msgr: the message register to return
39 * Disables the given message register and marks it as free.
40 * After this call has completed successully the message
46 /* Enable a message registe
73 mpic_msgr_write(struct mpic_msgr *msgr, u32 message) argument
[all...]
/linux-master/sound/firewire/motu/
H A DMakefile7 motu-protocol-v1.o motu-register-dsp-message-parser.o \
8 motu-command-dsp-message-parser.o
/linux-master/drivers/hv/
H A Dhv_kvp.c69 * only one message at a time.
80 struct hv_kvp_msg *kvp_msg; /* current message */
201 struct hv_kvp_msg *message = (struct hv_kvp_msg *)msg; local
205 if (len < sizeof(*message))
214 return kvp_handle_handshake(message);
228 data = &message->body.kvp_enum_data;
241 * We use the message header information from
244 error = message->error;
253 kvp_respond_to_host(message, error);
376 struct hv_kvp_msg *message; local
[all...]
/linux-master/tools/include/linux/
H A Dcompiler-gcc.h22 # define __compiletime_error(message) __attribute__((error(message)))
/linux-master/tools/crypto/ccp/
H A Ddbc_cli.py14 errno.ENOENT: "Not implemented or message failure",
51 parser.add_argument("--message", choices=messages.keys(), help="Message index")
52 parser.add_argument("--data", help="Argument to pass to message")
110 if not args.message or args.message.startswith("set"):
111 raise ValueError("Invalid message %s" % args.message)
113 param, signature = process_param(d, messages[args.message], sig)
123 if not args.message or args.message
[all...]
/linux-master/sound/soc/intel/common/
H A Dsst-dsp.h54 void sst_dsp_inbox_write(struct sst_dsp *sst, void *message, size_t bytes);
55 void sst_dsp_inbox_read(struct sst_dsp *sst, void *message, size_t bytes);
56 void sst_dsp_outbox_write(struct sst_dsp *sst, void *message, size_t bytes);
57 void sst_dsp_outbox_read(struct sst_dsp *sst, void *message, size_t bytes);

Completed in 349 milliseconds

1234567891011>>