/Zephyr-latest/lib/libc/minimal/include/ |
D | strings.h | 18 extern int strncasecmp(const char *s1, const char *s2, size_t n);
|
/Zephyr-latest/lib/libc/minimal/source/string/ |
D | strncasecmp.c | 11 strncasecmp(const char *s1, const char *s2, size_t n) in strncasecmp() function
|
/Zephyr-latest/lib/posix/options/ |
D | Kconfig.c_lib_ext | 10 stpcpy(), stpncpy(), strcasecmp(), strdup(), strfmon(), and strncasecmp(), strndup(), and
|
/Zephyr-latest/lib/libc/minimal/ |
D | CMakeLists.txt | 26 source/string/strncasecmp.c
|
/Zephyr-latest/subsys/net/l2/wifi/ |
D | wifi_shell.c | 994 if (!strncasecmp(state->optarg, "passive", 7)) { in wifi_scan_args_to_params() 996 } else if (!strncasecmp(state->optarg, "active", 6)) { in wifi_scan_args_to_params() 1271 if (!strncasecmp(argv[1], "reset", 5)) { in cmd_wifi_stats() 1277 } else if (!strncasecmp(argv[1], "help", 4)) { in cmd_wifi_stats() 1313 if (!strncasecmp(argv[1], "enable", 2)) { in cmd_wifi_11k() 1315 } else if (!strncasecmp(argv[1], "disable", 3)) { in cmd_wifi_11k() 1345 if ((argc != 1 && argc != 3) || (argc == 3 && !strncasecmp("ssid", argv[1], 4))) { in cmd_wifi_11k_neighbor_request() 1440 if (!strncasecmp(argv[1], "on", 2)) { in cmd_wifi_ps() 1442 } else if (!strncasecmp(argv[1], "off", 3)) { in cmd_wifi_ps() 1470 if (!strncasecmp(argv[1], "legacy", 6)) { in cmd_wifi_ps_mode() [all …]
|
/Zephyr-latest/scripts/coccinelle/ |
D | symbols.txt | 196 strncasecmp
|
/Zephyr-latest/tests/lib/c_lib/common/src/ |
D | main.c | 235 zassert_true((strncasecmp(buffer, "FFFFF", 3) < 0), "strncasecmp less ..."); in ZTEST() 236 zassert_true((strncasecmp(buffer, "DDDDD", 3) > 0), "strncasecmp equal ..."); in ZTEST() 237 zassert_true((strncasecmp(buffer, "EEEEE", 3) == 0), "strncasecmp greater ..."); in ZTEST() 238 zassert_true((strncasecmp(&test, &test, 1) == 0), "strncasecmp failed"); in ZTEST()
|
/Zephyr-latest/subsys/net/lib/dns/ |
D | dns_sd.c | 238 if (!(strncasecmp("_tcp", proto, DNS_SD_PROTO_SIZE) == 0 || in proto_is_valid() 239 strncasecmp("_udp", proto, DNS_SD_PROTO_SIZE) == 0)) { in proto_is_valid() 974 if (strncasecmp(rec_label, filt_label, in dns_sd_rec_match()
|
D | llmnr_responder.c | 492 if (!strncasecmp(hostname, result->data + 1, hostname_len) && in dns_read()
|
D | mdns_responder.c | 581 if (!strncasecmp(hostname, result->data + 1, hostname_len) && in dns_read()
|
/Zephyr-latest/samples/bluetooth/bap_broadcast_assistant/src/ |
D | main.c | 247 if (strncasecmp(substr, &str[pos], sub_str_len) == 0) { in is_substring()
|
/Zephyr-latest/samples/bluetooth/cap_acceptor/src/ |
D | cap_acceptor_broadcast.c | 652 if (strncasecmp(substr, &str[pos], sub_str_len) == 0) { in is_substring()
|
/Zephyr-latest/subsys/net/lib/shell/ |
D | iface.c | 599 if (!strncasecmp(argv[2], "random", 6)) { in cmd_net_set_mac()
|
/Zephyr-latest/subsys/net/lib/http/ |
D | http_client.c | 224 if (length >= len && strncasecmp(at, content_len, len) == 0) { in on_header_field()
|
D | http_server_http2.c | 1227 (strncasecmp(hdr_buf->name, header->name, hdr_buf->name_len) == 0)) { in check_user_request_headers_http2()
|
/Zephyr-latest/tests/net/lib/http_server/core/src/ |
D | main.c | 627 if (strncasecmp(header_buf.name, header->name, header_buf.name_len) == 0 && in expect_contains_header() 628 strncasecmp(header_buf.value, header->value, header_buf.value_len) == 0) { in expect_contains_header()
|
/Zephyr-latest/subsys/net/lib/websocket/ |
D | websocket.c | 180 if (length >= len && strncasecmp(at, ws_accept_str, len) == 0) { in on_header_field()
|
/Zephyr-latest/doc/services/portability/posix/option_groups/ |
D | index.rst | 98 strncasecmp(), yes
|
/Zephyr-latest/samples/bluetooth/bap_broadcast_sink/src/ |
D | main.c | 1163 if (strncasecmp(substr, &str[pos], sub_str_len) == 0) { in is_substring()
|
/Zephyr-latest/subsys/net/lib/zperf/ |
D | zperf_shell.c | 149 cmp = strncasecmp(suffix, *unit++, 1); in parse_number()
|
/Zephyr-latest/subsys/bluetooth/host/shell/ |
D | bt.c | 298 if (strncasecmp(substr, &str[pos], sub_str_len) == 0) { in is_substring()
|