Home
last modified time | relevance | path

Searched refs:PW_CHECK_UINT_EQ (Results 1 – 16 of 16) sorted by relevance

/external/pigweed/pw_thread_threadx/
Dsleep.cc45 PW_CHECK_UINT_EQ(TX_SUCCESS, result); in sleep_for()
50 PW_CHECK_UINT_EQ(TX_SUCCESS, result); in sleep_for()
Dthread.cc91 PW_CHECK_UINT_EQ(TX_SUCCESS, thread_result, "Failed to terminate the thread"); in DeleteThread()
95 PW_CHECK_UINT_EQ(TX_SUCCESS, thread_result, "Failed to delete the thread"); in DeleteThread()
155 PW_CHECK_UINT_EQ(TX_SUCCESS, thread_result, "Failed to create the thread"); in Thread()
Dtest_threads.cc68 PW_CHECK_UINT_EQ(TX_SUCCESS, result, "Failed to delete thread"); in WaitUntilDetachedThreadsCleanedUp()
/external/pigweed/pw_sync_threadx/
Dcounting_semaphore.cc47 PW_CHECK_UINT_EQ(TX_SUCCESS, result); in try_acquire_for()
57 PW_CHECK_UINT_EQ(TX_SUCCESS, result); in try_acquire_for()
Dbinary_semaphore.cc47 PW_CHECK_UINT_EQ(TX_SUCCESS, result); in try_acquire_for()
57 PW_CHECK_UINT_EQ(TX_SUCCESS, result); in try_acquire_for()
Dtimed_mutex.cc46 PW_CHECK_UINT_EQ(TX_SUCCESS, result); in try_lock_for()
56 PW_CHECK_UINT_EQ(TX_SUCCESS, result); in try_lock_for()
/external/pigweed/pw_kvs/
Dflash_memory.cc75 PW_CHECK_UINT_EQ(address_sector_offset, 0u); in Erase()
92 PW_CHECK_UINT_EQ(address_alignment_offset, 0u); in Write()
94 PW_CHECK_UINT_EQ(size_alignment_offset, 0u); in Write()
/external/pigweed/pw_sync_embos/
Dtimed_mutex.cc45 PW_CHECK_UINT_EQ(1, lock_count, "Recursive locking is not permitted"); in try_lock_for()
/external/pigweed/pw_router/size_report/
Dbase.cc40 PW_CHECK_UINT_EQ(packet.magic, BasicPacket::kMagic, "Some CHECK logic"); in main()
Dstatic_router_with_one_route.cc71 PW_CHECK_UINT_EQ(packet.magic, BasicPacket::kMagic, "Some CHECK logic"); in main()
/external/pigweed/pw_assert/
Dassert_facade_test.cc170 TEST_F(AssertFail, UintEq1) { PW_CHECK_UINT_EQ(1, 2); } in TEST_F()
171 TEST_F(AssertPass, UintEq2) { PW_CHECK_UINT_EQ(2, 2); } in TEST_F()
172 TEST_F(AssertFail, UintEq3) { PW_CHECK_UINT_EQ(2, 1); } in TEST_F()
Ddocs.rst242 | PW_CHECK_UINT_EQ | unsigned int | a == b | %u |
/external/pigweed/pw_assert/public/pw_assert/
Dshort.h41 #define CHECK_UINT_EQ PW_CHECK_UINT_EQ
/external/pigweed/pw_assert/public/pw_assert/internal/
Dcheck_impl.h75 #define PW_CHECK_UINT_EQ(arga, argb, ...) _PW_CHECK_BINARY_CMP_IMPL(arga, ==, argb, unsigned int, "… macro
83 #define PW_DCHECK_UINT_EQ(...) if (!(PW_ASSERT_ENABLE_DEBUG)) {} else PW_CHECK_UINT_EQ(__VA_ARGS__)
/external/pigweed/pw_thread_freertos/
Dthread.cc175 PW_CHECK_UINT_EQ(result, pdPASS); in Thread()
/external/pigweed/pw_blob_store/
Dblob_store.cc34 PW_CHECK_UINT_EQ((write_buffer_size_alignment), 0); in Init()