Home | History | Annotate | Download | only in adb

Lines Matching refs:inFd

305 static void copy_to_file(int inFd, int outFd) {
311 D("copy_to_file(%d -> %d)\n", inFd, outFd);
313 if (inFd == STDIN_FILENO) {
318 if (inFd == STDIN_FILENO) {
319 len = unix_read(inFd, buf, BUFSIZE);
321 len = adb_read(inFd, buf, BUFSIZE);
344 if (inFd == STDIN_FILENO) {