Lines Matching defs:byte
434 /* Transmit one byte and check the return value.
443 static const uint8_t byte = 'A';
445 send_buf(fd, &byte, sizeof(byte), flags, expected_ret);
448 /* Receive one byte and check the return value.
457 uint8_t byte;
459 recv_buf(fd, &byte, sizeof(byte), flags, expected_ret);
461 if (byte != 'A') {
462 fprintf(stderr, "unexpected byte read 0x%02x\n", byte);