Home
last modified time | relevance | path

Searched refs:pfd1 (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstplugins_base/tests/check/elements/
Dmultifdsink.c254 int pfd1[2], pfd2[2]; in GST_START_TEST() local
258 fail_if (pipe (pfd1) == -1); in GST_START_TEST()
265 g_signal_emit_by_name (sink, "add", pfd1[1]); in GST_START_TEST()
289 fail_unless_read ("first client", pfd1[0], 4, "babe"); in GST_START_TEST()
290 fail_unless_read ("first client", pfd1[0], 8, "deadbeef"); in GST_START_TEST()
291 fail_unless_read ("first client", pfd1[0], 4, "f00d"); in GST_START_TEST()
306 fail_unless_read ("first client", pfd1[0], 4, "deaf"); in GST_START_TEST()
317 g_signal_emit_by_name (sink, "remove", pfd1[1]); in GST_START_TEST()
351 int pfd1[2], pfd2[2]; in GST_START_TEST() local
355 fail_if (pipe (pfd1) == -1); in GST_START_TEST()
[all …]
/third_party/ltp/testcases/kernel/syscalls/lseek/
Dlseek02.c27 static int fd, pfd1, pfd2; variable
41 {&pfd1, SEEK_SET, ESPIPE},
42 {&pfd1, SEEK_CUR, ESPIPE},
43 {&pfd1, SEEK_END, ESPIPE},
77 pfd1 = SAFE_OPEN(TFIFO1, O_RDWR, 0777); in setup()
88 if (pfd1 > 0) in cleanup()
89 SAFE_CLOSE(pfd1); in cleanup()