HomeSort by relevance Sort by last modified time
    Searched defs:packet (Results 1 - 25 of 454) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/framework/referencerenderer/
rrPrimitivePacket.cpp 21 * \brief Primitive packet
40 VertexPacket* packet; local
48 packet = m_vpalloc.alloc();
50 packet->position = position;
51 packet->pointSize = pointSize;
52 packet->primitiveID = primitiveID;
55 packet->outputs[ndx] = varyings[ndx];
57 m_emitted.push_back(packet);
rrVertexPacket.cpp 21 * \brief Vertex packet and Vertex packet allocator
85 VertexPacket* packet = *--m_singleAllocPool.end(); local
87 return packet;
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationServer.cpp 67 // StringExtractorGDBRemote packet;
71 // if (packet.
87 StringExtractorGDBRemote packet; local
88 if (WaitForPacketWithTimeoutMicroSecondsNoLock (packet, timeout_usec))
90 const StringExtractorGDBRemote::ServerPacketType packet_type = packet.GetServerPacketType ();
98 error.SetErrorString("invalid packet");
108 return SendUnimplementedResponse (packet.GetStringRef().c_str()) > 0;
111 return Handle_A (packet);
114 return Handle_qfProcessInfo (packet);
117 return Handle_qsProcessInfo (packet);
187 char packet[16]; local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
SetValuesTest.java 66 CommandPacket packet = new CommandPacket(StackFrameCommandSet.CommandSetID, local
68 packet.setNextValueAsThreadID(invalidThreadID);
69 packet.setNextValueAsFrameID(0);
70 packet.setNextValueAsInt(0);
71 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
86 CommandPacket packet = new CommandPacket(StackFrameCommandSet.CommandSetID, local
88 packet.setNextValueAsThreadID(threadID);
89 packet.setNextValueAsFrameID(0);
90 packet.setNextValueAsInt(0);
91 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
111 CommandPacket packet = new CommandPacket(StackFrameCommandSet.CommandSetID, local
154 CommandPacket packet = new CommandPacket(StackFrameCommandSet.CommandSetID, local
198 CommandPacket packet = new CommandPacket( local
    [all...]
ThisObjectTest.java 122 CommandPacket packet = new CommandPacket( local
125 packet.setNextValueAsThreadID(mainThread);
126 packet.setNextValueAsLong(frameIDs[i].getFrameID());
128 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/
AbstractReflectedTypeTestCase.java 48 CommandPacket packet = new CommandPacket( local
51 packet.setNextValueAsString(array[i].typeSignature);
52 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
75 packet = new CommandPacket(
78 packet.setNextValueAsReferenceTypeID(typeInitID);
79 ReplyPacket reply2 = debuggeeWrapper.vmMirror.performCommand(packet);
103 packet = new CommandPacket(
106 packet.setNextValueAsReferenceTypeID(typeInitID);
107 reply = debuggeeWrapper.vmMirror.performCommand(packet);
117 packet = new CommandPacket
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
BytecodesTest.java 70 CommandPacket packet = new CommandPacket( local
73 packet.setNextValueAsClassID(classID);
74 packet.setNextValueAsMethodID(methodsInfo[i].getMethodID());
75 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
IsObsoleteTest.java 69 CommandPacket packet = new CommandPacket( local
72 packet.setNextValueAsClassID(classID);
73 packet.setNextValueAsMethodID(methodsInfo[i].getMethodID());
74 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
VariableTableTest.java 60 CommandPacket packet = new CommandPacket( local
63 packet.setNextValueAsClassID(classID);
64 packet.setNextValueAsMethodID(methodsInfo[i].getMethodID());
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
VariableTableWithGenericTest.java 61 CommandPacket packet = new CommandPacket( local
64 packet.setNextValueAsClassID(classID);
65 packet.setNextValueAsMethodID(methodsInfo[i].getMethodID());
66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramPacketTest.java 35 DatagramPacket packet = new DatagramPacket(new byte[256], 256);
37 ss.receive(packet);
38 ss.send(packet);
49 DatagramPacket packet = new DatagramPacket(bytes, 6, InetAddress.getByName("localhost"), ss.getLocalPort()); local
50 cs.send(packet);
52 cs.receive(packet);
54 assertEquals(packet.getPort(), ss.getLocalPort());
  /bionic/libc/kernel/uapi/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /development/ndk/platforms/android-21/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /external/android-clat/
ring.c 16 * ring.c - packet ring buffer functions
35 logmsg(ANDROID_LOG_FATAL, "packet socket failed: %s", strerror(errno));
87 * advances to the next position in the packet ring
88 * ring - packet ring buffer
113 * reads a packet from the ring buffer and translates it
114 * read_fd - file descriptor to read original packet from
115 * write_fd - file descriptor to write translated packet to
116 * to_ipv6 - whether the packet is to be translated to ipv6 or ipv4
121 uint8_t *packet = ((uint8_t *) tp) + tp->tp_net; local
122 translate_packet(write_fd, to_ipv6, packet, tp->tp_len)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
OnthrowLaunchDebugger001.java 46 CommandPacket packet = new CommandPacket( local
50 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
CapabilitiesNewTest.java 84 * there are no extra data in the reply packet;
89 CommandPacket packet = new CommandPacket( local
93 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
CapabilitiesTest.java 49 * there are no extra data in the reply packet;
54 CommandPacket packet = new CommandPacket( local
59 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
CreateStringTest.java 56 CommandPacket packet = new CommandPacket( local
59 packet.setNextValueAsString(CHECKED_STRING);
62 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
67 packet = new CommandPacket(
70 packet.setNextValueAsObjectID(stringID);
73 reply = debuggeeWrapper.vmMirror.performCommand(packet);
DisposeObjectsTest.java 62 CommandPacket packet = new CommandPacket( local
65 packet.setNextValueAsString(CHECKED_STRING);
67 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
74 packet = new CommandPacket(
77 packet.setNextValueAsInt(1);
78 packet.setNextValueAsObjectID(stringID);
79 packet.setNextValueAsInt(0);
80 reply = debuggeeWrapper.vmMirror.performCommand(packet);
86 packet = new CommandPacket(
89 packet.setNextValueAsObjectID(stringID)
    [all...]
DisposeTest.java 55 CommandPacket packet = new CommandPacket( local
60 debuggeeWrapper.vmMirror.performCommand(packet);
66 packet = new CommandPacket(
70 debuggeeWrapper.vmMirror.performCommand(packet);
ExitTest.java 50 CommandPacket packet = new CommandPacket( local
53 packet.setNextValueAsInt(99);
55 debuggeeWrapper.vmMirror.performCommand(packet);
  /external/flac/libFLAC/
ogg_encoder_aspect.c 94 * packet. The packet is prefixed with
95 * + the one-byte packet type 0x7F
99 * - The first packet is flushed to the first page.
100 * - Each subsequent metadata block goes into its own packet.
101 * - Each metadata packet is flushed to page (this is not required,
104 * - Each subsequent FLAC audio frame goes into its own packet.
120 * Treat fLaC magic packet specially. We will note when we see it, then
121 * wait until we get the STREAMINFO and prepend it in that packet
124 ogg_packet packet; local
    [all...]
  /external/kernel-headers/original/uapi/linux/
pg.h 5 pg.h defines the user interface to the generic ATAPI packet
49 char packet[12]; /* packet command */ member in struct:pg_write_hdr
  /external/libvorbis/doc/
06-floor0.tex 27 codec setup header (third packet). configuration decode proceeds as
40 An end-of-packet condition during any of these bitstream reads renders
48 \subsubsection{packet decode} \label{vorbis:spec:floor0-decode}
50 Extracting a floor0 curve from an audio packet consists of first
56 Packet decode proceeds as follows:
62 5) if ( [booknumber] is greater than the highest number decode codebook ) then packet is undecodable
79 \item An end-of-packet condition during decode should be considered a
80 nominal occruence; if end-of-packet is reached during any read
107 vector from packet decode as well as the [floor0_order],
07-floor1.tex 33 a difference value decoded from the bitstream packet.
55 list-order Y values as decoded from an example packet are 110, 20, -5,
96 A list of floor X values is stored in the packet header in interleaved
97 format (used in list order during packet decode and synthesis). This
107 books were chosen for representation in a given packet. The
158 An end-of-packet condition while reading any aspect of a floor 1
167 \paragraph{packet decode} \label{vorbis:spec:floor1-decode}
169 Packet decode begins by checking the \varname{[nonzero]} flag:
199 12) [cval] = read from packet using codebook number
209 17) vector [floor1_Y] element ([j]+[offset]) = read from packet using codeboo
    [all...]

Completed in 1318 milliseconds

1 2 3 4 5 6 7 8 91011>>