/external/mtpd/ |
D | pptp.c | 132 } 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 …]
|
D | l2tp.c | 120 } 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/ |
D | dbus-auth.c | 159 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/ |
D | loopback.c | 123 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()
|
D | relay.c | 183 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()
|
D | corrupt.c | 125 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/ |
D | graph.rst | 40 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 …]
|
D | graphstat.rst | 24 outgoing (``'out'``) edges. The default is to count the outgoing
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_bb.cpp | 102 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()
|
D | nv50_ir_graph.cpp | 131 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()
|
D | nv50_ir_ssa.cpp | 101 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()
|
D | nv50_ir_graph.h | 115 inline EdgeIterator outgoing(bool reverse = false) const; 207 Graph::EdgeIterator Graph::Node::outgoing(bool reverse) const in outgoing() function
|
/external/iptables/extensions/ |
D | libxt_devgroup.man | 1 Match device group of a packets incoming/outgoing interface. 7 Match device group of outgoing device
|
D | libipt_MIRROR.man | 9 chains. Note that the outgoing packets are
|
D | libxt_rateest.man | 74 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/ |
D | NetworkTrafficListener.java | 64 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/chromium-trace/catapult/third_party/gsutil/third_party/socksipy-branch/ |
D | BUGS | 13 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/ |
D | AbstractExtension.java | 75 …void bind(WebSocket.FrameConnection connection, FrameHandler incoming, WebSocketGenerator outgoing) in bind() argument 79 _outbound=outgoing; in bind()
|
/external/webrtc/webrtc/call/ |
D | rtc_event_log.proto | 195 // 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/ |
D | BlockFrequencyTerminology.rst | 19 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/ |
D | control.wifi_bgscan_backoff | 15 there is consistent outgoing traffic.
|
/external/kernel-headers/original/uapi/linux/ |
D | isdn.h | 105 int outgoing; member
|
/external/autotest/server/site_tests/network_WiFi_OverlappingBSSScan/ |
D | control | 15 there is consistent outgoing traffic. This test is similar to the
|
/external/v8/src/compiler/ |
D | scheduler.cc | 651 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/avahi/docs/ |
D | TODO | 97 * always set source address for outgoing packets 101 * remove outgoing queries from queue if the browse object they were issued from is destroyed
|