Searched refs:outgoing (Results 1 - 25 of 39) sorted by relevance

12

/external/mtpd/
H A Dpptp.c132 } incoming, outgoing; variable in typeref:struct:packet
137 memset(outgoing.buffer, 0, length);
138 outgoing.length = length;
139 outgoing.header.length = htons(length);
140 outgoing.header.type = CONTROL_MESSAGE;
141 outgoing.header.cookie = MAGIC_COOKIE;
142 outgoing.message = htons(message);
147 send(the_socket, outgoing.buffer, outgoing.length, 0);
223 outgoing
[all...]
H A Dl2tp.c120 } incoming, outgoing; variable in typeref:struct:packet
131 uint16_t *p = (uint16_t *)outgoing.buffer;
142 outgoing.message = message;
143 outgoing.length = MESSAGE_HEADER_SIZE;
149 struct attribute *p = (struct attribute *)&outgoing.buffer[outgoing.length];
154 outgoing.length += ATTRIBUTE_HEADER_SIZE + size;
169 uint16_t *p = (uint16_t *)outgoing.buffer;
170 p[1] = htons(outgoing.length);
171 send(the_socket, outgoing
[all...]
/external/curl/docs/cmdline-opts/
H A Ddns-interface.d9 Tell curl to send outgoing DNS requests through <interface>. This option is a
H A Dtrace.d6 Enables a full trace dump of all incoming and outgoing data, including
H A Dtrace-ascii.d6 Enables a full trace dump of all incoming and outgoing data, including
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_bb.cpp106 for (Graph::EdgeIterator it = cfg.outgoing(); !it.end(); it.next()) {
313 while (!cfg.outgoing(true).end()) {
314 Graph::Edge *e = cfg.outgoing(true).getEdge();
378 for (Graph::EdgeIterator ei = cfg.outgoing(); !ei.end(); ei.next())
380 eR = out[1]->outgoing().getType();
389 if (out[1]->outgoing().getNode() == out[0])
392 if (out[0]->outgoing().getNode() == out[1]->outgoing().getNode())
524 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
H A Dnv50_ir_graph.h67 Edge *next[2]; // next edge outgoing/incident from/to origin/target
115 inline EdgeIterator outgoing(bool reverse = false) const;
207 Graph::EdgeIterator Graph::Node::outgoing(bool reverse) const function in class:nv50_ir::Graph::Node
H A Dnv50_ir_graph.cpp131 EdgeIterator ei = this->outgoing();
186 for (EdgeIterator ei = pos->outgoing(); !ei.end(); ei.next()) {
225 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next())
300 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) {
418 for (EdgeIterator ei = c->outgoing(); !ei.end(); ei.next()) {
H A Dnv50_ir_ssa.cpp102 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) {
200 for (succIt = bb->cfg.outgoing(); !succIt.end(); succIt.next()) {
206 for (chldIt = bb->dom.outgoing(); !chldIt.end(); chldIt.next()) {
230 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
502 // Update sources of PHI ops corresponding to this BB in outgoing BBs.
503 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
525 for (Graph::EdgeIterator ei = bb->dom.outgoing(); !ei.end(); ei.next())
H A Dnv50_ir_print.cpp748 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next())
H A Dnv50_ir_ra.cpp358 for (Graph::EdgeIterator ei = p->cfg.outgoing(); !ei.end(); ei.next())
567 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
625 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
652 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) {
835 for (Graph::EdgeIterator ei = nodes[i].outgoing(); !ei.end(); ei.next())
1294 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next())
1408 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next())
/external/kernel-headers/original/uapi/linux/
H A Disdn.h86 #define ISDN_USAGE_OUTGOING 128 /* This bit is set, if channel is outgoing */
106 int outgoing; member in struct:__anon9633
/external/v8/src/compiler/
H A Dscheduler.cc659 if (loop.outgoing) return *loop.outgoing;
681 ZoneVector<BasicBlock*>* outgoing; member in struct:v8::internal::compiler::SpecialRPONumberer::LoopInfo
688 if (outgoing == nullptr) {
689 outgoing = new (zone->New(sizeof(ZoneVector<BasicBlock*>)))
692 outgoing->push_back(block);
805 // Process additional outgoing edges from the loop header.
813 // Pop the loop stack and continue visiting outgoing edges within
817 // and later iterations will go through its outgoing edges list.
820 // Use the next outgoing edg
[all...]
/external/trappy/tests/trappy/plotter/js/
H A DEventPlot.js250 var outgoing;
273 outgoing = main.selectAll(".mItem")
415 if (outgoing)
416 outgoing.remove()
/external/trappy/trappy/plotter/js/
H A DEventPlot.js250 var outgoing;
273 outgoing = main.selectAll(".mItem")
415 if (outgoing)
416 outgoing.remove()
/external/python/cpython3/Modules/clinic/
H A D_ssl.c.h573 "_wrap_bio($self, /, incoming, outgoing, server_side,\n"
583 PySSLMemoryBIO *outgoing, int server_side,
590 static const char * const _keywords[] = {"incoming", "outgoing", "server_side", "server_hostname", NULL};
593 PySSLMemoryBIO *outgoing; local
598 &PySSLMemoryBIO_Type, &incoming, &PySSLMemoryBIO_Type, &outgoing, &server_side, &hostname_obj)) {
601 return_value = _ssl__SSLContext__wrap_bio_impl(self, incoming, outgoing, server_side, hostname_obj);
/external/webrtc/webrtc/modules/rtp_rtcp/include/
H A Drtp_rtcp.h441 bool outgoing,
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_rtcp_impl.h177 bool outgoing,
H A Drtp_rtcp_impl.cc608 bool outgoing,
613 if (outgoing) {
607 GetRtpPacketLossStats( bool outgoing, uint32_t ssrc, struct RtpPacketLossStats* loss_stats) const argument
/external/python/cpython3/Lib/test/
H A Dtest_ssl.py1692 def ssl_io_loop(self, sock, incoming, outgoing, func, *args, **kwargs):
1707 # Get any data from the outgoing BIO irrespective of any error, and
1709 buf = outgoing.read()
1731 outgoing = ssl.MemoryBIO()
1736 sslobj = ctx.wrap_bio(incoming, outgoing, False, 'localhost')
1743 self.ssl_io_loop(sock, incoming, outgoing, sslobj.do_handshake)
1750 self.ssl_io_loop(sock, incoming, outgoing, sslobj.unwrap)
1762 outgoing = ssl.MemoryBIO()
1765 sslobj = ctx.wrap_bio(incoming, outgoing, False)
1766 self.ssl_io_loop(sock, incoming, outgoing, sslob
[all...]
/external/libffi/src/powerpc/
H A Dppc_closure.S82 # now load up the pointer to the outgoing parameter
/external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
H A Dppc_closure.S82 # now load up the pointer to the outgoing parameter
/external/python/cpython3/Modules/_ctypes/libffi/src/powerpc/
H A Dppc_closure.S82 # now load up the pointer to the outgoing parameter
/external/python/cpython3/Lib/
H A Dssl.py403 def wrap_bio(self, incoming, outgoing, server_side=False,
405 sslobj = self._wrap_bio(incoming, outgoing, server_side=server_side,
/external/clang/lib/CodeGen/
H A DCGStmt.cpp109 llvm::BasicBlock *outgoing = Builder.GetInsertBlock(); local
110 assert(outgoing && "expression emission cleared block!");
124 if (incoming != outgoing && outgoing->use_empty()) {
125 outgoing->eraseFromParent();

Completed in 637 milliseconds

12