Searched refs:eptr (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/tests/modules/thrift/ThriftTest/src/ |
D | client.cpp | 198 std::exception_ptr eptr = nullptr; in ZTEST() local 203 eptr = std::current_exception(); in ZTEST() 205 zassert_not_equal(nullptr, eptr, "an exception was not thrown"); in ZTEST() 207 eptr = nullptr; in ZTEST() 211 eptr = std::current_exception(); in ZTEST() 213 zassert_not_equal(nullptr, eptr, "an exception was not thrown"); in ZTEST() 220 std::exception_ptr eptr = nullptr; in ZTEST() local 226 eptr = std::current_exception(); in ZTEST() 228 zassert_not_equal(nullptr, eptr, "an exception was not thrown"); in ZTEST() 230 eptr = nullptr; in ZTEST() [all …]
|
/Zephyr-latest/drivers/lora/ |
D | shell.c | 36 char *eptr; in parse_long() local 39 lval = strtol(arg, &eptr, 0); in parse_long() 40 if (*eptr != '\0') { in parse_long() 72 char *eptr; in parse_freq() local 75 val = strtoul(arg, &eptr, 0); in parse_freq() 76 if (*eptr != '\0') { in parse_freq()
|
/Zephyr-latest/tests/subsys/settings/fcb/src/ |
D | settings_test_fcb.c | 220 char *eptr; in c2_var_find() local 226 idx = strtoul(&name[6], &eptr, 10); in c2_var_find() 227 zassert_true(*eptr == '\0', "EOF"); in c2_var_find()
|