/external/chromium_org/third_party/libwebp/webp/ |
mux.h | 18 // Code Example#1: Creating a MUX with image data, color profile and XMP 22 // WebPMux* mux = WebPMuxNew(); 24 // WebPMuxSetImage(mux, &image, copy_data); 26 // WebPMuxSetChunk(mux, "ICCP", &icc_profile, copy_data); 28 // WebPMuxSetChunk(mux, "XMP ", &xmp, copy_data); 29 // // Get data from mux in WebP RIFF format. 30 // WebPMuxAssemble(mux, &output_data); 31 // WebPMuxDelete(mux); 39 // WebPMux* mux = WebPMuxCreate(&data, copy_data); 40 // WebPMuxGetFrame(mux, 1, &image) 113 WEBP_EXTERN(void) WebPMuxDelete(WebPMux* mux); variable [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
test_mux.py | 33 """Tests for mux module.""" 45 from mod_pywebsocket import mux namespace 65 """Mock class of mod_python connection for mux.""" 109 parser = mux._MuxFramePayloadParser(inner_frame_data) 111 if channel_id == mux._CONTROL_CHANNEL_ID: 165 """Mock class of dispatch.Dispatcher for mux.""" 221 request.mux = True 230 block = mux._create_control_block_length_value( 231 channel_id, mux._MUX_OPCODE_ADD_CHANNEL_REQUEST, encoding, 233 payload = mux._encode_channel_id(mux._CONTROL_CHANNEL_ID) + bloc [all...] |
test_handshake_hybi.py | 311 self.assertTrue(request.mux) 322 # mux should be rejected.
|
mux_client_for_testing.py | 33 """WebSocket client utility for testing mux extension. 208 'Unsupported mux opcode %d received' % opcode) 279 """Mux reader thread. 281 Reads frames and passes them to the mux client. This thread accesses 282 private functions/variables of the mux client. 285 def __init__(self, mux): 288 self._mux = mux 373 """WebSocket mux client. 533 raise Exception('Mux client is not active') 638 raise Exception('Mux client is not active' [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
dispatch.py | 42 from mod_pywebsocket import mux namespace 283 if mux.use_mux(request): 284 mux.start(request, self)
|
extensions.py | 638 # Mux extension cannot be used after extensions that depend on 660 ws_request.mux = True
|
mux.py | 560 because this method can be called by mux dispatcher. [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
dispatch.py | 42 from mod_pywebsocket import mux namespace 286 if mux.use_mux(request): 287 mux.start(request, self)
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
mediasessionclient.h | 191 void set_rtcp_mux(bool mux) { rtcp_mux_ = mux; }
|
/external/openssh/contrib/cygwin/ |
Makefile | 46 $(INSTALL) -m 644 $(srcdir)/PROTOCOL.mux $(DESTDIR)$(sshdocdir)/PROTOCOL.mux
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
mediasession.h | 179 void set_rtcp_mux(bool mux) { rtcp_mux_ = mux; }
|
/external/openssh/ |
Android.mk | 54 sshconnect.c sshconnect1.c sshconnect2.c mux.c \
|