Home
last modified time | relevance | path

Searched refs:ancillary (Results 1 – 25 of 2101) sorted by relevance

12345678910>>...85

/dports/math/vtk6/VTK-6.2.0/ThirdParty/Twisted/twisted/python/
H A Dsendmsg.c181 PyObject *ancillary = NULL; in sendmsg_sendmsg() local
194 &ancillary)) { in sendmsg_sendmsg()
211 if (ancillary) { in sendmsg_sendmsg()
213 if (!PyList_Check(ancillary)) { in sendmsg_sendmsg()
380 PyObject *ancillary; in sendmsg_recvmsg() local
433 ancillary = PyList_New(0); in sendmsg_recvmsg()
434 if (!ancillary) { in sendmsg_recvmsg()
469 Py_DECREF(ancillary); in sendmsg_recvmsg()
474 Py_DECREF(ancillary); in sendmsg_recvmsg()
487 ancillary); in sendmsg_recvmsg()
[all …]
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/python/
H A Dsendmsg.py23 ancillary: List[Tuple[int, int, bytes]] = [],
38 return socket.sendmsg([data], ancillary, flags)
65 data, ancillary, flags = socket.recvmsg(maxSize, CMSG_SPACE(cmsgSize), flags)[0:3]
67 return ReceivedMessage(data=data, ancillary=ancillary, flags=flags)
/dports/misc/fq/fq-0.0.2/format/png/testdata/
H A D4x4.fqtest11 0x000| 49 | I | ancillary: false 0xc.3…
27 0x020| 67 | g | ancillary: false 0x25.…
37 0x030| 63 | c | ancillary: false 0x35.…
56 0x060| 62 | b | ancillary: false 0x61.…
66 0x060| 74| t| ancillary: true 0x6f.3…
76 0x080| 49 | I | ancillary: false 0x82.…
86 0x090| 74 | t | ancillary: true 0x99.3…
99 0x0c0| 74 | t | ancillary: true 0xca.3…
112 0x0f0| 7a | z | ancillary: true 0xfb.3…
128 0x110| 49 | I | ancillary: false 0x11e…
H A D4x4a.fqtest9 0x00| 49 | I | ancillary: false 0xc.3-…
25 0x20| 70 | p | ancillary: true 0x25.3-…
37 0x30| 61 | a | ancillary: false 0x3a.3…
49 0x40| 66 | f | ancillary: false 0x4e.3…
67 0x70| 49 | I | ancillary: false 0x74.3…
79 0xa0| 66 | f | ancillary: false 0xa2.3…
97 0xc0| 66 | f | ancillary: false 0xc8.3…
107 0xe0| 49 | I | ancillary: false 0xec.3…
/dports/devel/clojure-cider/cider-1.1.0/
H A Dcider-popup.el44 (defun cider-popup-buffer (name &optional select mode ancillary)
50 (thread-first (cider-make-popup-buffer name mode ancillary)
88 (defun cider-make-popup-buffer (name &optional mode ancillary)
101 (when ancillary
/dports/audio/madplay/madplay-0.15.2b/
H A Dplayer.c173 player->ancillary.path = 0; in player_init()
174 player->ancillary.file = 0; in player_init()
175 player->ancillary.buffer = 0; in player_init()
550 int write_ancillary(struct ancillary *ancillary, in write_ancillary() argument
553 if (ancillary->length) { in write_ancillary()
558 ancillary->buffer = in write_ancillary()
566 ancillary->file) == EOF) { in write_ancillary()
570 ancillary->length = 0; in write_ancillary()
590 ancillary->length = length; in write_ancillary()
2727 player->ancillary.file = fopen(player->ancillary.path, "wb"); in player_run()
[all …]
H A Dplayer.h157 struct ancillary { struct
163 } ancillary; member
/dports/lang/rust/rustc-1.58.1-src/library/std/src/os/unix/net/
H A Dancillary.rs27 ancillary: &mut SocketAncillary<'_>, in recv_vectored_with_ancillary_from()
36 msg.msg_controllen = ancillary.buffer.len() as _; in recv_vectored_with_ancillary_from()
39 msg.msg_control = ancillary.buffer.as_mut_ptr().cast(); in recv_vectored_with_ancillary_from()
44 ancillary.length = msg.msg_controllen as usize; in recv_vectored_with_ancillary_from()
45 ancillary.truncated = msg.msg_flags & libc::MSG_CTRUNC == libc::MSG_CTRUNC; in recv_vectored_with_ancillary_from()
58 ancillary: &mut SocketAncillary<'_>, in send_vectored_with_ancillary_to()
69 msg.msg_controllen = ancillary.length as _; in send_vectored_with_ancillary_to()
72 msg.msg_control = ancillary.buffer.as_mut_ptr().cast(); in send_vectored_with_ancillary_to()
75 ancillary.truncated = false; in send_vectored_with_ancillary_to()
H A Ddatagram.rs449 ancillary: &mut SocketAncillary<'_>, in recv_vectored_with_ancillary_from()
451 let (count, truncated, addr) = recv_vectored_with_ancillary_from(&self.0, bufs, ancillary)?; in recv_vectored_with_ancillary_from()
506 ancillary: &mut SocketAncillary<'_>, in recv_vectored_with_ancillary()
508 let (count, truncated, addr) = recv_vectored_with_ancillary_from(&self.0, bufs, ancillary)?; in recv_vectored_with_ancillary()
649 ancillary: &mut SocketAncillary<'_>, in send_vectored_with_ancillary_to()
652 send_vectored_with_ancillary_to(&self.0, Some(path.as_ref()), bufs, ancillary) in send_vectored_with_ancillary_to()
698 ancillary: &mut SocketAncillary<'_>, in send_vectored_with_ancillary()
700 send_vectored_with_ancillary_to(&self.0, None, bufs, ancillary) in send_vectored_with_ancillary()
H A Dmod.rs25 mod ancillary; module
45 pub use self::ancillary::*;
H A Dstream.rs557 ancillary: &mut SocketAncillary<'_>, in recv_vectored_with_ancillary()
559 let (count, _, _) = recv_vectored_with_ancillary_from(&self.0, bufs, ancillary)?; in recv_vectored_with_ancillary()
607 ancillary: &mut SocketAncillary<'_>, in send_vectored_with_ancillary()
609 send_vectored_with_ancillary_to(&self.0, None, bufs, ancillary) in send_vectored_with_ancillary()
/dports/multimedia/obs-studio/obs-studio-27.1.3/plugins/decklink/
H A DOBSVideoFrame.h33 SetAncillaryData(IDeckLinkVideoFrameAncillary *ancillary) override;
61 /* out */ IDeckLinkVideoFrameAncillary **ancillary) override in GetAncillaryData() argument
63 UNUSED_PARAMETER(ancillary); in GetAncillaryData()
H A DOBSVideoFrame.cpp48 HRESULT OBSVideoFrame::SetAncillaryData(IDeckLinkVideoFrameAncillary *ancillary) in SetAncillaryData() argument
50 UNUSED_PARAMETER(ancillary); in SetAncillaryData()
/dports/misc/fq/fq-0.0.2/format/id3/testdata/
H A Dutf16-apic.fqtest44 0x030| 49 | I | ancillary: false…
60 0x050| 67 | g | ancillary: false…
70 0x060| 63 | c | ancillary: false…
89 0x080| 62 | b | ancillary: false…
98 0x090| 74 | t | ancillary: true …
109 0x0a0| 49 | I | ancillary: false…
119 0x0c0| 74 | t | ancillary: true …
132 0x0f0| 74 | t | ancillary: true …
145 0x120| 49 | I | ancillary: false…
H A Dapic.fqtest61 0x40| 49 | I | ancillary: false …
78 0x50| 70| p| ancillary: true 0…
89 0x70| 49 | I | ancillary: false …
101 0xa0| 49 | I | ancillary: false …
/dports/devel/py-twisted/Twisted-22.1.0/docs/core/howto/listings/sendmsg/
H A Dsend_replacement.py18 (received, ancillary, flags) = recvmsg(bar, 1024)
20 print("Extra stuff, boring in this case", flags, ancillary)
H A Dcopy_descriptor.py26 data, ancillary, flags = recvmsg(bar, 1024)
27 duplicate = unpack("i", ancillary[0][2])[0]
/dports/math/vtk6/VTK-6.2.0/ThirdParty/Twisted/twisted/python/test/
H A Dpullpipe.py28 data, flags, ancillary = recv1msg(socketfd)
29 [(cmsg_level, cmsg_type, packedFD)] = ancillary
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/python/test/
H A Dpullpipe.py28 data, ancillary, flags = recvmsg(ourSocket)
29 [(cmsgLevel, cmsgType, packedFD)] = ancillary
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/internet/test/
H A Dtest_unix.py493 ancillary, expectedCount = ancillaryPacker(fdsToSend)
494 sendmsg(sendSocket, dataToSend, ancillary)
519 ancillary = [(SOL_SOCKET, SCM_RIGHTS, pack("ii", *fdsToSend))]
521 return ancillary, expectedCount
539 ancillary = [(SOL_SOCKET, SCM_RIGHTS, pack("i", fd)) for fd in fdsToSend]
541 return ancillary, expectedCount
561 ancillary = []
563 return ancillary, expectedCount
567 ancillary = [(None, None, b"")]
569 return sendmsg.ReceivedMessage(data, ancillary, flags)
/dports/net/nanomsg/nanomsg-1.1.5/doc/
H A Dnn_cmsg.adoc26 These functions can be used to iterate over ancillary data attached to a message.
28 Structure 'nn_cmsghdr' represents a single ancillary property and contains following members:
51 Iterating over ancillary properties:
/dports/misc/fq/fq-0.0.2/format/flac/testdata/
H A Dpicture_seek_gain.fqtest93 0x0160| 49 | I | ancillary: fa…
109 0x0180| 67 | g | ancillary: fa…
119 0x0190| 63 | c | ancillary: fa…
138 0x01b0| 62 | b | ancillary: fa…
147 0x01c0| 74 | t | ancillary: tr…
158 0x01d0| 49 | I | ancillary: fa…
168 0x01f0| 74 | t | ancillary: tr…
181 0x0220| 74 | t | ancillary: tr…
194 0x0250| 49 | I | ancillary: fa…
/dports/misc/fq/fq-0.0.2/format/vorbis/testdata/
H A Dvorbis-comment-picture.fqtest42 …0x30| 49 | I | ancillary: fal…
59 …0x40| 70 | p | ancillary: tru…
71 …0x60| 49 | I | ancillary: fal…
83 …0x90| 49 | I | ancillary: fal…
/dports/astro/astrometry/astrometry.net-0.85/qfits-an/
H A DREADME21 The FITS format is pretty simple, declaring ancillary data in
27 only want to retrieve ancillary data from headers, or only read
31 People only interested in getting ancillary information from FITS
/dports/astro/stellarsolver/stellarsolver-1.8/stellarsolver/astrometry/qfits-an/
H A DREADME21 The FITS format is pretty simple, declaring ancillary data in
27 only want to retrieve ancillary data from headers, or only read
31 People only interested in getting ancillary information from FITS

12345678910>>...85