/third_party/gstreamer/gstplugins_bad/tests/examples/webrtc/ |
D | webrtcrenego.c | 8 static GstElement *pipe1, *webrtc1, *webrtc2, *extra_src; variable 31 gst_bin_remove (GST_BIN (pipe1), receive); in _element_message() 208 gst_bin_add (GST_BIN (pipe1), extra_src); in stream_change() 212 GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipe1), in stream_change() 236 gst_bin_remove (GST_BIN (pipe1), extra_src); in stream_change() 238 GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipe1), in stream_change() 251 pipe1 = gst_parse_launch (SEND_SRC ("smpte") in main() 254 g_object_set (pipe1, "message-forward", TRUE, NULL); in main() 255 bus1 = gst_pipeline_get_bus (GST_PIPELINE (pipe1)); in main() 256 gst_bus_add_watch (bus1, (GstBusFunc) _bus_watch, pipe1); in main() [all …]
|
D | webrtcbidirectional.c | 8 static GstElement *pipe1, *webrtc1, *webrtc2; variable 158 pipe1 = in main() 164 bus1 = gst_pipeline_get_bus (GST_PIPELINE (pipe1)); in main() 165 gst_bus_add_watch (bus1, (GstBusFunc) _bus_watch, pipe1); in main() 167 webrtc1 = gst_bin_get_by_name (GST_BIN (pipe1), "smpte"); in main() 171 pipe1); in main() 172 webrtc2 = gst_bin_get_by_name (GST_BIN (pipe1), "ball"); in main() 174 pipe1); in main() 181 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_PLAYING); in main() 185 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_NULL); in main() [all …]
|
D | webrtcswap.c | 8 static GstElement *pipe1, *webrtc1, *webrtc2; variable 171 pipe1 = in main() 182 bus1 = gst_pipeline_get_bus (GST_PIPELINE (pipe1)); in main() 183 gst_bus_add_watch (bus1, (GstBusFunc) _bus_watch, pipe1); in main() 185 webrtc1 = gst_bin_get_by_name (GST_BIN (pipe1), "smpte"); in main() 189 pipe1); in main() 190 webrtc2 = gst_bin_get_by_name (GST_BIN (pipe1), "ball"); in main() 192 pipe1); in main() 199 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_PLAYING); in main() 203 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_NULL); in main() [all …]
|
D | webrtc.c | 8 static GstElement *pipe1, *webrtc1, *webrtc2; variable 151 pipe1 = in main() 156 bus1 = gst_pipeline_get_bus (GST_PIPELINE (pipe1)); in main() 157 gst_bus_add_watch (bus1, (GstBusFunc) _bus_watch, pipe1); in main() 159 webrtc1 = gst_bin_get_by_name (GST_BIN (pipe1), "send"); in main() 162 webrtc2 = gst_bin_get_by_name (GST_BIN (pipe1), "recv"); in main() 164 pipe1); in main() 171 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_PLAYING); in main() 175 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_NULL); in main() 182 gst_object_unref (pipe1); in main()
|
D | webrtctransceiver.c | 8 static GstElement *pipe1, *webrtc1, *webrtc2; variable 178 pipe1 = in main() 183 bus1 = gst_pipeline_get_bus (GST_PIPELINE (pipe1)); in main() 184 gst_bus_add_watch (bus1, (GstBusFunc) _bus_watch, pipe1); in main() 186 webrtc1 = gst_bin_get_by_name (GST_BIN (pipe1), "send"); in main() 191 webrtc2 = gst_bin_get_by_name (GST_BIN (pipe1), "recv"); in main() 193 pipe1); in main() 202 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_PLAYING); in main() 206 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_NULL); in main() 213 gst_object_unref (pipe1); in main()
|
/third_party/gstreamer/gstplugins_bad/tests/examples/wpe/ |
D | wpe.c | 22 static GstElement *pipe1; variable 125 pipe1 = in main() 129 bus1 = gst_pipeline_get_bus (GST_PIPELINE (pipe1)); in main() 130 gst_bus_add_watch (bus1, (GstBusFunc) _bus_watch, pipe1); in main() 132 src = gst_bin_get_by_name (GST_BIN (pipe1), "wpesrc"); in main() 134 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_READY); in main() 136 g_signal_connect (src, "pad-added", G_CALLBACK (_wpe_pad_added), pipe1); in main() 137 g_signal_connect (src, "pad-removed", G_CALLBACK (_wpe_pad_removed), pipe1); in main() 143 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_PLAYING); in main() 147 gst_element_set_state (GST_ELEMENT (pipe1), GST_STATE_NULL); in main() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/tee/ |
D | tee01.c | 51 int pipe1[2]; in tee_test() local 58 SAFE_PIPE(pipe1); in tee_test() 61 ret = splice(fd_in, NULL, pipe1[1], NULL, TEST_BLOCK_SIZE, 0); in tee_test() 65 ret = tee(pipe1[0], pipe2[1], TEST_BLOCK_SIZE, SPLICE_F_NONBLOCK); in tee_test() 75 SAFE_CLOSE(pipe1[0]); in tee_test() 76 SAFE_CLOSE(pipe1[1]); in tee_test()
|
/third_party/node/test/async-hooks/ |
D | test-pipeconnectwrap.js | 15 let pipe1, pipe2; variable 40 pipe1 = pipes[0]; 44 assert.strictEqual(pipe1.type, 'PIPEWRAP'); 46 for (const a of [ pipeserver, pipe1, pipeconnect ]) { 72 checkInvocations(pipe1, { init: 1 }, 'pipe1, client connected'); 89 checkInvocations(pipe1, { init: 1, before: 2, after: 2, destroy: 1 },
|
D | test-pipewrap.js | 33 const pipe1 = pipes[0]; constant 42 [ pipe1, pipe2, pipe3 ].forEach((x) => { 74 [ pipe1, pipe2, pipe3 ].forEach((x) => { 84 checkInvocations(pipe1, { init: 1, before: 1, after: 1 },
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
D | splice.c | 88 int pipe1[1 + 1]; in splice_0200() local 89 int result = pipe(pipe1); in splice_0200() 98 ssize_t bytes = splice(fromfd, NULL, pipe1[1], NULL, len, flags); in splice_0200() 104 close(pipe1[1]); in splice_0200() 107 f = fdopen(pipe1[0], "r"); in splice_0200()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86PfmCounters.td | 199 PfmIssueCounter<"BtFPU1", "dispatched_fpu:pipe1"> 209 PfmIssueCounter<"JFPU1", "dispatched_fpu:pipe1">
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/X86/ |
D | X86GenExegesis.inc | 14 "dispatched_fpu:pipe1", // 3
|