Home
last modified time | relevance | path

Searched refs:outgoing (Results 1 – 25 of 87) sorted by relevance

1234

/external/mtpd/
Dpptp.c132 } incoming, outgoing; variable
137 memset(outgoing.buffer, 0, length); in set_message()
138 outgoing.length = length; in set_message()
139 outgoing.header.length = htons(length); in set_message()
140 outgoing.header.type = CONTROL_MESSAGE; in set_message()
141 outgoing.header.cookie = MAGIC_COOKIE; in set_message()
142 outgoing.message = htons(message); in set_message()
147 send(the_socket, outgoing.buffer, outgoing.length, 0); in send_packet()
223 outgoing.sccrq.protocol_version = PROTOCOL_VERSION; in pptp_connect()
224 outgoing.sccrq.framing = htonl(3); in pptp_connect()
[all …]
Dl2tp.c120 } incoming, outgoing; variable
131 uint16_t *p = (uint16_t *)outgoing.buffer; in set_message()
142 outgoing.message = message; in set_message()
143 outgoing.length = MESSAGE_HEADER_SIZE; in set_message()
149 struct attribute *p = (struct attribute *)&outgoing.buffer[outgoing.length]; in add_attribute_raw()
154 outgoing.length += ATTRIBUTE_HEADER_SIZE + size; in add_attribute_raw()
169 uint16_t *p = (uint16_t *)outgoing.buffer; in send_packet()
170 p[1] = htons(outgoing.length); in send_packet()
171 send(the_socket, outgoing.buffer, outgoing.length, 0); in send_packet()
547 log_print(DEBUG, "Timeout -> Sending %s", messages[outgoing.message]); in l2tp_timeout()
[all …]
/external/dbus/dbus/
Ddbus-auth.c159 DBusString outgoing; /**< Outgoing data buffer */ member
362 if (!_dbus_string_init (&auth->outgoing)) in _dbus_auth_new()
409 _dbus_string_free (&auth->outgoing); in _dbus_auth_new()
1396 &auth->outgoing, in send_auth()
1397 _dbus_string_get_length (&auth->outgoing))) in send_auth()
1417 return _dbus_string_append (&auth->outgoing, "DATA\r\n"); in send_data()
1420 old_len = _dbus_string_get_length (&auth->outgoing); in send_data()
1421 if (!_dbus_string_append (&auth->outgoing, "DATA ")) in send_data()
1424 if (!_dbus_string_hex_encode (data, 0, &auth->outgoing, in send_data()
1425 _dbus_string_get_length (&auth->outgoing))) in send_data()
[all …]
/external/dbus/test/
Dloopback.c123 DBusMessage *outgoing, *incoming; in test_message() local
127 outgoing = dbus_message_new_signal ("/com/example/Hello", in test_message()
129 g_assert (outgoing != NULL); in test_message()
131 have_mem = dbus_connection_send (f->client_conn, outgoing, &serial); in test_message()
158 dbus_message_unref (outgoing); in test_message()
Drelay.c183 DBusMessage *outgoing; in send_one() local
185 outgoing = dbus_message_new_signal ("/com/example/Hello", in send_one()
187 g_assert (outgoing != NULL); in send_one()
189 have_mem = dbus_connection_send (f->left_client_conn, outgoing, &serial); in send_one()
193 dbus_message_unref (outgoing); in send_one()
Dcorrupt.c125 DBusMessage *outgoing, *incoming; in test_message() local
129 outgoing = dbus_message_new_signal ("/com/example/Hello", in test_message()
131 g_assert (outgoing != NULL); in test_message()
133 have_mem = dbus_connection_send (f->server_conn, outgoing, &serial); in test_message()
160 dbus_message_unref (outgoing); in test_message()
/external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/
Dgraph.rst40 Hides a *node* from the graph. The incoming and outgoing edges of
49 Restores a previously hidden *node*. The incoming and outgoing
82 Returns *node*, the node's data and the lists of outgoing
101 Return the list of outgoing edges for *node*
109 Return the list of incoming and outgoing edges for *node*
113 Return the number of outgoing edges for *node*.
121 Return the number of edges (incoming or outgoing) for *node*.
200 Return a list of all nodes connected by outgoing edges.
208 Returns a list of nodes connected by an incoming or outgoing edge.
212 Return a list of nodes where the successors (based on outgoing
[all …]
Dgraphstat.rst24 outgoing (``'out'``) edges. The default is to count the outgoing
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_bb.cpp102 for (Graph::EdgeIterator it = cfg.outgoing(); !it.end(); it.next()) { in clone()
309 while (!cfg.outgoing(true).end()) { in splitCommon()
310 Graph::Edge *e = cfg.outgoing(true).getEdge(); in splitCommon()
371 for (Graph::EdgeIterator ei = cfg.outgoing(); !ei.end(); ei.next()) in initiatesSimpleConditional()
373 eR = out[1]->outgoing().getType(); in initiatesSimpleConditional()
382 if (out[1]->outgoing().getNode() == out[0]) in initiatesSimpleConditional()
385 if (out[0]->outgoing().getNode() == out[1]->outgoing().getNode()) in initiatesSimpleConditional()
517 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) { in printCFGraph()
Dnv50_ir_graph.cpp131 EdgeIterator ei = this->outgoing(); in detach()
186 for (EdgeIterator ei = pos->outgoing(); !ei.end(); ei.next()) { in reachableBy()
225 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) in search()
297 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) { in search()
408 for (EdgeIterator ei = c->outgoing(); !ei.end(); ei.next()) { in findLightestPathWeight()
Dnv50_ir_ssa.cpp101 for (Graph::EdgeIterator ei = node->outgoing(); !ei.end(); ei.next()) { in buildDFS()
199 for (succIt = bb->cfg.outgoing(); !succIt.end(); succIt.next()) { in findDominanceFrontiers()
205 for (chldIt = bb->dom.outgoing(); !chldIt.end(); chldIt.next()) { in findDominanceFrontiers()
229 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) { in buildLiveSetsPreSSA()
488 for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) { in search()
509 for (Graph::EdgeIterator ei = bb->dom.outgoing(); !ei.end(); ei.next()) in search()
Dnv50_ir_graph.h115 inline EdgeIterator outgoing(bool reverse = false) const;
207 Graph::EdgeIterator Graph::Node::outgoing(bool reverse) const in outgoing() function
/external/iptables/extensions/
Dlibxt_devgroup.man1 Match device group of a packets incoming/outgoing interface.
7 Match device group of outgoing device
Dlibipt_MIRROR.man9 chains. Note that the outgoing packets are
Dlibxt_rateest.man74 Example: This is what can be used to route outgoing data connections from an
78 # Estimate outgoing rates
/external/jetty/src/java/org/eclipse/jetty/io/
DNetworkTrafficListener.java64 public void outgoing(Socket socket, Buffer bytes); in outgoing() method
91 public void outgoing(Socket socket, Buffer bytes) in outgoing() method in NetworkTrafficListener.Empty
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar ... org/eclipse/ecf/provider/filetransfer/outgoing/ org/eclipse/ecf/provider/filetransfer ...
/external/chromium-trace/catapult/third_party/gsutil/third_party/socksipy-branch/
DBUGS13 1) Only outgoing connections are supported - This module currently only supports
14 outgoing TCP connections, though some servers may support incoming connections
/external/jetty/src/java/org/eclipse/jetty/websocket/
DAbstractExtension.java75 …void bind(WebSocket.FrameConnection connection, FrameHandler incoming, WebSocketGenerator outgoing) in bind() argument
79 _outbound=outgoing; in bind()
/external/webrtc/webrtc/call/
Drtc_event_log.proto195 // Synchronization source (stream identifier) for outgoing stream.
200 // RTP header extensions used for the outgoing stream.
237 // required - Synchronization source (stream identifier) for outgoing stream.
240 // RTP header extensions used for the outgoing audio stream.
/external/llvm/docs/
DBlockFrequencyTerminology.rst19 outgoing edge. These are called branch probabilities. For a given block, the
20 sum of its outgoing branch probabilities should be 1.0.
28 the sum of the weights on the predecessor's outgoing edges.
/external/autotest/server/site_tests/network_WiFi_BgscanBackoff/
Dcontrol.wifi_bgscan_backoff15 there is consistent outgoing traffic.
/external/kernel-headers/original/uapi/linux/
Disdn.h105 int outgoing; member
/external/v8/src/compiler/
Dscheduler.cc651 if (loop.outgoing) return *loop.outgoing; in GetOutgoingBlocks()
673 ZoneVector<BasicBlock*>* outgoing; member
680 if (outgoing == nullptr) { in AddOutgoing()
681 outgoing = new (zone->New(sizeof(ZoneVector<BasicBlock*>))) in AddOutgoing()
684 outgoing->push_back(block); in AddOutgoing()
816 if (block != entry && info->outgoing != nullptr && in ComputeAndInsertSpecialRPO()
817 outgoing_index < info->outgoing->size()) { in ComputeAndInsertSpecialRPO()
818 succ = info->outgoing->at(outgoing_index); in ComputeAndInsertSpecialRPO()
/external/autotest/server/site_tests/network_WiFi_OverlappingBSSScan/
Dcontrol15 there is consistent outgoing traffic. This test is similar to the

1234