代码搜索:PIPE

找到约 7,786 项符合「PIPE」的源代码

代码结果 7,786
www.eeworm.com/read/431489/8674208

c pipe.c

#include "myfun.h" int my_pipe(char *buff, char *path_rec[]) { pid_t pid; int i, fp[2], wt, num; char temp[MAX/8] = "\0", temp_f[MAX/8] = "\0"; char *argv[5]; num = cmd_cut(buff, argv); for(i=0;
www.eeworm.com/read/287415/8687310

c pipe.c

/* pipe.c * * Demonstrates how to create a pipeline from one process to another * * Takes two args, each a command, and connects * av[1]'s output to input of av[2] * * usage: pipe command1 com
www.eeworm.com/read/386806/8726220

c pipe.c

/* * linux/fs/pipe.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #include #include #include #include #include
www.eeworm.com/read/287068/8727672

h pipe.h

/* Copyright (c) 2008 TrueCrypt Foundation. All rights reserved. Governed by the TrueCrypt License 2.4 the full text of which is contained in the file License.txt included in TrueCrypt binary
www.eeworm.com/read/287068/8727686

cpp pipe.cpp

/* Copyright (c) 2008 TrueCrypt Foundation. All rights reserved. Governed by the TrueCrypt License 2.4 the full text of which is contained in the file License.txt included in TrueCrypt binary
www.eeworm.com/read/430500/8741269

c pipe.c

#include #include #include #include int main() { int pipe_fd[2]; if(pipe(pipe_fd)
www.eeworm.com/read/429695/8793745

c pipe.c

#include #include #include #include #define FD_READ 0 #define FD_WRITE 1 #define BUF_LEN 100 int main() { pid_t pid; int fildes[2]; char buf[BUF_L
www.eeworm.com/read/187222/8840966

java pipe.java

//: Pipe.java import java.io.*; public class Pipe { public static void main(String[] args) throws Exception { PipedInputStream in = new PipedInputStream(); PipedOutputStream out = new Pi
www.eeworm.com/read/187222/8841403

java pipe.java

//: Pipe.java import java.io.*; public class Pipe { public static void main(String[] args) throws Exception { PipedInputStream in = new PipedInputStream(); PipedOutputStream out = new Pi
www.eeworm.com/read/383713/8925674

c pipe.c

/* * linux/fs/pipe.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #include #include #include #include #include