HomeSort by relevance Sort by last modified time
    Searched defs:reply (Results 101 - 125 of 720) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
MethodExitTest.java 60 ReplyPacket reply = debuggeeWrapper.vmMirror.setMethodExit(methodExitClassNameRegexp); local
61 checkReplyPacket(reply, "Set METHOD_EXIT event");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
BytecodesTest.java 66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
67 checkReplyPacket(reply, "Method::Bytecodes command");
69 int bytes = reply.getNextValueAsInt();
74 bytecode[j] = reply.getNextValueAsByte();
IsObsoleteTest.java 64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
65 checkReplyPacket(reply, "Method::IsObsolete command");
67 boolean isObsolete = reply.getNextValueAsBoolean();
69 assertAllDataRead(reply);
LineTableTest.java 57 ReplyPacket reply = getLineTable(classID, methodsInfo[i].getMethodID()); local
59 long start = reply.getNextValueAsLong();
61 long end = reply.getNextValueAsLong();
64 int lines = reply.getNextValueAsInt();
68 long lineCodeIndex = reply.getNextValueAsLong();
70 int lineNumber = reply.getNextValueAsInt();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
ProxyThisObjectTest.java 46 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
47 checkReplyPacket(reply, "StackFrame.ThisObject");
48 TaggedObject taggedObject = reply.getNextValueAsTaggedObject();
49 assertAllDataRead(reply);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
NameTest.java 71 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
72 checkReplyPacket(reply, "ThreadReference::ThreadGroup command");
74 groupID = reply.getNextValueAsThreadGroupID();
148 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
150 checkReplyPacket(reply, "ThreadGroupReference::Name command", expectedError);
ParentTest.java 72 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
73 checkReplyPacket(reply, "ThreadReference::ThreadGroup command");
75 groupID = reply.getNextValueAsThreadGroupID();
82 reply = debuggeeWrapper.vmMirror.performCommand(packet);
83 checkReplyPacket(reply, "ThreadGroupReference::Parent command");
85 groupID = reply.getNextValueAsThreadGroupID();
158 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
160 checkReplyPacket(reply, "ThreadGroupReference::Name command", expectedError);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FrameCountTest.java 74 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
75 checkReplyPacket(reply, "ThreadReference::FrameCount command");
77 int frameCount = reply.getNextValueAsInt();
101 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
102 err = reply.getErrorCode();
108 int framesCount = reply.getNextValueAsInt();
NameTest.java 55 ReplyPacket thrdReply, reply = debuggeeWrapper.vmMirror.getAllThreadID(); local
60 int threads = reply.getNextValueAsInt();
62 threadID = reply.getNextValueAsThreadID();
OwnedMonitorsTest.java 78 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
79 checkReplyPacket(reply, "ThreadReference::OwnedMonitors command");
81 int owned = reply.getNextValueAsInt();
88 TaggedObject tobj = reply.getNextValueAsTaggedObject();
StatusTest.java 73 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
74 checkReplyPacket(reply, "ThreadReference::Status command");
76 int threadStatus = reply.getNextValueAsInt();
77 int suspendStatus = reply.getNextValueAsInt();
130 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
131 checkReplyPacket(reply, "ThreadReference::Status command");
133 int threadStatus = reply.getNextValueAsInt();
134 int suspendStatus = reply.getNextValueAsInt();
ThreadGroupTest.java 63 ReplyPacket replyThread, reply = debuggeeWrapper.vmMirror.getAllThreadID(); local
64 int threads = reply.getNextValueAsInt();
72 threadID = reply.getNextValueAsThreadID();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VMDebug/
VMDebugTest.java 52 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
54 checkReplyPacket(reply, "StringReference::Value command", expectedError);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ClassPathsTest.java 55 * <BR>&nbsp;&nbsp; - there are no extra data in the reply packet;
65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
66 checkReplyPacket(reply, "VirtualMachine::ClassPaths command");
68 String baseDir = reply.getNextValueAsString();
73 int classpaths = reply.getNextValueAsInt();
76 String path = reply.getNextValueAsString();
83 int bootclasspaths = reply.getNextValueAsInt();
87 String path = reply.getNextValueAsString();
92 assertAllDataRead(reply);
ClassesBySignatureTest.java 56 * <BR>&nbsp;&nbsp; - there are no extra data in the reply packet;
66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
67 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
75 int classes = reply.getNextValueAsInt();
85 refTypeTag = reply.getNextValueAsByte();
86 typeID = reply.getNextValueAsReferenceTypeID();
87 status = reply.getNextValueAsInt();
115 assertAllDataRead(reply);
HoldEventsTest.java 70 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
71 checkReplyPacket(reply, "VirtualMachine::HoldEvents command");
IDSizesTest.java 56 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
57 checkReplyPacket(reply, "VirtualMachine::IDSizes command");
59 int fieldIDSize = reply.getNextValueAsInt();
60 int methodIDSize = reply.getNextValueAsInt();
61 int objectIDSize = reply.getNextValueAsInt();
62 int referenceTypeIDSize = reply.getNextValueAsInt();
63 int frameIDSize = reply.getNextValueAsInt();
ReleaseEventsTest.java 80 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
81 checkReplyPacket(reply, "VirtualMachine::HoldEvents command");
91 reply = debuggeeWrapper.vmMirror.performCommand(packet);
92 checkReplyPacket(reply, "VirtualMachine::ReleaseEvents command");
SuspendTest.java 61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
62 checkReplyPacket(reply, "VirtualMachine::Suspend command");
64 reply = debuggeeWrapper.vmMirror.getAllThreadID();
71 int threads = reply.getNextValueAsInt();
77 threadID = reply.getNextValueAsThreadID() ;
86 checkReplyPacket(reply, "ThreadReference::Status command");
VersionTest.java 62 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
64 String description = reply.getNextValueAsString();
65 int jdwpMajor = reply.getNextValueAsInt();
66 int jdwpMinor = reply.getNextValueAsInt();
67 String vmVersion = reply.getNextValueAsString();
68 String vmName = reply.getNextValueAsString();
  /external/libxkbcommon/xkbcommon/src/x11/
util.c 45 const xcb_query_extension_reply_t *reply = local
47 if (!reply) {
52 if (!reply->present) {
57 base_event = reply->first_event;
58 base_error = reply->first_error;
65 xcb_xkb_use_extension_reply_t *reply = local
68 if (!reply) {
76 if (!reply->supported) {
80 free(reply);
84 server_major = reply->serverMajor
114 xcb_xkb_get_device_info_reply_t *reply = local
129 xcb_get_atom_name_reply_t *reply; local
176 xcb_get_atom_name_reply_t *reply; local
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_close/
2-1.c 41 int send_receive(int read_pipe, int write_pipe, char send, char *reply);
100 char reply; local
117 rval = send_receive(read_pipe, write_pipe, 'a', &reply);
124 if (reply != 'b') {
138 rval = send_receive(read_pipe, write_pipe, 'c', &reply);
143 if (reply == 'd') {
146 } else if (reply == 'e') {
150 puts(ERROR_PREFIX "bad reply from child");
159 char reply; local
163 rval = send_receive(read_pipe, write_pipe, 0, &reply);
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_unlink/
2-1.c 49 int send_receive(int read_pipe, int write_pipe, char send, char *reply);
99 char reply; local
108 rval = send_receive(read_pipe, write_pipe, 'a', &reply);
112 if (reply != 'b') {
142 char reply; local
144 rval = send_receive(read_pipe, write_pipe, 0, &reply);
148 if (reply != 'a') {
162 int send_receive(int read_pipe, int write_pipe, char send, char *reply)
173 if (reply) {
174 bytes = read(read_pipe, reply, 1)
    [all...]
2-2.c 44 int send_receive(int read_pipe, int write_pipe, char send, char *reply);
94 char reply; local
103 rval = send_receive(read_pipe, write_pipe, 'a', &reply);
107 if (reply != 'b') {
112 rval = send_receive(read_pipe, write_pipe, 'c', &reply);
116 if (reply != 'd') {
144 char reply; local
146 rval = send_receive(read_pipe, write_pipe, 0, &reply);
150 if (reply != 'a') {
159 rval = send_receive(read_pipe, write_pipe, 'b', &reply);
    [all...]
  /external/mesa3d/src/glx/
singlepix.c 42 xGLXGetSeparableFilterReply reply; local
57 compsize = reply.length << 2;
63 width = reply.width;
64 height = reply.height;
133 xGLXGetSeparableFilterReply reply; local
145 (void) _XReply(dpy, (xReply *) & reply, 0, False);
147 compsize = reply.length << 2;
150 const GLint width = reply.width;
151 const GLint height = reply.height;

Completed in 930 milliseconds

1 2 3 45 6 7 8 91011>>