Lines Matching refs:send_buf
181 uint8_t send_buf[32]; in test_so_bindtodevice() local
182 uint8_t recv_buf[sizeof(send_buf)] = { 0 }; in test_so_bindtodevice()
199 strcpy(send_buf, DEV1_NAME); in test_so_bindtodevice()
205 ret = zsock_sendto(sock_c, send_buf, strlen(send_buf) + 1, 0, in test_so_bindtodevice()
207 zassert_equal(ret, strlen(send_buf) + 1, "sendto failed, %d", errno); in test_so_bindtodevice()
224 strcpy(send_buf, DEV2_NAME); in test_so_bindtodevice()
230 ret = zsock_sendto(sock_c, send_buf, strlen(send_buf) + 1, 0, in test_so_bindtodevice()
232 zassert_equal(ret, strlen(send_buf) + 1, "sendto failed, %d", errno); in test_so_bindtodevice()
262 strcpy(send_buf, DEV1_NAME); in test_so_bindtodevice()
268 ret = zsock_sendto(sock_c, send_buf, strlen(send_buf) + 1, 0, in test_so_bindtodevice()
270 zassert_equal(ret, strlen(send_buf) + 1, "sendto failed, %d", errno); in test_so_bindtodevice()