Home
last modified time | relevance | path

Searched refs:pipe_buf (Results 1 – 3 of 3) sorted by relevance

/external/ltp/testcases/kernel/syscalls/kill/
Dkill02.c175 char pipe_buf[10]; /*Pipe buffer. */ variable
313 while ((read(pipe1_fd[0], pipe_buf, 1) != 1) && (alarm_flag == FALSE)) in parent_rout()
315 strncpy(buf_tmp1, pipe_buf, 1); in parent_rout()
318 while ((read(pipe2_fd[0], pipe_buf, 1) != 1) && (alarm_flag == FALSE)) in parent_rout()
321 strncpy(buf_tmp2, pipe_buf, 1); in parent_rout()
367 read1_stat = read(pipe1_fd[0], pipe_buf, 1); in parent_rout()
370 read2_stat = read(pipe2_fd[0], pipe_buf, 1); in parent_rout()
373 readA_stat = read(pipeA_fd[0], pipe_buf, 1); in parent_rout()
376 readB_stat = read(pipeB_fd[0], pipe_buf, 1); in parent_rout()
434 while ((read(pipe1_fd[0], pipe_buf, 1) != 1) && (alarm_flag == FALSE)) in parent_rout()
[all …]
/external/python/cpython2/Lib/test/
Dtest_subprocess.py508 pipe_buf = 512
510 pipe_buf = os.fpathconf(x, "PC_PIPE_BUF")
517 'sys.stdout.write(sys.stdin.read())' % pipe_buf],
524 string_to_write = "abc"*pipe_buf
/external/libfuse/lib/
Dfuse_lowlevel.c736 struct fuse_bufvec pipe_buf = FUSE_BUFVEC_INIT(len); in fuse_send_data_iov() local
802 pipe_buf.buf[0].flags = FUSE_BUF_IS_FD; in fuse_send_data_iov()
803 pipe_buf.buf[0].fd = llp->pipe[1]; in fuse_send_data_iov()
805 res = fuse_buf_copy(&pipe_buf, buf, in fuse_send_data_iov()