HomeSort by relevance Sort by last modified time
    Searched defs:packet (Results 76 - 100 of 615) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/
pg.h 30 char packet[12]; member in struct:pg_write_hdr
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethod003Test.java 57 CommandPacket packet = new CommandPacket( local
60 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
61 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL);
62 packet.setNextValueAsInt(1);
63 packet.setNextValueAsByte((byte) 4); // class-only modifier.
64 packet.setNextValueAsReferenceTypeID(debuggeeTypeID);
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
96 packet = new CommandPacket(
99 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
100 packet.setNextValueAsInt(requestID)
    [all...]
NewInstance002Test.java 58 CommandPacket packet = new CommandPacket( local
61 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
62 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL);
63 packet.setNextValueAsInt(1);
64 packet.setNextValueAsByte((byte) 4); // class-only modifier.
65 packet.setNextValueAsReferenceTypeID(debuggeeTypeID);
66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
97 packet = new CommandPacket(
100 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
101 packet.setNextValueAsInt(requestID)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethod002Test.java 57 CommandPacket packet = new CommandPacket( local
60 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
61 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL);
62 packet.setNextValueAsInt(1);
63 packet.setNextValueAsByte((byte) 4); // class-only modifier.
64 packet.setNextValueAsReferenceTypeID(debuggeeTypeID);
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
96 packet = new CommandPacket(
99 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
100 packet.setNextValueAsInt(requestID)
    [all...]
InvokeMethod003Test.java 59 CommandPacket packet = new CommandPacket( local
62 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
63 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL);
64 packet.setNextValueAsInt(1);
65 packet.setNextValueAsByte((byte) 4); // class-only modifier.
66 packet.setNextValueAsReferenceTypeID(debuggeeTypeID);
67 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
98 packet = new CommandPacket(
101 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
102 packet.setNextValueAsInt(requestID)
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_statistic.h 47 __u32 packet; member in struct:xt_statistic_info::__anon667::__anon669
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_statistic.h 36 u_int32_t packet; member in struct:xt_statistic_info::__anon1404::__anon1406
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_statistic.h 47 __u32 packet; member in struct:xt_statistic_info::__anon2258::__anon2260
  /development/samples/ToyVpn/server/linux/
ToyVpnServer.cpp 108 char packet[1024]; local
112 int n = recvfrom(tunnel, packet, sizeof(packet), 0,
117 packet[n] = 0;
118 } while (packet[0] != 0 || strcmp(secret, &packet[1]));
201 // Send the parameters several times in case of packet loss.
206 // Allocate the buffer for a single packet.
207 char packet[32767]; local
219 // Read the outgoing packet from the input stream
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
NewInstanceTest.java 71 CommandPacket packet = new CommandPacket( local
74 packet.setNextValueAsString(testedArrayRefs[i]);
75 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
98 packet = new CommandPacket(
101 packet.setNextValueAsReferenceTypeID(typeArrayID);
102 packet.setNextValueAsInt(10);
103 reply = debuggeeWrapper.vmMirror.performCommand(packet);
120 packet = new CommandPacket(
123 packet.setNextValueAsObjectID(newArray.objectID);
124 reply = debuggeeWrapper.vmMirror.performCommand(packet);
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassLoaderReference/
VisibleClassesTest.java 61 CommandPacket packet = new CommandPacket( local
64 packet.setNextValueAsClassLoaderID(0);
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
ChildrenTest.java 60 CommandPacket packet; local
69 packet = new CommandPacket(
72 packet.setNextValueAsThreadID(threadID);
73 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
80 packet = new CommandPacket(
83 packet.setNextValueAsThreadID(groupID);
84 reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FrameCountTest.java 69 CommandPacket packet = new CommandPacket( local
72 packet.setNextValueAsThreadID(threadID);
73 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
94 CommandPacket packet = new CommandPacket( local
97 packet.setNextValueAsThreadID(threadID);
98 packet.setNextValueAsInt(0);
99 packet.setNextValueAsInt(-1);
100 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
NameTest.java 56 CommandPacket packet; local
62 packet = new CommandPacket(
65 packet.setNextValueAsThreadID(threadID);
67 thrdReply = debuggeeWrapper.vmMirror.performCommand(packet);
StatusTest.java 67 CommandPacket packet = new CommandPacket( local
70 packet.setNextValueAsThreadID(threadID);
72 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
124 CommandPacket packet = new CommandPacket( local
127 packet.setNextValueAsThreadID(threadID);
129 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
ThreadGroupTest.java 60 CommandPacket packet; local
74 packet = new CommandPacket(
77 packet.setNextValueAsThreadID(threadID);
79 replyThread = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ClassPathsTest.java 54 * <BR>&nbsp;&nbsp; - there are no extra data in the reply packet;
59 CommandPacket packet = new CommandPacket( local
64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
ClassesBySignatureTest.java 55 * <BR>&nbsp;&nbsp; - there are no extra data in the reply packet;
60 CommandPacket packet = new CommandPacket( local
63 packet.setNextValueAsString(SIGNATURE001);
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
97 packet = new CommandPacket(
100 packet.setNextValueAsReferenceTypeID(typeID);
102 replySignature = debuggeeWrapper.vmMirror.performCommand(packet);
IDSizesTest.java 51 CommandPacket packet = new CommandPacket( local
55 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
ReleaseEventsTest.java 75 CommandPacket packet = new CommandPacket( local
79 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
86 packet = new CommandPacket(
90 reply = debuggeeWrapper.vmMirror.performCommand(packet);
SuspendTest.java 56 CommandPacket packet = new CommandPacket( local
60 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
79 packet = new CommandPacket(
82 packet.setNextValueAsReferenceTypeID(threadID);
84 replyName = debuggeeWrapper.vmMirror.performCommand(packet);
VersionTest.java 57 CommandPacket packet = new CommandPacket( local
61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
  /external/chromium_org/media/cast/transport/transport/
udp_transport_unittest.cc 29 void ReceivedPacket(scoped_ptr<Packet> packet) {
30 packet_ = std::string(packet->size(), '\0');
31 std::copy(packet->begin(), packet->end(), packet_.begin());
35 std::string packet() const { return packet_; } function in class:media::cast::transport::MockPacketReceiver
48 void SendPacket(UdpTransport* transport, Packet packet) {
50 transport->SendPacket(new base::RefCountedData<Packet>(packet), cb)
76 Packet packet; local
    [all...]

Completed in 1546 milliseconds

1 2 34 5 6 7 8 91011>>