OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pipe1
(Results
1 - 4
of
4
) sorted by null
/bionic/tests/
fcntl_test.cpp
205
int
pipe1
[2];
local
206
ASSERT_EQ(0, pipe(
pipe1
));
214
// Write /proc/version into
pipe1
.
215
ssize_t bytes_read = splice(in, 0,
pipe1
[1], NULL, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE);
217
close(
pipe1
[1]);
219
// Tee /proc/version from
pipe1
into pipe2.
220
ssize_t bytes_teed = tee(
pipe1
[0], pipe2[1], SIZE_MAX, 0);
224
// The out fds of both
pipe1
and pipe2 should now contain /proc/version.
226
FILE* fp1 = fdopen(
pipe1
[0], "r");
/external/chromium_org/ipc/
ipc_send_fds_test.cc
297
// over
pipe1
to the middleman thread. The middleman thread simply takes the fd
351
PipeChannelHelper
pipe1
(
360
base::Bind(&PipeChannelHelper::Send, base::Unretained(&
pipe1
)),
362
pipe1
.Init();
/external/chromium_org/mojo/public/cpp/bindings/tests/
handle_passing_unittest.cc
203
MessagePipe
pipe1
;
local
204
EXPECT_TRUE(WriteTextMessage(
pipe1
.handle1.get(), kText2));
211
request->pipe =
pipe1
.handle0.Pass();
/external/chromium_org/third_party/libevent/test/
regress.c
688
int
pipe1
;
local
692
pipe1
= base1->sig.ev_signal_pair[0];
696
if (close(
pipe1
) != -1 || errno!=EBADF) {
[
all
...]
Completed in 69 milliseconds