| /subsys/bluetooth/host/ |
| A D | adv.c | 452 if (param->options & BT_LE_ADV_OPT_EXT_ADV) { in valid_adv_param() 801 (options & BT_LE_ADV_OPT_FILTER_CONN)) { in get_filter_policy() 1044 adv->options = param->options; in le_ext_adv_param_set() 1091 if (param->options & BT_LE_ADV_OPT_CODED) { in le_ext_adv_param_set() 1195 param->options & BT_LE_ADV_OPT_EXT_ADV); in le_ext_adv_param_set() 1394 uint32_t options = 0; in adv_get_options() local 1397 options |= _BT_LE_ADV_OPT_ONE_TIME; in adv_get_options() 1401 options |= _BT_LE_ADV_OPT_CONNECTABLE; in adv_get_options() 1405 options |= BT_LE_ADV_OPT_USE_IDENTITY; in adv_get_options() 1408 return options; in adv_get_options() [all …]
|
| A D | scan.c | 210 if (!(scan_param->options & BT_LE_SCAN_OPT_NO_1M)) { in start_le_scan_ext() 218 if (scan_param->options & BT_LE_SCAN_OPT_CODED) { in start_le_scan_ext() 283 scan_param->options & BT_LE_SCAN_OPT_FILTER_DUPLICATE, in start_le_scan_ext() 310 param->options & BT_LE_SCAN_OPT_FILTER_ACCEPT_LIST) { in start_le_scan_legacy() 335 param->options & BT_LE_SCAN_OPT_FILTER_DUPLICATE); in start_le_scan_legacy() 361 .options = BT_LE_SCAN_OPT_FILTER_DUPLICATE, in select_scan_params() 373 .options = BT_LE_SCAN_OPT_FILTER_DUPLICATE, in select_scan_params() 382 scan_param->options |= BT_LE_SCAN_OPT_CODED; in select_scan_params() 1946 if (param->options & in bt_le_per_adv_sync_create() 1948 cp->options |= in bt_le_per_adv_sync_create() [all …]
|
| /subsys/net/lib/sockets/ |
| A D | sockets_tls.c | 214 } options; member 456 tls->options.verify_level = -1; in tls_alloc() 479 tls->options.dtls_cid.cid_len = 0; in tls_alloc() 512 memcpy(&target_tls->options, &source_tls->options, in tls_clone() 513 sizeof(target_tls->options)); in tls_clone() 1413 context->options.alpn_list); in tls_mbedtls_init() 2054 context->options.role = *role; in tls_opt_dtls_role_set() 2358 timeout = ctx->options.timeout_tx; in send_tls() 2651 timeout = ctx->options.timeout_rx; in recv_tls() 2748 timeout = ctx->options.timeout_rx; in recvfrom_dtls_common() [all …]
|
| /subsys/net/lib/zperf/ |
| A D | zperf_tcp_uploader.c | 153 sock = zperf_prepare_upload_sock(¶m->peer_addr, param->options.tos, in zperf_tcp_upload() 154 param->options.priority, param->options.tcp_nodelay, in zperf_tcp_upload() 207 sock = zperf_prepare_upload_sock(¶m.peer_addr, param.options.tos, in tcp_upload_async_work() 208 param.options.priority, param.options.tcp_nodelay, in tcp_upload_async_work() 217 if (param.options.report_interval_ms > 0) { in tcp_upload_async_work() 218 uint32_t report_interval = param.options.report_interval_ms; in tcp_upload_async_work() 308 k_thread_priority_set(tid, ses->async_upload_ctx.param.options.thread_priority); in zperf_tcp_upload_async() 314 ses->wait_for_start = param->options.wait_for_start; in zperf_tcp_upload_async()
|
| A D | zperf_shell.c | 833 (param->options.wait_for_start), (0))) { in execute_upload() 982 param.options.priority = -1; in shell_cmd_upload() 1001 param.options.tos = tos; in shell_cmd_upload() 1017 param.options.tcp_nodelay = 1; in shell_cmd_upload() 1034 param.options.wait_for_start = true; in shell_cmd_upload() 1042 if (param.options.priority < 0 || in shell_cmd_upload() 1043 param.options.priority > UINT8_MAX) { in shell_cmd_upload() 1254 param.options.tos = tos; in shell_cmd_upload2() 1270 param.options.tcp_nodelay = 1; in shell_cmd_upload2() 1287 param.options.wait_for_start = true; in shell_cmd_upload2() [all …]
|
| /subsys/net/ip/ |
| A D | net_context.c | 93 return context->options.reuseaddr; in net_context_is_reuseaddr_set() 102 return context->options.reuseport; in net_context_is_reuseport_set() 115 return context->options.ipv6_v6only; in net_context_is_v6only_set() 126 return context->options.recv_pktinfo; in net_context_is_recv_pktinfo_set() 137 return context->options.recv_hoplimit; in net_context_is_recv_hoplimit_set() 582 contexts[i].options.rcvtimeo = K_FOREVER; in net_context_get() 585 contexts[i].options.sndtimeo = K_FOREVER; in net_context_get() 589 contexts[i].options.ipv6_v6only = true; in net_context_get() 592 contexts[i].options.ipv4_mcast_loop = in net_context_get() 613 contexts[i].options.ipv6_mcast_loop = in net_context_get() [all …]
|
| /subsys/net/lib/lwm2m/ |
| A D | lwm2m_obj_gateway.c | 153 struct coap_option options[4]; in lwm2m_gw_handle_req() local 156 ret = coap_find_options(msg->in.in_cpkt, COAP_OPTION_URI_PATH, options, in lwm2m_gw_handle_req() 157 ARRAY_SIZE(options)); in lwm2m_gw_handle_req() 175 if (prefix_len != options[0].len) { in lwm2m_gw_handle_req() 178 if (strncmp(options[0].value, prefix, prefix_len) != 0) { in lwm2m_gw_handle_req() 186 ret = coap_options_to_path(&options[1], ret - 1, &msg->path); in lwm2m_gw_handle_req()
|
| /subsys/bluetooth/host/shell/ |
| A D | bt.c | 1719 param.options |= options; in cmd_active_scan_on() 1748 param.options |= options; in cmd_passive_scan_on() 1791 uint32_t options = 0; in cmd_scan() local 2116 param.options = 0U; in cmd_advertise() 2764 param.options = 0; in cmd_per_adv_param() 2908 create_params.options = options; in cmd_per_adv_sync_create() 2988 param.options = 0; in cmd_past_subscribe() 2994 param.options |= in cmd_past_subscribe() 2997 param.options |= in cmd_past_subscribe() 3000 param.options |= in cmd_past_subscribe() [all …]
|
| /subsys/net/lib/dhcpv6/ |
| A D | dhcpv6.c | 442 if (options->clientid) { in dhcpv6_calculate_message_size() 447 if (options->serverid) { in dhcpv6_calculate_message_size() 457 if (options->ia_na) { in dhcpv6_calculate_message_size() 462 if (options->iaaddr) { in dhcpv6_calculate_message_size() 467 if (options->ia_pd) { in dhcpv6_calculate_message_size() 472 if (options->iaprefix) { in dhcpv6_calculate_message_size() 499 if (options->clientid) { in dhcpv6_add_options() 507 if (options->serverid) { in dhcpv6_add_options() 523 if (options->ia_na) { in dhcpv6_add_options() 528 if (options->iaaddr) { in dhcpv6_add_options() [all …]
|
| /subsys/net/lib/dhcpv4/ |
| A D | dhcpv4_server.c | 769 if (dhcpv4_find_ip_lease_time_option(options, optlen, in dhcpv4_get_lease_time() 949 struct dhcp_msg *msg, uint8_t *options, in dhcpv4_handle_discover() argument 1008 ret = dhcpv4_find_requested_ip_option(options, optlen, in dhcpv4_handle_discover() 1109 struct dhcp_msg *msg, uint8_t *options, in dhcpv4_handle_request() argument 1142 ret = dhcpv4_find_requested_ip_option(options, optlen, in dhcpv4_handle_request() 1221 options, optlen); in dhcpv4_handle_request() 1268 options, optlen); in dhcpv4_handle_request() 1286 struct dhcp_msg *msg, uint8_t *options, in dhcpv4_handle_decline() argument 1310 ret = dhcpv4_find_requested_ip_option(options, optlen, in dhcpv4_handle_decline() 1339 struct dhcp_msg *msg, uint8_t *options, in dhcpv4_handle_release() argument [all …]
|
| A D | Kconfig | 34 If set, custom callbacks for arbitrary DHCP options 36 DHCP options not used by the rest of the system. 39 int "Maximum number of requested options" 44 Maximum number of requested options that can be added to the 45 DHCPv4 request message. The options are added using the 93 bool "Print information about ignored options" 95 If this option is set, then we print information about options that we 97 options.
|
| /subsys/mgmt/mcumgr/grp/os_mgmt_client/ |
| A D | Kconfig | 5 # of MCUmgr client subsystem and provides Kconfig options to configure 9 # MCUMGR_GRP_OS_CLIENT_ -- general group options; 11 # When adding Kconfig options, that control the same feature,
|
| /subsys/mgmt/mcumgr/grp/img_mgmt_client/ |
| A D | Kconfig | 5 # of MCUmgr client subsystem and provides Kconfig options to configure 9 # MCUMGR_GRP_IMG_CLIENT_ -- general group options; 11 # When adding Kconfig options, that control the same feature,
|
| /subsys/ |
| A D | Kconfig | 1 # Subsystem configuration options 62 bool "Make tristate Kconfig options and an 'm' selection available" 66 loadable extension, can use tristate Kconfig options. For this to work 69 using 'm' for tristate Kconfig options.
|
| /subsys/portability/cmsis_rtos_v2/ |
| A D | thread_flags.c | 87 uint32_t osThreadFlagsWait(uint32_t flags, uint32_t options, uint32_t timeout) in osThreadFlagsWait() argument 114 if (options & osFlagsWaitAll) { in osThreadFlagsWait() 176 if (!(options & osFlagsNoClear)) { in osThreadFlagsWait()
|
| A D | event_flags.c | 103 uint32_t osEventFlagsWait(osEventFlagsId_t ef_id, uint32_t flags, uint32_t options, in osEventFlagsWait() argument 130 if (options & osFlagsWaitAll) { in osEventFlagsWait() 149 if (!(options & osFlagsNoClear)) { in osEventFlagsWait()
|
| /subsys/mgmt/mcumgr/grp/stat_mgmt/ |
| A D | Kconfig | 6 # of MCUmgr subsystem and provides Kconfig options to configure 10 # MCUMGR_GRP_STAT_ -- general group options; 12 # When adding Kconfig options, that control the same feature,
|
| /subsys/mgmt/mcumgr/grp/shell_mgmt/ |
| A D | Kconfig | 6 # of MCUmgr subsystem and provides Kconfig options to configure 10 # MCUMGR_GRP_SHELL_ -- general group options; 12 # When adding Kconfig options, that control the same feature, 46 Enabling this options brings back legacy behaviour where the shell
|
| /subsys/bluetooth/host/classic/shell/ |
| A D | bredr.c | 221 uint8_t options; member 394 if (br_server->options & BT_L2CAP_BR_SERVER_OPT_STREAM) { in l2cap_accept() 402 } else if (br_server->options & BT_L2CAP_BR_SERVER_OPT_FC) { in l2cap_accept() 406 } else if (br_server->options & BT_L2CAP_BR_SERVER_OPT_RET) { in l2cap_accept() 432 l2cap_server.options = 0; in cmd_l2cap_register() 437 l2cap_server.options |= BT_L2CAP_BR_SERVER_OPT_RET; in cmd_l2cap_register() 439 l2cap_server.options |= BT_L2CAP_BR_SERVER_OPT_FC; in cmd_l2cap_register() 441 l2cap_server.options |= BT_L2CAP_BR_SERVER_OPT_ERET; in cmd_l2cap_register() 443 l2cap_server.options |= BT_L2CAP_BR_SERVER_OPT_STREAM; in cmd_l2cap_register() 452 l2cap_server.options |= BT_L2CAP_BR_SERVER_OPT_HOLD_CREDIT; in cmd_l2cap_register() [all …]
|
| /subsys/bluetooth/audio/ |
| A D | Kconfig.mctl | 1 # Bluetooth Audio - Media control configuration options 47 This options enables support for control of a remote media player. 56 This options enables support for accessing objects (tracks, groups,
|
| /subsys/mgmt/mcumgr/mgmt/ |
| A D | Kconfig | 5 # The Kconfig is dedicated to mgmt subsystem of MCUmgr. Kconfig options defined 9 # All Kconfig options defined with this file should begin with prefix: 18 notifications, which must be enabled by selecting other Kconfig options.
|
| /subsys/mgmt/mcumgr/smp/ |
| A D | Kconfig | 6 # subsystem and provides Kconfig options to control aspects of 11 # MCUMGR_SMP_ -- for general SMP options; 12 # MCUMGR_SMP_CBOR -- for CBOR encoding specific options; 34 is auto generated from MCUMGR_SMP_CBOR_MIN_DECODING_LEVEL_? options. 90 is auto generated from MCUMGR_SMP_CBOR_MIN_ENCODING_LEVEL_? options.
|
| /subsys/mgmt/mcumgr/transport/ |
| A D | Kconfig | 6 # subsystem and provides Kconfig options to control aspects of 8 # options belonging to transport specifically. 11 # MCUMGR_TRANSPORT_ -- general transport options;
|
| /subsys/emul/ |
| A D | Kconfig | 1 # Emulator configuration options 7 # Emulator options
|
| /subsys/net/lib/coap/ |
| A D | coap.c | 764 if (options) { in coap_packet_parse() 798 option = num < opt_num ? &options[num++] : NULL; in coap_packet_parse() 938 &options[num]); in coap_find_options() 943 if (code == options[num].delta) { in coap_find_options() 1090 struct coap_option *options, in coap_uri_path_match() argument 1097 if (options[i].delta != COAP_OPTION_URI_PATH) { in coap_uri_path_match() 1112 if (options[i].len != strlen(path[j])) { in coap_uri_path_match() 1116 if (memcmp(options[i].value, path[j], options[i].len)) { in coap_uri_path_match() 1128 if (options[i].delta == COAP_OPTION_URI_PATH) { in coap_uri_path_match() 1182 struct coap_option *options, in coap_handle_request_len() argument [all …]
|