Lines Matching defs:pair
1038 _cleanup_close_pair_ int pair[2] = { -1, -1 };
1049 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, pair) < 0)
1059 pair[0] = safe_close(pair[0]);
1072 if (send_one_fd(pair[1], master, 0) < 0)
1078 pair[1] = safe_close(pair[1]);
1086 return receive_one_fd(pair[0], 0);
1091 _cleanup_close_pair_ int pair[2] = { -1, -1 };
1100 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, pair) < 0)
1110 pair[0] = safe_close(pair[0]);
1120 if (send_one_fd(pair[1], master, 0) < 0)
1126 pair[1] = safe_close(pair[1]);
1134 return receive_one_fd(pair[0], 0);