Lines Matching refs:match

1918 	struct coap_reply *match;  member
1937 { .id = 100, .type = COAP_TYPE_ACK, .match = &matches[1], in ZTEST()
1940 { .id = 101, .type = COAP_TYPE_ACK, .match = &matches[2], in ZTEST()
1944 { .id = 101, .type = COAP_TYPE_ACK, .match = NULL, in ZTEST()
1948 { .id = 100, .type = COAP_TYPE_ACK, .match = NULL, in ZTEST()
1952 { .id = 101, .type = COAP_TYPE_ACK, .match = NULL, in ZTEST()
1956 { .id = 101, .type = COAP_TYPE_ACK, .match = NULL, in ZTEST()
1959 { .id = 102, .type = COAP_TYPE_ACK, .match = NULL, in ZTEST()
1963 { .id = 101, .type = COAP_TYPE_CON, .match = &matches[1], in ZTEST()
1966 { .id = 101, .type = COAP_TYPE_CON, .match = &matches[2], in ZTEST()
1970 { .id = 102, .type = COAP_TYPE_CON, .match = &matches[2], in ZTEST()
1974 { .id = 101, .type = COAP_TYPE_CON, .match = NULL, in ZTEST()
1978 { .id = 100, .type = COAP_TYPE_CON, .match = NULL, in ZTEST()
1982 { .id = 100, .type = COAP_TYPE_CON, .match = NULL, in ZTEST()
1986 { .id = 100, .type = COAP_TYPE_CON, .match = NULL, in ZTEST()
1989 { .id = 101, .type = COAP_TYPE_CON, .match = NULL, in ZTEST()
1992 { .id = 100, .type = COAP_TYPE_ACK, .match = NULL, in ZTEST()
1995 { .id = 101, .type = COAP_TYPE_ACK, .match = NULL, in ZTEST()
1998 { .id = 100, .type = COAP_TYPE_RESET, .match = &matches[1], in ZTEST()
2001 { .id = 101, .type = COAP_TYPE_RESET, .match = &matches[2], in ZTEST()
2004 { .id = 102, .type = COAP_TYPE_RESET, .match = NULL, in ZTEST()
2011 struct coap_reply *match; in ZTEST() local
2020 match = coap_response_received(&response_pkt, &from, matches, in ZTEST()
2022 if (response->match != NULL) { in ZTEST()
2023 zassert_not_null(match, "Did not found a response match when expected"); in ZTEST()
2024 zassert_equal_ptr(response->match, match, in ZTEST()
2026 response - test_responses, match - matches); in ZTEST()
2028 zassert_is_null(match, in ZTEST()
2030 response - test_responses, match - matches); in ZTEST()