| 89 | ****************************************************************************/ |
| 90 | |
| 91 | static 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 |
no outgoing calls
no test coverage detected