MCPcopy Create free account
hub / github.com/apache/nuttx / rpmsg_test_memcmp

Function rpmsg_test_memcmp

drivers/rpmsg/rpmsg_test.c:91–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89 ****************************************************************************/
90
91static bool rpmsg_test_memcmp(FAR const uint8_t *buf, uint8_t ch,
92 size_t size)
93{
94 size_t i;
95
96 for (i = 0; i < size; i++)
97 {
98 if (buf[i] != ch)
99 {
100 return false;
101 }
102 }
103
104 return true;
105}
106
107/****************************************************************************
108 * Name: rpmsg_test_hold_rx_work

Callers 2

rpmsg_test_hold_rx_workFunction · 0.85
rpmsg_test_hold_rx_cbFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected