Home
last modified time | relevance | path

Searched refs:framing (Results 1 – 25 of 47) sorted by relevance

12

/third_party/protobuf/js/commonjs/
Dimport_test.js48 var framing1 = new proto.jspb.test.framing.FramingMessage([]);
49 var framing2 = new proto.jspb.test.framing.FramingMessage([]);
/third_party/protobuf/js/compatibility_tests/v3.0.0/commonjs/
Dimport_test.js48 var framing1 = new proto.jspb.test.framing.FramingMessage([]);
49 var framing2 = new proto.jspb.test.framing.FramingMessage([]);
/third_party/alsa-lib/src/rawmidi/
Drawmidi.c839 unsigned int framing; in snd_rawmidi_params_set_read_mode() local
844 framing = SNDRV_RAWMIDI_MODE_FRAMING_NONE; in snd_rawmidi_params_set_read_mode()
849 framing = SNDRV_RAWMIDI_MODE_FRAMING_TSTAMP; in snd_rawmidi_params_set_read_mode()
855 if (framing != SNDRV_RAWMIDI_MODE_FRAMING_NONE && in snd_rawmidi_params_set_read_mode()
858 params->mode = (params->mode & ~SNDRV_RAWMIDI_MODE_FRAMING_MASK) | framing; in snd_rawmidi_params_set_read_mode()
869 unsigned int framing; in snd_rawmidi_params_get_read_mode() local
872 framing = params->mode & SNDRV_RAWMIDI_MODE_FRAMING_MASK; in snd_rawmidi_params_get_read_mode()
873 if (framing == SNDRV_RAWMIDI_MODE_FRAMING_TSTAMP) in snd_rawmidi_params_get_read_mode()
/third_party/grpc/doc/
DPROTOCOL-WEB.md19 * adopt the same framing as “application/grpc” whenever possible
20 * decouple from HTTP/2 framing which is not, and will never be, directly
50 1. support any HTTP/*, with no dependency on HTTP/2 specific framing
63 Message framing (vs. [http2-transport-mapping](PROTOCOL-HTTP2.md#http2-transport-mapping))
DPROTOCOL-HTTP2.md4 …of gRPC carried over <a href="https://tools.ietf.org/html/rfc7540">HTTP2 framing</a>. It assumes f…
143 Sample unary-call showing HTTP2 framing sequence
212 In some cases it is possible that the framing of the message stream has become corrupt and the RPC …
/third_party/gstreamer/gstplugins_bad/sys/winks/
Dgstksvideodevice.c503 KSALLOCATOR_FRAMING *framing = NULL; in gst_ks_video_device_create_pin() local
582 KSPROPERTY_CONNECTION_ALLOCATORFRAMING, (void *) &framing, in gst_ks_video_device_create_pin()
584 *num_outstanding = framing->Frames; in gst_ks_video_device_create_pin()
585 alignment = framing->FileAlignment; in gst_ks_video_device_create_pin()
599 g_free (framing); in gst_ks_video_device_create_pin()
600 framing = NULL; in gst_ks_video_device_create_pin()
661 g_free (framing); in gst_ks_video_device_create_pin()
/third_party/curl/tests/data/
Dtest153851 e16: Error in the HTTP2 framing layer
127 e92: Stream error in the HTTP/2 framing layer
/third_party/protobuf/js/commonjs/test7/
Dtest7.proto36 package jspb.test.framing;
/third_party/protobuf/js/compatibility_tests/v3.1.0/commonjs/test7/
Dtest7.proto36 package jspb.test.framing;
/third_party/protobuf/js/compatibility_tests/v3.0.0/commonjs/test7/
Dtest7.proto36 package jspb.test.framing;
/third_party/lz4/examples/
Dstreaming_api_basics.md9 It guarantees interoperability with other LZ4 framing format compliant tools/libraries
/third_party/boost/boost/asio/detail/impl/
Dwin_iocp_serial_port_service.ipp86 dcb.fAbortOnError = FALSE; // Ignore serial framing errors.
/third_party/boost/libs/asio/include/boost/asio/detail/impl/
Dwin_iocp_serial_port_service.ipp86 dcb.fAbortOnError = FALSE; // Ignore serial framing errors.
/third_party/libxml2/doc/
Ddocdescr.doc78 which have navigation framing, are generated from this step
/third_party/python/Modules/
D_pickle.c638 int framing; /* True when framing is enabled, proto >= 4 */ member
973 if (!self->framing || self->frame_start == -1) in _Pickler_CommitFrame()
1028 if (!self->framing || self->frame_start == -1) { in _Pickler_OpcodeBoundary()
1063 need_new_frame = (self->framing && self->frame_start == -1); in _Pickler_Write()
1120 self->framing = 0; in _Pickler_New()
2293 int framing = self->framing; in _Pickler_write_bytes() local
2302 self->framing = 0; in _Pickler_write_bytes()
2347 self->framing = framing; in _Pickler_write_bytes()
4512 self->framing = 1; in dump()
4524 self->framing = 0; in dump()
/third_party/curl/docs/cmdline-opts/
Dpage-footer125 HTTP/2 error. A problem was detected in the HTTP2 framing layer. This is
268 Stream error in HTTP/2 framing layer.
/third_party/skia/third_party/externals/microhttpd/src/datadir/
Dspdy-draft.txt18 layers of protocol. The lower layer is a general purpose framing
183 SPDY adds a framing layer for multiplexing multiple, concurrent
185 stream). The framing layer is optimized for HTTP-like request-
214 The SPDY Specification is split into two parts: a framing layer
218 top of the framing layer. While some of the framing layer concepts
219 are isolated from the HTTP layer, building a generic framing layer
228 has not been a goal. The framing layer is tailored to the needs of
288 The SPDY framing layer (or "session") runs atop a reliable transport
592 The SPDY framing layer has only two types of errors, and they are
600 framing layer or which corrupts the session compression state. When
[all …]
/third_party/boost/libs/beast/doc/qbk/06_websocket/
D_websocket.qbk17 followed by basic message framing, layered over TCP. The goal of this
/third_party/boost/libs/proto/doc/
Dimplementation.qbk60 Another way of framing the question is by trying to implement
/third_party/python/Misc/NEWS.d/
D3.7.0b4.rst228 End framing at the end of C implementation of :func:`pickle.Pickler.dump`.
D3.6.6rc1.rst389 End framing at the end of C implementation of :func:`pickle.Pickler.dump`.
/third_party/lz4/doc/
Dlz4_Block_format.md12 There is no entropy encoder back-end nor framing layer.
Dlz4_Frame_format.md110 without re-framing it.
/third_party/nghttp2/
DREADME.rst7 The framing layer of HTTP/2 is implemented as a reusable C library.
446 It has verbose output mode for framing information. Here is sample
675 Just like ``nghttp``, it has a verbose output mode for framing
/third_party/lwip/doc/
Dppp.txt20 * PPP over serial using HDLC-like framing, such as wired dialup modems

12