| 1661 | } |
| 1662 | |
| 1663 | static bool posix_socket_identity_equal(const posix_socket_identity_t *left, |
| 1664 | const posix_socket_identity_t *right) { |
| 1665 | return left && right && left->device == right->device && left->inode == right->inode && |
| 1666 | left->ctime_seconds == right->ctime_seconds && |
| 1667 | left->ctime_nanoseconds == right->ctime_nanoseconds; |
| 1668 | } |
| 1669 | |
| 1670 | static bool posix_socket_inode_equal(const posix_socket_identity_t *left, |
| 1671 | const posix_socket_identity_t *right) { |
no outgoing calls
no test coverage detected