/Zephyr-latest/scripts/ci/stats/ |
D | merged_prs.py | 149 query = f'repo:{args.repo} merged:{args.range} is:pr is:closed sort:updated-desc base:main' 150 prs = gh.search_issues(query=f'{query}')
|
/Zephyr-latest/subsys/debug/coredump/ |
D | coredump_core.c | 249 if (backend_api->query == NULL) { in coredump_query() 252 ret = backend_api->query(query_id, arg); in coredump_query()
|
D | coredump_backend_logging.c | 125 .query = coredump_logging_backend_query,
|
/Zephyr-latest/samples/net/sockets/coap_server/ |
D | README.rst | 29 /query 32 /location-query
|
/Zephyr-latest/subsys/mgmt/mcumgr/grp/os_mgmt/src/ |
D | os_mgmt.c | 454 struct zcbor_string query = { 0 }; in os_mgmt_bootloader_info() local 466 .query = &query, in os_mgmt_bootloader_info() 472 ZCBOR_MAP_DECODE_KEY_DECODER("query", zcbor_tstr_decode, &query), in os_mgmt_bootloader_info() 503 "query") && (sizeof("mode") - 1) == query.len && in os_mgmt_bootloader_info() 504 memcmp("mode", query.value, query.len) == 0) { in os_mgmt_bootloader_info()
|
/Zephyr-latest/doc/services/device_mgmt/smp_groups/ |
D | smp_group_0.rst | 870 (str,opt)"query" : (str) 879 | "query" | Is string representing query for parameters, | 880 | | with no restrictions how the query looks like | 881 | | as processing of query is left for bootloader | 883 | | If there is no query, then response will | 901 In case when no "query" has been provided in request, 919 In case when "query" is provided: 934 | <response> | Response to "query". This is optional and may be left out in case when | 935 | | query yields no response, SMP version 2 error code of | 938 | | a map, that is dependent on bootloader backednd and query. | [all …]
|
/Zephyr-latest/tests/subsys/mgmt/mcumgr/os_mgmt_info/src/ |
D | main.c | 870 uint8_t query[QUERY_BUFFER_SIZE]; in ZTEST() local 894 sprintf(query, "%s%s%s", query_processor, query_kernel_release, query_os); in ZTEST() 895 ok = create_mcumgr_format_packet(zse, query, buffer, buffer_out, &buffer_size); in ZTEST() 935 uint8_t query[QUERY_BUFFER_SIZE]; in ZTEST() local 959 sprintf(query, "%s%s%s", query_kernel_version, query_node_name, query_kernel_version); in ZTEST() 960 ok = create_mcumgr_format_packet(zse, query, buffer, buffer_out, &buffer_size); in ZTEST() 1002 uint8_t query[QUERY_BUFFER_SIZE]; in ZTEST() local 1031 sprintf(query, "%sM", query_kernel_version); in ZTEST() 1032 ok = create_mcumgr_format_packet(zse, query, buffer, buffer_out, &buffer_size); in ZTEST() 1073 uint8_t query[QUERY_BUFFER_SIZE]; in ZTEST() local [all …]
|
/Zephyr-latest/samples/subsys/sip_svc/ |
D | README.rst | 10 performs a voltage value query from Secure Device Manager in Intel Agilex 19 intel Agilex SoC FPGA query the voltage levels in Secure Device Manager.
|
/Zephyr-latest/samples/net/sockets/coap_server/src/ |
D | query.c | 98 COAP_RESOURCE_DEFINE(query, coap_server,
|
/Zephyr-latest/kernel/ |
D | obj_core.c | 201 if ((desc == NULL) || (desc->query == NULL)) { in k_obj_core_stats_query() 211 rv = desc->query(obj_core, stats); in k_obj_core_stats_query()
|
D | init.c | 162 .query = z_cpu_stats_query, 172 .query = z_kernel_stats_query,
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | dns_resolve.rst | 17 If a CNAME is received, the DNS resolver will create another DNS query.
|
/Zephyr-latest/include/zephyr/debug/ |
D | coredump.h | 244 coredump_backend_query_t query; member
|
/Zephyr-latest/subsys/net/l2/ethernet/gptp/ |
D | gptp_messages.c | 353 struct gptp_hdr *hdr, *query; in gptp_prepare_pdelay_resp() local 370 query = GPTP_HDR(req); in gptp_prepare_pdelay_resp() 376 hdr->sequence_id = query->sequence_id; in gptp_prepare_pdelay_resp() 377 hdr->domain_number = query->domain_number; in gptp_prepare_pdelay_resp() 378 hdr->correction_field = query->correction_field; in gptp_prepare_pdelay_resp() 402 &query->port_id, sizeof(struct gptp_port_identity)); in gptp_prepare_pdelay_resp()
|
/Zephyr-latest/include/zephyr/kernel/ |
D | obj_core.h | 99 int (*query)(struct k_obj_core *obj_core, void *stats); member
|
/Zephyr-latest/samples/net/stats/ |
D | README.rst | 10 This sample shows how to query (and display) network statistics from a user
|
/Zephyr-latest/tests/net/lib/lwm2m/block_transfer/src/ |
D | main.c | 230 const uint8_t *query = "query"; in ZTEST_F() local 232 ret = coap_packet_append_option(&msg->cpkt, COAP_OPTION_URI_QUERY, query, strlen(query)); in ZTEST_F()
|
/Zephyr-latest/doc/services/retention/ |
D | blinfo.rst | 8 and allowing applications to query it. It has an optional feature of organising 91 application can call this to query the information from the bootloader. This
|
/Zephyr-latest/subsys/mgmt/osdp/ |
D | Kconfig.cp | 41 The Control Panel must query the Peripheral Device periodically to
|
/Zephyr-latest/scripts/footprint/ |
D | upload_data.py | 104 result = client.query(f"select * from kernel where commit = '{hash}';")
|
/Zephyr-latest/subsys/net/l2/ethernet/ |
D | arp.c | 729 struct net_arp_hdr *hdr, *query; in arp_prepare_reply() local 741 query = NET_ARP_HDR(req); in arp_prepare_reply() 758 net_ipv4_addr_copy_raw(hdr->dst_ipaddr, query->src_ipaddr); in arp_prepare_reply() 759 net_ipv4_addr_copy_raw(hdr->src_ipaddr, query->dst_ipaddr); in arp_prepare_reply()
|
/Zephyr-latest/subsys/net/lib/sockets/ |
D | Kconfig | 49 query is considered timeout. Minimum timeout is 1 second and 63 which DNS query is re-tried. If there is no reply, the backoff 64 interval is doubled and query is retried. 68 within 5 secs, a 2nd query is done with timeout set to 10 sec (5 * 2). 69 If no reply is received, a 3rd query is done after 15 sec (5 + 5 * 2),
|
/Zephyr-latest/doc/connectivity/usb/pd/ |
D | ucds.rst | 72 This callback is used by the subsystem to query if a certain action can be taken: 162 This callback is used by the subsystem to query if a certain action can be taken:
|
/Zephyr-latest/subsys/net/lib/dns/ |
D | Kconfig | 65 int "Max length of a DNS query" 69 Max length of a DNS query that should be looked up including the 70 trailing 0. So e.g. "example.com" would have a query len of 12.
|
/Zephyr-latest/subsys/net/ip/ |
D | net_private.h | 160 const char *query,
|