Home | History | Annotate | Download | only in adb

Lines Matching defs:pipefd

716     int pipefd[2];
717 if (pipe(pipefd) != 0) {
726 WriteFdExactly(pipefd[1], &id, sizeof(id));
727 WriteFdExactly(pipefd[1], &length, sizeof(length));
730 WriteFdExactly(pipefd[1], buf.data(), buf.length());
736 WriteFdExactly(pipefd[1], &id, sizeof(id));
737 WriteFdExactly(pipefd[1], &length, sizeof(length));
738 WriteFdExactly(pipefd[1], &exit_code, sizeof(exit_code));
741 adb_close(pipefd[1]);
742 return pipefd[0];