| /external/iputils/ |
| traceroute6.c | 65 * Attempt to trace the route an ip packet would follow to some 88 * traceroute to nis.nsf.net (35.1.1.48), 30 hops max, 56 byte packet 291 u_char packet[512]; /* last inbound (icmp) packet */ variable 479 "traceroute: packet size must be %d <= s < %d.\n", 611 if ((i = packet_ok(packet, cc, &from, &to, seq, &t1))) { 614 print(packet, cc, &from); 676 * "reset_timer" will only be true if the last packet that 690 iov.iov_base = packet; 691 iov.iov_len = sizeof(packet); [all...] |
| /external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| ProcessKDP.cpp | 52 { "packet-timeout" , OptionValue::eTypeUInt64 , true , 5, NULL, NULL, "Specify the default packet timeout in seconds." }, 290 /* Get the kernel's UUID and load address via KDP_KERNELVERSION packet. */ 611 log->PutCString ("ProcessKDP::DoDetach() detach packet sent successfully"); 895 // TODO: parse the stop reply packet 970 "process plugin packet send", 971 "Send a custom packet through the KDP protocol by specifying the command byte and the packet payload data. A packet will be sent with a correct header and payload, and the raw result bytes will be displayed as a string value. ", 974 m_command_byte(LLDB_OPT_SET_1, true , "command", 'c', 0, eArgTypeNone, "Specify the command byte to use when sending the KDP request packet.", 0) 1040 StreamString packet; local [all...] |
| /external/lldb/source/Plugins/Process/gdb-remote/ |
| GDBRemoteCommunicationClient.cpp | 338 log->Printf ("async: async packet = %s", m_async_packet.c_str()); 368 // Make sure we wait until the continue packet has been sent again... 376 log->Printf ("async: async packet sent"); 392 // Send the packet normally since we got the lock 417 log->Printf("error: failed to get packet sequence mutex, not sending packet '%*s'", (int) payload_length, payload); 540 // Set the starting continue packet into "continue_packet". This packet 541 // may change if we are interrupted and we continue after an async packet... 551 log->Printf ("GDBRemoteCommunicationClient::%s () sending continue packet: %s", __FUNCTION__, continue_packet.c_str()) 950 StreamString packet; local 980 StreamString packet; local 1000 StreamString packet; local 1329 char packet[64]; local [all...] |
| GDBRemoteRegisterContext.cpp | 153 char packet[64]; local 158 packet_len = ::snprintf (packet, sizeof(packet), "p%x;thread:%4.4" PRIx64 ";", reg, m_thread.GetProtocolID()); 160 packet_len = ::snprintf (packet, sizeof(packet), "p%x", reg); 161 assert (packet_len < ((int)sizeof(packet) - 1)); 162 if (gdb_comm.SendPacketAndWaitForResponse(packet, response, false)) 192 char packet[64]; local 197 // Get all registers in one packet 199 packet_len = ::snprintf (packet, sizeof(packet), "g;thread:%4.4" PRIx64 ";", m_thread.GetProtocolID()) 307 StreamString packet; local 391 StreamString packet; local 508 char packet[32]; local 647 StreamString packet; local [all...] |
| /external/lldb/tools/debugserver/source/ |
| debugserver.cpp | 79 std::string packet; local 87 // Spin waiting to get the A packet. 96 RNBLogSTDERR ("error: packet read thread exited.\n"); 139 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Error getting packet.",__FUNCTION__); 147 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Connection closed before getting \"A\" packet.", __FUNCTION__); 255 // error code. So we need to fetch one packet from gdb before we wait 270 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Error getting packet.", __FUNCTION__); 275 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s Didn't get the expected qLaunchSuccess packet.", __FUNCTION__); 484 // we are waiting for gdb remote protocol packets. When a packet occurs that 567 // Out remote packet receiving thread exited, exit for now [all...] |
| /external/mtpd/ |
| l2tp.c | 115 static struct packet { struct 211 /* Check if the packet is duplicated and send ACK if necessary. */ 224 * this packet if it is their next one and they received our last one. */
|
| /external/openssl/include/openssl/ |
| dtls1.h | 234 unsigned int mtu; /* max DTLS packet size */ 268 unsigned char *packet; member in struct:dtls1_record_data_st
|
| /external/openssl/ssl/ |
| dtls1.h | 234 unsigned int mtu; /* max DTLS packet size */ 268 unsigned char *packet; member in struct:dtls1_record_data_st
|
| /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/tests/ |
| G729DecTest.c | 1398 OMX_U8 *packet = NULL; local [all...] |
| /packages/apps/Nfc/src/com/android/nfc/echoserver/ |
| EchoServer.java | 40 * packets. Once a packet is received, a 2-second sleep is initiated. 91 * packet boundaries and sizes of the requests - that is, 93 * in a packet, the echo packet should have a payload of 96 * in a single large buffer, causing us to loose the packet 98 * response packet. The ECHO_MIU parameter determines exactly that. 124 // Split up the packet in ECHO_MIU size packets 291 LlcpPacket packet; local 303 packet = socket.receive(); 304 if (packet == null || packet.getDataBuffer() == null) [all...] |
| /device/lge/mako/camera/QCamera/HAL/core/src/ |
| QCameraHWI.cpp | 2129 cam_sock_packet_t packet; local 2147 cam_sock_packet_t packet; local [all...] |
| QCameraHWI_Still.cpp | 2441 cam_sock_packet_t packet; local 2490 cam_sock_packet_t packet; local [all...] |
| /device/lge/mako/camera/ |
| QCameraHWI.cpp | 2307 cam_sock_packet_t packet; local 2325 cam_sock_packet_t packet; local [all...] |
| QCameraHWI_Still.cpp | 2749 cam_sock_packet_t packet; local 2800 cam_sock_packet_t packet; local 2819 cam_sock_packet_t packet; local [all...] |
| /external/chromium_org/media/cast/test/ |
| sender.cc | 510 // Call FFmpeg to fetch one packet. 512 ScopedAVPacket packet(new AVPacket()); 513 if (av_read_frame(av_format_context_, packet.get()) < 0) { 515 packet.reset(); 516 return packet.Pass(); 519 int stream_index = static_cast<int>(packet->stream_index); 525 // Ignore unknown packet. 526 LOG(INFO) << "Unknown packet."; 527 packet.reset(); 529 return packet.Pass() 664 ScopedAVPacket packet = DemuxOnePacket(&audio_packet); local [all...] |
| /external/chromium_org/net/quic/ |
| quic_connection.cc | 82 // This alarm will be scheduled any time a data-bearing packet is sent out. 103 // a delay before sending packets and fires when the packet may be sent. 172 QuicConnection::QueuedPacket::QueuedPacket(SerializedPacket packet, 175 : sequence_number(packet.sequence_number), 176 packet(packet.packet), 180 packet.retransmittable_frames != NULL) ? 182 handshake(packet.retransmittable_frames == NULL ? 183 NOT_HANDSHAKE : packet.retransmittable_frames->HasCryptoHandshake()) 1681 QuicEncryptedPacket* packet = undecryptable_packets_.front(); local [all...] |
| quic_connection.h | 121 // Called when a packet has been sent. 125 const QuicEncryptedPacket& packet, 128 // Called when the contents of a packet have been retransmitted as 129 // a new packet. 134 // Called when a packet has been received, but before it is 138 const QuicEncryptedPacket& packet) {} 140 // Called when the protocol version on the received packet doensn't match 144 // Called when the complete header of a packet has been parsed. 179 // Called when a public reset packet has been received. 180 virtual void OnPublicResetPacket(const QuicPublicResetPacket& packet) {} 526 QuicPacket* packet; member in struct:net::QuicConnection::QueuedPacket [all...] |
| quic_framer_test.cc | 48 // offset and the last frame in a packet. 64 // Index into the private flags offset in the data packet header. 99 // Index into the message tag of the public reset packet. 219 const QuicPublicResetPacket& packet) OVERRIDE { 220 public_reset_packet_.reset(new QuicPublicResetPacket(packet)); 224 const QuicVersionNegotiationPacket& packet) OVERRIDE { 225 version_negotiation_packet_.reset(new QuicVersionNegotiationPacket(packet)); 386 QuicPacket* packet) { 388 LOG(ERROR) << "Encrypted incorrect packet sequence number. expected " 393 if (packet->AssociatedData() != encrypter_->associated_data_) 618 char packet[] = { 0x00 }; local 625 unsigned char packet[kMaxPacketSize + 1] = { local 657 unsigned char packet[] = { local 711 unsigned char packet[] = { local 767 unsigned char packet[] = { local 823 unsigned char packet[] = { local 875 unsigned char packet[] = { local 934 unsigned char packet[] = { local 989 unsigned char packet[] = { local 1044 unsigned char packet[] = { local 1096 unsigned char packet[] = { local 1124 unsigned char packet[] = { local 1149 unsigned char packet[] = { local 1176 unsigned char packet[] = { local 1199 unsigned char packet[] = { local 1221 unsigned char packet[] = { local 1268 unsigned char packet[] = { local 1316 unsigned char packet[] = { local 1365 unsigned char packet[] = { local 1414 unsigned char packet[] = { local 1463 unsigned char packet[] = { local 1517 unsigned char packet[] = { local 1558 unsigned char packet[] = { local 1631 unsigned char packet[] = { local 1691 unsigned char packet[] = { local 1800 unsigned char packet[] = { local 1895 unsigned char packet[] = { local 1999 unsigned char packet[] = { local 2114 unsigned char packet[] = { local 2168 unsigned char packet[] = { local 2229 unsigned char packet[] = { local 2303 unsigned char packet[] = { local 2381 unsigned char packet[] = { local 2432 unsigned char packet[] = { local 2522 unsigned char packet[] = { local 2574 unsigned char packet[] = { local 2602 unsigned char packet[] = { local 2656 unsigned char packet[] = { local 2726 unsigned char packet[] = { local 2784 unsigned char packet[] = { local 2845 unsigned char packet[] = { local 2897 unsigned char packet[] = { local 2943 unsigned char packet[] = { local 2972 unsigned char packet[] = { local 3034 unsigned char packet[] = { local 3068 unsigned char packet[] = { local 3140 unsigned char packet[] = { local 3176 unsigned char packet[] = { local 3227 unsigned char packet[kMaxPacketSize] = { local 3274 unsigned char packet[kMaxPacketSize] = { local 3320 unsigned char packet[kMaxPacketSize] = { local 3366 unsigned char packet[kMaxPacketSize] = { local 3415 unsigned char packet[] = { local 3467 unsigned char packet[] = { local 3522 unsigned char packet[] = { local 3564 unsigned char packet[] = { local 3607 unsigned char packet[] = { local 3672 unsigned char packet[] = { local 3746 unsigned char packet[] = { local 3862 unsigned char packet[] = { local 3921 unsigned char packet[] = { local 3976 unsigned char packet[] = { local 4038 unsigned char packet[] = { local 4085 unsigned char packet[] = { local 4153 unsigned char packet[] = { local 4211 unsigned char packet[] = { local 4262 unsigned char packet[] = { local 4314 unsigned char packet[] = { local 4359 unsigned char packet[] = { local 4400 unsigned char packet[] = { local 4440 unsigned char packet[] = { local 4484 unsigned char packet[] = { local 4542 unsigned char packet[] = { local 4574 unsigned char packet[] = { local 4608 unsigned char packet[] = { local 4828 unsigned char packet[] = { local 4863 unsigned char packet[] = { local 4900 unsigned char packet[] = { local [all...] |
| /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
| fakewebrtcvoiceengine.h | 258 std::string packet = channels_[channel]->packets.front(); local 259 result = (packet == std::string(static_cast<const char*>(data), len)); [all...] |
| webrtcvoiceengine_unittest.cc | 169 talk_base::Buffer packet(data, len); 170 channel_->OnPacketReceived(&packet, talk_base::PacketTime()); 2430 char packet[sizeof(kPcmuFrame)]; local [all...] |
| /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
| neteq_impl.cc | 35 #include "webrtc/modules/audio_coding/neteq/packet.h" 342 // RTP packet. 420 LOG_F(LS_ERROR) << "Sync-packet with an unacceptable payload type " 427 // Even if |current_rtp_payload_type_| is 0xFF, sync-packet isn't 429 LOG_F(LS_ERROR) << "Changing codec, SSRC or first packet " 430 "with sync-packet."; 437 // Convert to Packet. 438 // Create |packet| within this separate scope, since it should not be used 439 // directly once it's been inserted in the packet list. This way, |packet| 441 Packet* packet = new Packet; local 1127 const Packet* packet = packet_list->front(); local 1228 Packet* packet = NULL; local 1543 Packet* packet = packet_list->front(); local 1765 Packet* packet = packet_buffer_->GetNextPacket(&discard_count); local [all...] |
| /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/ |
| rtcp_receiver.cc | 245 *RTCPArrivalTimeFrac = _lastReceivedSRNTPfrac; // local NTP time when we received a RTCP packet with a send block 326 // next top level packet. 404 const RTCPUtility::RTCPPacket& rtcpPacket = rtcpParser.Packet(); 409 // The synchronization source identifier for the originator of this SR packet 412 // The source of the packet sender, same as of SR? or is this a CE? 483 // This will be called once per report block in the RTCP packet. 485 // Each packet has max 31 RR blocks. 729 // time since last received rtcp packet 737 // no rtcp packet for the last five regular intervals, reset limitations 804 const RTCPUtility::RTCPPacket& rtcpPacket = rtcpParser.Packet(); 898 const RTCPUtility::RTCPPacket& packet = parser.Packet(); local 908 const RTCPUtility::RTCPPacket& packet = parser.Packet(); local 927 const RTCPUtility::RTCPPacket& packet = parser.Packet(); local [all...] |
| /external/deqp/modules/egl/ |
| teglRenderTests.cpp | 223 rr::VertexPacket& packet = *packets[packetNdx]; local 226 packet.position = rr::readVertexAttribFloat(inputs[positionAttrLoc], packet.instanceNdx, packet.vertexNdx); 229 packet.outputs[VaryingLoc_Color] = rr::readVertexAttribFloat(inputs[colorAttrLoc], packet.instanceNdx, packet.vertexNdx); 237 rr::FragmentPacket& packet = packets[packetNdx]; local 240 rr::writeFragmentOutput(context, packetNdx, fragNdx, 0, rr::readVarying<float>(packet, context, VaryingLoc_Color, fragNdx)); 929 DrawOpPacket& packet = packets[threadNdx][packetNdx] local [all...] |
| /external/deqp/modules/gles2/functional/ |
| es2fTextureSpecificationTests.cpp | 141 rr::VertexPacket& packet = *packets[packetNdx]; local 143 packet.position = rr::readVertexAttribFloat(inputs[0], packet.instanceNdx, packet.vertexNdx); 144 packet.outputs[0] = rr::readVertexAttribFloat(inputs[1], packet.instanceNdx, packet.vertexNdx); 202 rr::VertexPacket& packet = *packets[packetNdx]; local 204 packet.position = rr::readVertexAttribFloat(inputs[0], packet.instanceNdx, packet.vertexNdx) 284 rr::VertexPacket& packet = *packets[packetNdx]; local [all...] |
| es2fTextureUnitTests.cpp | 456 rr::VertexPacket& packet = *(packets[packetNdx]); local 458 packet.position = rr::readVertexAttribFloat(inputs[0], packet.instanceNdx, packet.vertexNdx); 459 packet.outputs[0] = rr::readVertexAttribFloat(inputs[1], packet.instanceNdx, packet.vertexNdx); 471 rr::FragmentPacket& packet = packets[packetNdx]; local 482 rr::readTriangleVarying<float>(packet, context, 0, 0).xy(), 483 rr::readTriangleVarying<float>(packet, context, 0, 1).xy() [all...] |