Home | History | Annotate | Download | only in src

Lines Matching refs:app_fd

90   int app_fd;   // Temporary storage for the half of the socketpair that's sent
126 rfc_slots[i].app_fd = INVALID_FD;
215 slot->app_fd = fds[1];
313 *sock_fd = slot->app_fd; // Transfer ownership of fd to caller.
315 * We are leaking one of the app_fd's - either the listen socket, or the
321 // close(rs->app_fd);
322 slot->app_fd = INVALID_FD; // Drop our reference to the fd.
380 *sock_fd = slot->app_fd; // Transfer ownership of fd to caller.
381 slot->app_fd = INVALID_FD; // Drop our reference to the fd.
417 if (slot->app_fd != INVALID_FD) {
418 close(slot->app_fd);
419 slot->app_fd = INVALID_FD;
509 accept_rs->app_fd);
510 accept_rs->app_fd =