Searched refs:packet (Results 1 - 25 of 318) sorted by relevance

1234567891011>>

/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.h78 SendUnimplementedResponse (const char *packet);
87 Handle_A (StringExtractorGDBRemote &packet);
90 Handle_qLaunchSuccess (StringExtractorGDBRemote &packet);
93 Handle_qHostInfo (StringExtractorGDBRemote &packet);
96 Handle_qLaunchGDBServer (StringExtractorGDBRemote &packet);
99 Handle_qProcessInfoPID (StringExtractorGDBRemote &packet);
102 Handle_qfProcessInfo (StringExtractorGDBRemote &packet);
105 Handle_qsProcessInfo (StringExtractorGDBRemote &packet);
108 Handle_qC (StringExtractorGDBRemote &packet);
111 Handle_qUserName (StringExtractorGDBRemote &packet);
[all...]
H A DGDBRemoteCommunicationServer.cpp67 // 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/framework/jdwp/
H A DParsedEvent.java44 protected ParsedEvent(byte suspendPolicy, Packet packet, byte eventKind) { argument
46 this.requestID = packet.getNextValueAsInt();
86 * @param packet
88 protected EventThread(byte suspendPolicy, Packet packet, byte eventKind) { argument
89 super(suspendPolicy, packet, eventKind);
90 this.threadID = packet.getNextValueAsThreadID();
112 * @param packet
114 protected EventThreadLocation(byte suspendPolicy, Packet packet, argument
116 super(suspendPolicy, packet, eventKind);
117 this.location = packet
142 EventThreadMonitor(byte suspendPolicy, Packet packet, byte eventKind) argument
175 Event_VM_START(byte suspendPolicy, Packet packet) argument
191 Event_SINGLE_STEP(byte suspendPolicy, Packet packet) argument
207 Event_BREAKPOINT(byte suspendPolicy, Packet packet) argument
223 Event_METHOD_ENTRY(byte suspendPolicy, Packet packet) argument
239 Event_METHOD_EXIT(byte suspendPolicy, Packet packet) argument
257 Event_METHOD_EXIT_WITH_RETURN_VALUE(byte suspendPolicy, Packet packet) argument
278 Event_MONITOR_CONTENDED_ENTER(byte suspendPolicy, Packet packet) argument
295 Event_MONITOR_CONTENDED_ENTERED(byte suspendPolicy, Packet packet) argument
314 Event_MONITOR_WAIT(byte suspendPolicy, Packet packet) argument
337 Event_MONITOR_WAITED(byte suspendPolicy, Packet packet) argument
362 Event_EXCEPTION(byte suspendPolicy, Packet packet) argument
394 Event_THREAD_START(byte suspendPolicy, Packet packet) argument
410 Event_THREAD_DEATH(byte suspendPolicy, Packet packet) argument
434 Event_CLASS_PREPARE(byte suspendPolicy, Packet packet) argument
484 Event_CLASS_UNLOAD(byte suspendPolicy, Packet packet) argument
516 Event_FIELD_ACCESS(byte suspendPolicy, Packet packet) argument
573 Event_FIELD_MODIFICATION(byte suspendPolicy, Packet packet) argument
628 Event_VM_DEATH(byte suspendPolicy, Packet packet) argument
640 parseEventPacket(Packet packet) argument
[all...]
/external/ppp/pppd/plugins/rp-pppoe/
H A Dcommon.c35 * packet -- the PPPoE discovery packet to parse
36 * func -- function called for each tag in the packet
41 * Parses a PPPoE discovery packet, calling "func" for each tag in the packet.
45 parsePacket(PPPoEPacket *packet, ParseFunc *func, void *extra) argument
47 UINT16_t len = ntohs(packet->length);
51 if (PPPOE_VER(packet->vertype) != 1) {
52 error("Invalid PPPoE version (%d)", PPPOE_VER(packet->vertype));
55 if (PPPOE_TYPE(packet
98 PPPoEPacket packet; local
170 pppoe_printpkt(PPPoEPacket *packet, void (*printer)(void *, char *, ...), void *arg) argument
281 pppoe_log_packet(const char *prefix, PPPoEPacket *packet) argument
[all...]
H A Ddebug.c78 * packet -- a PPPoE packet
83 * Dumps the PPPoE packet to fp in an easy-to-read format
86 dumpPacket(FILE *fp, PPPoEPacket *packet, char const *dir) argument
88 int len = ntohs(packet->length);
97 UINT16_t type = etherType(packet);
113 switch(packet->code) {
125 (int) ntohs(packet->session),
132 (unsigned) packet->ethHdr.h_source[0],
133 (unsigned) packet
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_scene_queue.c92 struct scene_packet packet; local
95 packet.scene = NULL;
98 &packet.header,
99 sizeof packet / 4,
104 return packet.scene;
112 struct scene_packet packet; local
114 packet.header.dwords = sizeof packet / 4;
115 packet.header.data24 = 0;
116 packet
[all...]
/external/deqp/framework/referencerenderer/
H A DrrPrimitivePacket.cpp21 * \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);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DDisposeObjectsTest.java62 CommandPacket packet = new CommandPacket(
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
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DNewInstanceTest.java64 CommandPacket packet = new CommandPacket(
68 packet.setNextValueAsString(classSig);
69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
87 packet = new CommandPacket(
90 packet.setNextValueAsClassID(typeID);
91 reply = debuggeeWrapper.vmMirror.performCommand(packet);
111 packet = new CommandPacket(
114 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
115 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL);
116 packet
[all...]
H A DInvokeMethod003Test.java57 CommandPacket packet = new CommandPacket(
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
[all...]
H A DNewInstance002Test.java58 CommandPacket packet = new CommandPacket(
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
[all...]
H A DInvokeMethodTest.java66 CommandPacket packet = new CommandPacket(
70 packet.setNextValueAsString(classSig);
71 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
91 packet = new CommandPacket(
94 packet.setNextValueAsClassID(typeID);
95 reply = debuggeeWrapper.vmMirror.performCommand(packet);
115 packet = new CommandPacket(
118 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
119 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL);
120 packet
[all...]
H A DInvokeMethod002Test.java58 CommandPacket packet = new CommandPacket(
62 packet.setNextValueAsString(classSig);
64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
84 packet = new CommandPacket(
87 packet.setNextValueAsClassID(classID);
89 reply = debuggeeWrapper.vmMirror.performCommand(packet);
109 packet = new CommandPacket(
112 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
113 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL);
114 packet
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_ringbuffer.h22 const struct util_packet *packet );
25 struct util_packet *packet,
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
H A DInvokeMethodTest.java60 CommandPacket packet = new CommandPacket(
63 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
64 packet.setNextValueAsByte(JDWPConstants.SuspendPolicy.ALL);
65 packet.setNextValueAsInt(1);
66 packet.setNextValueAsByte((byte) 5);
67 packet.setNextValueAsString("*.InvokeMethodDebuggee");
70 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
107 CommandPacket packet = new CommandPacket(
110 packet.setNextValueAsByte(JDWPConstants.EventKind.METHOD_ENTRY);
111 packet
[all...]
H A DInvokeMethod002Test.java57 CommandPacket packet = new CommandPacket(
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
[all...]
H A DInvokeMethod003Test.java59 CommandPacket packet = new CommandPacket(
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
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
H A DSetValuesTest.java66 CommandPacket packet = new CommandPacket(StackFrameCommandSet.CommandSetID,
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,
88 packet.setNextValueAsThreadID(threadID);
89 packet.setNextValueAsFrameID(0);
90 packet.setNextValueAsInt(0);
91 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
[all...]
H A DGetValuesTest.java65 CommandPacket packet = new CommandPacket(StackFrameCommandSet.CommandSetID,
67 packet.setNextValueAsThreadID(invalidThreadID);
68 packet.setNextValueAsFrameID(0);
69 packet.setNextValueAsInt(0);
70 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
85 CommandPacket packet = new CommandPacket(StackFrameCommandSet.CommandSetID,
87 packet.setNextValueAsThreadID(threadID);
88 packet.setNextValueAsFrameID(0);
89 packet.setNextValueAsInt(0);
90 ReplyPacket replyPacket = debuggeeWrapper.vmMirror.performCommand(packet);
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
H A DSetValuesTest.java57 CommandPacket packet = new CommandPacket(
60 packet.setNextValueAsReferenceTypeID(classID);
61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
100 CommandPacket packet = new CommandPacket(
103 packet.setNextValueAsReferenceTypeID(classID);
104 packet.setNextValueAsInt(1);
105 packet.setNextValueAsFieldID(fieldID);
107 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
122 CommandPacket packet = new CommandPacket(
125 packet
[all...]
H A DLengthTest.java59 CommandPacket packet = new CommandPacket(
62 packet.setNextValueAsReferenceTypeID(classID);
63 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
92 CommandPacket packet = new CommandPacket(
95 packet.setNextValueAsReferenceTypeID(classID);
96 packet.setNextValueAsInt(1);
97 packet.setNextValueAsFieldID(fieldID);
98 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
109 packet = new CommandPacket(
112 packet
[all...]
/external/dnsmasq/contrib/wrt/
H A Ddhcp_lease_time.c76 return NULL; /* malformed packet */
83 return NULL; /* malformed packet */
86 return NULL; /* malformed packet */
137 struct dhcp_packet packet; local
138 unsigned char *p = packet.options;
157 memset(&packet, 0, sizeof(packet));
159 packet.hlen = 0;
160 packet.htype = 0;
162 packet
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dpg.h5 pg.h defines the user interface to the generic ATAPI packet
49 char packet[12]; /* packet command */ member in struct:pg_write_hdr
/external/jmdns/src/javax/jmdns/impl/
H A DSocketListener.java38 DatagramPacket packet = new DatagramPacket(buf, buf.length);
40 packet.setLength(buf.length);
41 this._jmDNSImpl.getSocket().receive(packet);
46 if (this._jmDNSImpl.getLocalHost().shouldIgnorePacket(packet)) {
50 DNSIncoming msg = new DNSIncoming(packet);
55 if (packet.getPort() != DNSConstants.MDNS_PORT) {
56 this._jmDNSImpl.handleQuery(msg, packet.getAddress(), packet.getPort());
/external/valgrind/gdbserver_tests/
H A Dmchelp.stderrB.exp5 error reading packet

Completed in 1112 milliseconds

1234567891011>>