Searched refs:test_snprintf (Results 1 – 2 of 2) sorted by relevance
/openthread-latest/third_party/mbedtls/repo/programs/test/ |
D | selftest.c | 177 static int test_snprintf(size_t n, const char *ref_buf, int ref_ret) in test_snprintf() function 199 return test_snprintf(0, "xxxxxxxxx", -1) != 0 || in run_test_snprintf() 200 test_snprintf(1, "", -1) != 0 || in run_test_snprintf() 201 test_snprintf(2, "1", -1) != 0 || in run_test_snprintf() 202 test_snprintf(3, "12", -1) != 0 || in run_test_snprintf() 203 test_snprintf(4, "123", 3) != 0 || in run_test_snprintf() 204 test_snprintf(5, "123", 3) != 0; in run_test_snprintf()
|
/openthread-latest/third_party/mbedtls/repo/tests/suites/ |
D | host_test.function | 280 static int test_snprintf(size_t n, const char *ref_buf, int ref_ret) 310 return test_snprintf(0, "xxxxxxxxx", -1) != 0 || 311 test_snprintf(1, "", -1) != 0 || 312 test_snprintf(2, "1", -1) != 0 || 313 test_snprintf(3, "12", -1) != 0 || 314 test_snprintf(4, "123", 3) != 0 || 315 test_snprintf(5, "123", 3) != 0;
|