Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 98) sorted by relevance

1234

/subsys/logging/
A Dlog_output.c358 newline_print(output, flags); in hexdump_line_print()
361 print_formatted(output, " "); in hexdump_line_print()
366 print_formatted(output, " "); in hexdump_line_print()
376 print_formatted(output, "|"); in hexdump_line_print()
380 print_formatted(output, " "); in hexdump_line_print()
386 print_formatted(output, "%c", in hexdump_line_print()
389 print_formatted(output, " "); in hexdump_line_print()
549 len += print_formatted(output, in syslog_print()
603 output, in prefix_print()
637 newline_print(output, flags); in postfix_print()
[all …]
A Dlog_output_dict.c15 void log_dict_output_msg_process(const struct log_output *output, in log_dict_output_msg_process() argument
31 log_output_write(output->func, (uint8_t *)&output_hdr, sizeof(output_hdr), in log_dict_output_msg_process()
32 (void *)output->control_block->ctx); in log_dict_output_msg_process()
38 log_output_write(output->func, data, len, (void *)output->control_block->ctx); in log_dict_output_msg_process()
43 log_output_write(output->func, data, len, (void *)output->control_block->ctx); in log_dict_output_msg_process()
46 log_output_flush(output); in log_dict_output_msg_process()
49 void log_dict_output_dropped_process(const struct log_output *output, uint32_t cnt) in log_dict_output_dropped_process() argument
56 log_output_write(output->func, (uint8_t *)&msg, sizeof(msg), in log_dict_output_dropped_process()
57 (void *)output->control_block->ctx); in log_dict_output_dropped_process()
A Dlog_output_custom.c13 void log_custom_output_msg_process(const struct log_output *output, struct log_msg *msg, in log_custom_output_msg_process() argument
17 log_custom_format_func(output, msg, flags); in log_custom_output_msg_process()
28 int log_custom_timestamp_print(const struct log_output *output, const log_timestamp_t timestamp, in log_custom_timestamp_print() argument
34 return log_timestamp_format_func(output, timestamp, printer); in log_custom_timestamp_print()
A DKconfig.formatting25 bool "MIPI SyS-T format output"
29 Enable MIPI SyS-T format output for the logger system.
69 Enable this option to output the log message source ID
107 image file in log output. This reduces the size required to store
108 the log output when there are long format strings to be logged.
126 bool "Clean log output"
131 another one and output is clean, not interleaved. However, enabling
A DKconfig84 - "Log all prints": All log prints are output, i.e., rate limiting is ignored.
94 All log prints using rate-limited macros are output as normal logs.
99 All log prints using rate-limited macros are dropped (no output).
/subsys/mgmt/mcumgr/grp/os_mgmt/src/
A Dos_mgmt.c615 .output = output, in os_mgmt_info()
717 rc = snprintf(output, (sizeof(output) - output_length), "Zephyr"); in os_mgmt_info()
732 rc = snprintf(&output[output_length], (sizeof(output) - output_length), in os_mgmt_info()
736 rc = snprintf(&output[output_length], (sizeof(output) - output_length), in os_mgmt_info()
740 rc = snprintf(&output[output_length], (sizeof(output) - output_length), in os_mgmt_info()
756 rc = snprintf(&output[output_length], (sizeof(output) - output_length), in os_mgmt_info()
759 rc = snprintf(&output[output_length], (sizeof(output) - output_length), in os_mgmt_info()
774 rc = snprintf(&output[output_length], (sizeof(output) - output_length), in os_mgmt_info()
789 rc = snprintf(&output[output_length], (sizeof(output) - output_length), in os_mgmt_info()
805 rc = snprintf(&output[output_length], (sizeof(output) - output_length), in os_mgmt_info()
[all …]
/subsys/mgmt/mcumgr/grp/fs_mgmt/src/
A Dfs_mgmt_hash_checksum_sha256.c33 static int hash_finish(hash_ctx_t *, uint8_t *output);
36 static int fs_mgmt_hash_checksum_sha256(struct fs_file_t *file, uint8_t *output, in fs_mgmt_hash_checksum_sha256() argument
47 memset(output, 0, SHA256_DIGEST_SIZE); in fs_mgmt_hash_checksum_sha256()
75 if (hash_finish(&hash_ctx, output) == SUCCESS_VALUE) { in fs_mgmt_hash_checksum_sha256()
113 static int hash_finish(psa_hash_operation_t *ctx, uint8_t *output) in hash_finish() argument
117 return psa_hash_finish(ctx, output, SHA256_DIGEST_SIZE, &output_length); in hash_finish()
135 static int hash_finish(mbedtls_sha256_context *ctx, uint8_t *output) in hash_finish() argument
137 return mbedtls_sha256_finish(ctx, output); in hash_finish()
A Dfs_mgmt_hash_checksum_crc32.c19 static int fs_mgmt_hash_checksum_crc32(struct fs_file_t *file, uint8_t *output, in fs_mgmt_hash_checksum_crc32() argument
48 memcpy(output, &crc32, sizeof(crc32)); in fs_mgmt_hash_checksum_crc32()
/subsys/bluetooth/mesh/
A Dprov.c91 if (!output) { in check_output_auth()
95 if (!(bt_mesh_prov->output_actions & output)) { in check_output_auth()
156 if (output == BT_MESH_BLINK || output == BT_MESH_BEEP || output == BT_MESH_VIBRATE || in get_auth_number()
174 bt_mesh_output_action_t output; in bt_mesh_prov_auth() local
197 output = output_action(action); in bt_mesh_prov_auth()
200 if (output == BT_MESH_DISPLAY_STRING) { in bt_mesh_prov_auth()
211 err = check_output_auth(output, size); in bt_mesh_prov_auth()
216 if (output == BT_MESH_DISPLAY_STRING) { in bt_mesh_prov_auth()
225 return bt_mesh_prov->output_number(output, in bt_mesh_prov_auth()
255 output = BT_MESH_DISPLAY_NUMBER; in bt_mesh_prov_auth()
[all …]
/subsys/bluetooth/host/
A Ddata.c64 size_t bt_data_serialize(const struct bt_data *input, uint8_t *output) in bt_data_serialize() argument
71 CHECKIF(output == NULL) { in bt_data_serialize()
79 output[0] = data_len; in bt_data_serialize()
80 output[1] = input->type; in bt_data_serialize()
82 memcpy(&output[2], input->data, ad_data_len); in bt_data_serialize()
/subsys/logging/backends/
A DKconfig.uart10 When enabled backend is using UART to output logs.
29 output one byte at a time.
46 prompt "Dictionary mode output format"
52 Dictionary-based logging output in binary.
57 Dictionary-based logging output in hexadecimal. Supported only for UART backend.
A Dlog_backend_uart.c30 const struct log_output *output; member
134 log_output_func(ctx->output, &msg->log, flags); in process()
155 log_output_ctx_set(ctx->output, (void *)ctx); in log_backend_uart_init()
206 log_backend_std_panic(ctx->output); in panic()
214 log_dict_output_dropped_process(ctx->output, cnt); in dropped()
216 log_backend_std_dropped(ctx->output, cnt); in dropped()
245 .output = &lbu_output##__VA_ARGS__, \
A DKconfig.rtt59 int "Size of the output buffer"
62 Buffer is used by log_output module for preparing output data (e.g.
85 int "Buffer number used for logger output."
89 Select index of up-buffer used for logger output, by default it uses
93 int "Size of reserved up-buffer for logger output."
97 Specify reserved size of up-buffer used for logger output.
A DKconfig.xtensa_sim13 int "Size of the output buffer"
17 Buffer is used by log_output module for preparing output data (e.g.
A DKconfig.semihost14 int "Size of reserved up-buffer for logger output."
17 Specify reserved size of up-buffer used for logger output.
A Dlog_backend_ws.c35 static int ws_send_all(int sock, const char *output, size_t len) in ws_send_all() argument
40 ret = zsock_send(sock, output, len, ZSOCK_MSG_DONTWAIT); in ws_send_all()
50 output += ret; in ws_send_all()
A DKconfig.swo23 int "Set SWO output frequency"
26 Set SWO output frequency. Value 0 will select maximum frequency
44 Use UART-like NRZ encoding. This is the most common option, but requires the SWO output
A DKconfig.spinel17 int "Size of reserved up-buffer for logger output."
20 Specify reserved size of up-buffer used for logger output.
/subsys/retention/
A Dretention.c84 static int retention_checksum(const struct device *dev, uint32_t *output) in retention_checksum() argument
96 *output = 0; in retention_checksum()
108 *output = (uint32_t)crc8(buffer, read_size, 0x12, in retention_checksum()
109 (uint8_t)*output, false); in retention_checksum()
111 *output = (uint32_t)crc16_itu_t((uint16_t)*output, in retention_checksum()
114 *output = crc32_ieee_update(*output, buffer, read_size); in retention_checksum()
/subsys/mgmt/mcumgr/grp/shell_mgmt/
A DKconfig22 the dummy backend to execute shell commands and capture the output to
28 will be returned from command output, if your output gets cut, then
41 int "Shell output buffer size (Size of dummy buffer size)"
/subsys/net/ip/
A DKconfig.debug25 each allocation. This can produce lot of output so it is disabled by
51 module-help = Enables core network stack code to output debug messages.
57 module-help = Enables network interface code to output debug messages.
63 module-help = Enables network traffic class code to output debug messages.
69 module-help = Enables utility functions to output debug messages.
/subsys/tracing/include/
A Dtracing_backend.h32 void (*output)(const struct tracing_backend *backend, member
81 backend->api->output(backend, data, length); in tracing_backend_output()
/subsys/secure_storage/src/its/transform/
A Daead.c14 const void *input, size_t output_size, void *output, in psa_aead_crypt() argument
26 uint8_t *output, size_t output_size, size_t *output_len); in psa_aead_crypt()
51 add_data_len, input, input_len, output, output_size, output_len); in psa_aead_crypt()
/subsys/net/l2/ethernet/gptp/
A Dgptp_user_api.c79 char *gptp_sprint_clock_id(const uint8_t *clk_id, char *output, size_t output_len) in gptp_sprint_clock_id() argument
81 return net_sprint_ll_addr_buf(clk_id, 8, output, output_len); in gptp_sprint_clock_id()
/subsys/bluetooth/audio/
A DKconfig.vocs28 int "Volume Offset Control Service max output description size"
32 This option sets the maximum output description size in octets.

Completed in 50 milliseconds

1234