Searched defs:tee (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Ddeprecated_logging.py48 class tee: class in inherits:
87 sys.stdout = tee(self._original_stdout, *files)
88 sys.stderr = tee(self._original_stderr, *files)
H A Dexecutive.py47 from webkitpy.common.system.deprecated_logging import tee namespace
124 # Use our own custom wait loop because Popen ignores a tee'd
149 child_stdout = tee(child_out_file, tee_stdout)
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
H A DGStreamerGWorld.cpp88 // Get video sink bin and the tee inside.
91 GstElement* tee = gst_bin_get_by_name(GST_BIN(videoSink.get()), "videoTee"); local
107 // Link a new src pad from tee to queue.
108 GstPad* srcPad = gst_element_get_request_pad(tee, "src%d");
121 gst_object_unref(tee);
124 // the new tee branch downstream.
167 GstElement* tee = gst_bin_get_by_name(GST_BIN(videoSink.get()), "videoTee"); local
178 GstPad* srcPad = gst_element_get_static_pad(tee, m_dynamicPadName);
183 gst_element_release_request_pad(tee, srcPad);
199 gst_object_unref(tee);
[all...]

Completed in 139 milliseconds