/external/valgrind/coregrind/m_mach/ |
H A D | mach_basics.c | 54 static mach_port_t reply = 0; variable 58 if (!reply) reply = mach_reply_port(); 59 return reply; 80 reply = 0;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/ |
H A D | NewInstanceTest.java | 69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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 [all...] |
H A D | InvokeMethod002Test.java | 64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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 [all...] |
H A D | SuperClassTest.java | 48 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 49 checkReplyPacket(reply, "ClassType.Superclass command", errorExpected); 50 return reply; 53 private void asserSuperClassReplyIsValid(ReplyPacket reply, String expectedSignature) { argument 54 assertTrue(reply.getErrorCode() == JDWPConstants.Error.NONE); 55 long superClassID = reply.getNextValueAsClassID(); 89 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); 91 asserSuperClassReplyIsValid(reply, "Ljava/lang/Object;"); 99 ReplyPacket reply = jdwpGetSuperClassReply(classID, JDWPConstants.Error.NONE); 101 asserSuperClassReplyIsValid(reply, "Ljav [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/ |
H A D | LengthTest.java | 63 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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); 99 checkReplyPacket(reply, "ReferenceType::GetValues command"); 101 int values = reply [all...] |
H A D | SetValuesTest.java | 61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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); 108 checkReplyPacket(reply, "ReferenceType::GetValues command"); 110 assertEquals("GetValuesCommand returned invalid number of values,", 1, reply [all...] |
/external/robolectric/src/main/java/android/os/ |
H A D | ShadowBinderBridge.java | 13 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { argument 14 return realBinder.onTransact(code, data, reply, flags);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowBinderTest.java | 21 Parcel reply = Parcel.obtain(); 22 assertTrue(testBinder.transact(2, data, reply, 3)); 25 assertThat(testBinder.reply, sameInstance(reply)); 32 Parcel reply; field in class:ShadowBinderTest.TestBinder 36 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { argument 39 this.reply = reply;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/ |
H A D | NewInstanceTest.java | 75 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
H A D | networkconfig.cpp | 187 char reply[10], cmd[256]; local 225 memset(reply, 0, sizeof(reply)); 226 reply_len = sizeof(reply) - 1; 229 wpagui->ctrlRequest("ADD_NETWORK", reply, &reply_len); 230 if (reply[0] == 'F') { 237 id = atoi(reply); 405 reply_len = sizeof(reply); 406 wpagui->ctrlRequest(cmd, reply, &reply_len); 407 if (strncmp(reply, "O 430 char reply[10], cmd[256]; local 496 key_value_isset(const char *reply, size_t reply_len) argument 509 char reply[1024], cmd[256], *pos; local 792 char reply[10], cmd[256]; local 829 char reply[256]; local [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/ |
H A D | VariableTableWithGenericTest.java | 66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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 [all...] |
H A D | VariableTableTest.java | 65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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();
|
H A D | LineTableTest.java | 58 ReplyPacket reply = getLineTable(classID, methodsInfo[i].getMethodID()); 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/ |
H A D | CapabilitiesTest.java | 49 * there are no extra data in the reply packet; 59 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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 [all...] |
H A D | IDSizesTest.java | 55 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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();
|
H A D | DisposeObjectsTest.java | 67 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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, "VirtualMachin [all...] |
H A D | ClassPathsTest.java | 54 * <BR> - there are no extra data in the reply packet; 64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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);
|
H A D | CreateStringTest.java | 62 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 63 checkReplyPacket(reply, "VirtualMachine::CreateString command"); 65 long stringID = reply.getNextValueAsStringID(); 73 reply = debuggeeWrapper.vmMirror.performCommand(packet); 74 checkReplyPacket(reply, "StringReference::Value command"); 76 String value = reply.getNextValueAsString();
|
H A D | VersionTest.java | 61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 63 String description = reply.getNextValueAsString(); 64 int jdwpMajor = reply.getNextValueAsInt(); 65 int jdwpMinor = reply.getNextValueAsInt(); 66 String vmVersion = reply.getNextValueAsString(); 67 String vmName = reply.getNextValueAsString();
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
H A D | JDWPStackFrameTestCase.java | 96 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 97 checkReplyPacket(reply, "ThreadReference::FrameCount command"); 99 int frameCount = reply.getNextValueAsInt(); 111 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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); 132 checkReplyPacket(reply, "Metho [all...] |
/external/mesa3d/src/glx/apple/ |
H A D | 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 [all...] |
/external/mesa3d/src/glx/ |
H A D | 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, [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/ |
H A D | AbstractReflectedTypeTestCase.java | 52 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); 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 [all...] |
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
H A D | dbus_old_handlers.c | 38 DBusMessage *reply; local 40 reply = dbus_message_new_error( 44 dbus_message_append_args(reply, DBUS_TYPE_STRING, &arg, 47 return reply; 52 * wpas_dbus_new_success_reply - Return a new success reply message 53 * @message: Pointer to incoming dbus message this reply refers to 57 * Convenience function to create and return a success reply message 61 DBusMessage *reply; local 64 reply = dbus_message_new_method_return(message); 65 dbus_message_append_args(reply, DBUS_TYPE_UINT3 90 DBusMessage *reply = NULL; local 211 DBusMessage *reply = NULL; local 252 DBusMessage *reply = NULL; local 294 DBusMessage *reply = NULL; local 352 DBusMessage *reply; local 414 DBusMessage *reply; local 480 DBusMessage *reply = NULL; local 715 DBusMessage *reply = NULL; local 757 DBusMessage *reply = NULL; local 846 DBusMessage *reply = NULL; local 1000 DBusMessage *reply = NULL; local 1091 DBusMessage *reply = NULL; local 1201 DBusMessage *reply = NULL; local 1226 DBusMessage *reply = NULL; local 1256 DBusMessage *reply = NULL; local [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
H A D | JDWPTestCase.java | 171 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command); 172 checkReplyPacket(reply, "ObjectReference::ReferenceType command"); 174 reply.getNextValueAsByte(); 175 long objectRefTypeID = reply.getNextValueAsReferenceTypeID(); 193 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command); 194 checkReplyPacket(reply, "ReferenceType::Methods command"); 195 int methods = reply.getNextValueAsInt(); 197 long methodID = reply.getNextValueAsMethodID(); 198 String name = reply.getNextValueAsString(); // method name 199 reply 591 checkReplyPacket(ReplyPacket reply, String message, int errorCodeExpected) argument 605 checkReplyPacket(ReplyPacket reply, String message) argument 620 checkReplyPacket(ReplyPacket reply, String message, int[] expected) argument 637 checkReplyPacketWithoutFail(ReplyPacket reply, String message) argument 659 checkReplyPacket(ReplyPacket reply, String message, int[] expected, boolean failSign) argument 769 assertAllDataRead(Packet reply) argument [all...] |