HomeSort by relevance Sort by last modified time
    Searched refs:reply (Results 1 - 25 of 340) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
NewInstanceTest.java 69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
70 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
72 int classes = reply.getNextValueAsInt();
74 byte refTypeTag = reply.getNextValueAsByte();
75 long typeID = reply.getNextValueAsReferenceTypeID();
76 int status = reply.getNextValueAsInt();
81 assertAllDataRead(reply);
91 reply = debuggeeWrapper.vmMirror.performCommand(packet);
92 checkReplyPacket(reply, "ReferenceType::Methods command");
94 int declared = reply.getNextValueAsInt()
278 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
    [all...]
InvokeMethod002Test.java 64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
65 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
67 int classes = reply.getNextValueAsInt();
70 byte refTypeTag = reply.getNextValueAsByte();
71 long classID = reply.getNextValueAsReferenceTypeID();
72 int status = reply.getNextValueAsInt();
73 assertAllDataRead(reply);
89 reply = debuggeeWrapper.vmMirror.performCommand(packet);
90 checkReplyPacket(reply, "ReferenceType::Methods command");
92 int declared = reply.getNextValueAsInt()
    [all...]
SuperClassTest.java 48 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
49 checkReplyPacket(reply, "ClassType.Superclass command", errorExpected);
50 return reply;
53 private void asserSuperClassReplyIsValid(ReplyPacket reply, String expectedSignature) {
54 assertTrue(reply.getErrorCode() == JDWPConstants.Error.NONE);
55 long superClassID = reply.getNextValueAsClassID();
89 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
91 asserSuperClassReplyIsValid(reply, "Ljava/lang/Object;");
99 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
101 asserSuperClassReplyIsValid(reply, "Ljava/lang/Object;")
109 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
118 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
128 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); local
153 ReplyPacket reply = jdwpGetSuperClassReply(interfaceID, JDWPConstants.Error.NONE); local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
LengthTest.java 63 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
64 checkReplyPacket(reply, "ReferenceType::Fields command");
66 int declared = reply.getNextValueAsInt();
68 long fieldID = reply.getNextValueAsFieldID();
69 String fieldName = reply.getNextValueAsString();
70 reply.getNextValueAsString();
71 reply.getNextValueAsInt();
98 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
99 checkReplyPacket(reply, "ReferenceType::GetValues command");
101 int values = reply.getNextValueAsInt()
    [all...]
SetValuesTest.java 61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
62 checkReplyPacket(reply, "ReferenceType::Fields command");
64 int declared = reply.getNextValueAsInt();
66 long fieldID = reply.getNextValueAsFieldID();
67 String name = reply.getNextValueAsString();
68 reply.getNextValueAsString();
69 reply.getNextValueAsInt();
107 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
108 checkReplyPacket(reply, "ReferenceType::GetValues command");
110 assertEquals("GetValuesCommand returned invalid number of values,", 1, reply.getNextValueAsInt())
132 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
write_on_cache_file.cc 20 // Runs |close_callback| and |reply|.
22 const FileOperationCallback& reply,
26 DCHECK(!reply.is_null());
27 reply.Run(error);
35 const FileOperationCallback& reply,
44 base::Bind(&RunCloseCallbackAndReplyTask, close_callback, reply, error));
61 const FileOperationCallback& reply) {
65 DCHECK(!reply.is_null());
71 base::Bind(&WriteOnCacheFileAfterOpenFile, path, callback, reply));
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
NewInstanceTest.java 75 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
76 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
78 int classes = reply.getNextValueAsInt();
84 byte refInitTypeTag = reply.getNextValueAsByte();
85 long typeArrayID = reply.getNextValueAsReferenceTypeID();
86 int status = reply.getNextValueAsInt();
103 reply = debuggeeWrapper.vmMirror.performCommand(packet);
104 checkReplyPacket(reply, "ArrayType::NewInstance command");
106 TaggedObject newArray = reply.getNextValueAsTaggedObject();
107 assertAllDataRead(reply);
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
VariableTableWithGenericTest.java 66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
67 checkReplyPacket(reply, "Method::VariableTableWithGeneric command");
69 int argCnt = reply.getNextValueAsInt();
71 int slots = reply.getNextValueAsInt();
74 long codeIndex = reply.getNextValueAsLong();
76 String name = reply.getNextValueAsString();
78 String signature = reply.getNextValueAsString();
80 String genericSignature = reply.getNextValueAsString();
82 int length = reply.getNextValueAsInt();
84 int slot = reply.getNextValueAsInt()
    [all...]
VariableTableTest.java 65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
66 checkReplyPacket(reply, "Method::VariableTable command");
68 int argCnt = reply.getNextValueAsInt();
70 int slots = reply.getNextValueAsInt();
73 long codeIndex = reply.getNextValueAsLong();
75 String name = reply.getNextValueAsString();
77 String signature = reply.getNextValueAsString();
79 int length = reply.getNextValueAsInt();
81 int slot = reply.getNextValueAsInt();
LineTableTest.java 58 ReplyPacket reply = getLineTable(classID, methodsInfo[i].getMethodID()); local
60 long start = reply.getNextValueAsLong();
62 long end = reply.getNextValueAsLong();
65 int lines = reply.getNextValueAsInt();
69 long lineCodeIndex = reply.getNextValueAsLong();
71 int lineNumber = reply.getNextValueAsInt();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
CapabilitiesTest.java 49 * there are no extra data in the reply packet;
59 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
60 checkReplyPacket(reply, "VirtualMachine::Capabilities command");
62 boolean canWatchFieldModification = reply.getNextValueAsBoolean();
63 boolean canWatchFieldAccess = reply.getNextValueAsBoolean();
64 boolean canGetBytecodes = reply.getNextValueAsBoolean();
65 boolean canGetSyntheticAttribute = reply.getNextValueAsBoolean();
66 boolean canGetOwnedMonitorInfo = reply.getNextValueAsBoolean();
67 boolean canGetCurrentContendedMonitor = reply.getNextValueAsBoolean();
68 boolean canGetMonitorInfo = reply.getNextValueAsBoolean()
    [all...]
IDSizesTest.java 55 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
56 checkReplyPacket(reply, "VirtualMachine::IDSizes command");
58 int fieldIDSize = reply.getNextValueAsInt();
59 int methodIDSize = reply.getNextValueAsInt();
60 int objectIDSize = reply.getNextValueAsInt();
61 int referenceTypeIDSize = reply.getNextValueAsInt();
62 int frameIDSize = reply.getNextValueAsInt();
DisposeObjectsTest.java 67 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
69 long stringID = reply.getNextValueAsStringID();
80 reply = debuggeeWrapper.vmMirror.performCommand(packet);
81 checkReplyPacket(reply, "VirtualMachine::DisposeObjects command");
90 reply = debuggeeWrapper.vmMirror.performCommand(packet);
91 checkReplyPacket(reply, "ObjectReference::ReferenceType command");
93 byte refTypeTag = reply.getNextValueAsByte();
94 long refTypeID = reply.getNextValueAsReferenceTypeID();
107 reply = debuggeeWrapper.vmMirror.performCommand(packet);
108 checkReplyPacket(reply, "VirtualMachine::DisposeObjects command")
    [all...]
ClassPathsTest.java 54 * <BR>&nbsp;&nbsp; - there are no extra data in the reply packet;
64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
65 checkReplyPacket(reply, "VirtualMachine::ClassPaths command");
67 String baseDir = reply.getNextValueAsString();
72 int classpaths = reply.getNextValueAsInt();
75 String path = reply.getNextValueAsString();
82 int bootclasspaths = reply.getNextValueAsInt();
86 String path = reply.getNextValueAsString();
91 assertAllDataRead(reply);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameTestCase.java 96 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
97 checkReplyPacket(reply, "ThreadReference::FrameCount command");
99 int frameCount = reply.getNextValueAsInt();
111 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
112 checkReplyPacket(reply, "ThreadReference::FramesCommand command");
114 int frames = reply.getNextValueAsInt();
117 long frameID = reply.getNextValueAsLong();
118 Location location = reply.getNextValueAsLocation();
131 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
132 checkReplyPacket(reply, "Method::VariableTable command")
155 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
174 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
187 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
197 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
208 ReplyPacket reply = debuggeeWrapper.vmMirror local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
glxreply.c 35 xGLXSingleReply reply; local
37 (void) _XReply(dpy, (xReply *) & reply, 0, False);
39 if ((reply.length > 0) || reply_is_always_array) {
41 ? (4 * reply.length) : (reply.size * size);
50 (void) memcpy(dest, &(reply.pad3), size);
54 return reply.retval;
62 xGLXSingleReply reply; local
65 (void) _XReply(dpy, (xReply *) & reply, 0, False);
68 width = reply.pad3
    [all...]
  /external/mesa3d/src/glx/apple/
glxreply.c 35 xGLXSingleReply reply; local
37 (void) _XReply(dpy, (xReply *) & reply, 0, False);
39 if ((reply.length > 0) || reply_is_always_array) {
41 ? (4 * reply.length) : (reply.size * size);
50 (void) memcpy(dest, &(reply.pad3), size);
54 return reply.retval;
62 xGLXSingleReply reply; local
65 (void) _XReply(dpy, (xReply *) & reply, 0, False);
68 width = reply.pad3
    [all...]
  /cts/hostsidetests/devicepolicy/app/SimpleApp/src/com/android/cts/launcherapps/simpleapp/
SimpleActivity.java 43 Intent reply = new Intent(); local
44 reply.setAction(ACTIVITY_LAUNCHED_ACTION);
45 sendBroadcast(reply);
  /external/chromium_org/chrome/browser/extensions/api/messaging/
message_property_provider.h 34 // Runs |reply| on the current message loop.
37 const ChannelIDCallback& reply);
46 const ChannelIDCallback& reply);
51 const ChannelIDCallback& reply,
  /external/chromium_org/third_party/mesa/src/src/glx/
glx_query.c 49 xcb_glx_query_server_string_reply_t *reply = local
58 uint32_t len = xcb_glx_query_server_string_string_length(reply);
60 memcpy(buf, xcb_glx_query_server_string_string(reply), len);
61 free(reply);
73 xcb_glx_get_string_reply_t *reply = xcb_glx_get_string_reply(c, local
82 uint32_t len = xcb_glx_get_string_string_length(reply);
84 memcpy(buf, xcb_glx_get_string_string(reply), len);
85 free(reply);
123 xGLXSingleReply reply; local
144 _XReply(dpy, (xReply *) & reply, 0, False)
    [all...]
  /external/mesa3d/src/glx/
glx_query.c 49 xcb_glx_query_server_string_reply_t *reply = local
58 uint32_t len = xcb_glx_query_server_string_string_length(reply);
60 memcpy(buf, xcb_glx_query_server_string_string(reply), len);
61 free(reply);
73 xcb_glx_get_string_reply_t *reply = xcb_glx_get_string_reply(c, local
82 uint32_t len = xcb_glx_get_string_string_length(reply);
84 memcpy(buf, xcb_glx_get_string_string(reply), len);
85 free(reply);
123 xGLXSingleReply reply; local
144 _XReply(dpy, (xReply *) & reply, 0, False)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/
AbstractReflectedTypeTestCase.java 52 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
53 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
55 int classes = reply.getNextValueAsInt();
63 refInitTypeTag = reply.getNextValueAsByte();
64 typeInitID = reply.getNextValueAsReferenceTypeID();
65 status = reply.getNextValueAsInt();
80 checkReplyPacket(reply, "ReferenceType::ClassLoader command");
107 reply = debuggeeWrapper.vmMirror.performCommand(packet);
108 checkReplyPacket(reply, "ReferenceType::ClassObject command");
110 long classObject = reply.getNextValueAsClassObjectID()
    [all...]
  /external/chromium_org/base/threading/
post_task_and_reply_impl.cc 17 // ensures that both the |task| and |reply| Closures are deleted on this same
18 // thread. Also, |task| is guaranteed to be deleted before |reply| is run or
22 // available, the the |task| and |reply| Closures are leaked. Leaking is
28 const Closure& task, const Closure& reply)
32 reply_ = reply;
77 const Closure& reply) {
79 new PostTaskAndReplyRelay(from_here, task, reply);
post_task_and_reply_impl.h 20 // Note that 'reply' will always get posted back to your current
32 const Closure& reply);
  /external/chromium_org/sandbox/mac/
mach_message_server.cc 50 // Allocate the message request and reply buffers.
64 MACH_LOG(ERROR, kr) << "Failed to allocate reply buffer.";
97 mach_msg_header_t* reply = reply_message.mach = local
99 bzero(reply, buffer_size_);
101 reply->msgh_bits = MACH_MSGH_BITS_REMOTE(reply->msgh_bits);
102 // Since mach_msg will automatically swap the request and reply ports,
104 reply->msgh_remote_port = request->msgh_remote_port;
105 reply->msgh_local_port = MACH_PORT_NULL;
106 // MIG servers simply add 100 to the request ID to generate the reply ID
138 IPCMessage reply = CreateReply(request); local
160 mach_msg_header_t* reply = local
    [all...]

Completed in 1015 milliseconds

1 2 3 4 5 6 7 8 91011>>