HomeSort by relevance Sort by last modified time
    Searched defs:reply (Results 151 - 175 of 725) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
ListenConnectorTest.java 69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
70 checkReplyPacket(reply, "VirtualMachine::Version command");
72 String description = reply.getNextValueAsString();
73 int jdwpMajor = reply.getNextValueAsInt();
74 int jdwpMinor = reply.getNextValueAsInt();
75 String vmVersion = reply.getNextValueAsString();
76 String vmName = reply.getNextValueAsString();
ThreadEndTest.java 57 ReplyPacket reply; local
63 reply = debuggeeWrapper.vmMirror.setEvent(eventToSet);
64 checkReplyPacket(reply, "Set THREAD_END event");
ThreadStartTest.java 57 ReplyPacket reply; local
58 // reply = debuggeeWrapper.vmMirror.setThreadStart();
64 reply = debuggeeWrapper.vmMirror.setEvent(eventToSet);
65 checkReplyPacket(reply, "Set THREAD_START event");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
GetValues007Test.java 78 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(setValuesCommand); local
79 checkReplyPacket(reply, "ClassType::SetValues command");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
ThisObjectTest.java 128 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
130 if (reply.getErrorCode() == JDWPConstants.Error.NONE) {
131 TaggedObject thisObject = reply.getNextValueAsTaggedObject();
191 assertAllDataRead(reply);
196 + reply.getErrorCode()
197 + "(" + JDWPConstants.Error.getName(reply.getErrorCode()) + ")");
201 fail("StackFrame::ThisObject command returns unexpected ERROR = " + reply.getErrorCode()
202 + "(" + JDWPConstants.Error.getName(reply.getErrorCode()) + ")"
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StringReference/
ValueTest.java 141 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
143 checkReplyPacket(reply, "StringReference::Value command", expectedError);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
ChildrenTest.java 75 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
76 checkReplyPacket(reply, "ThreadReference.ThreadGroup command");
78 groupID = reply.getNextValueAsThreadGroupID();
86 reply = debuggeeWrapper.vmMirror.performCommand(packet);
87 checkReplyPacket(reply, "ThreadGroupReference.Children command");
93 int childThreads = reply.getNextValueAsInt();
99 long childThreadID = reply.getNextValueAsThreadID();
115 int childGroups = reply.getNextValueAsInt();
122 groupID = reply.getNextValueAsThreadGroupID();
192 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet) local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
CurrentContendedMonitorTest.java 76 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
77 checkReplyPacket(reply, "ThreadReference::CurrentContendedMonitor command");
79 TaggedObject tobj = reply.getNextValueAsTaggedObject();
118 reply = debuggeeWrapper.vmMirror.performCommand(packet);
119 checkReplyPacket(reply, "ThreadReference::Interrupt command");
121 short err = reply.getErrorCode();
InterruptTest.java 73 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
75 short err = reply.getErrorCode();
StopTest.java 80 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
81 checkReplyPacket(reply, "ReferenceType::GetValues command");
83 int values = reply.getNextValueAsInt();
89 Value fieldValue = reply.getNextValueAsValue();
98 reply = debuggeeWrapper.vmMirror.performCommand(packet);
99 checkReplyPacket(reply, "ThreadReference::Stop command");
SuspendTest.java 128 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
129 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Suspend command") ) {
139 reply = debuggeeWrapper.vmMirror.performCommand(packet);
140 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Status command") ) {
145 int threadStatus = reply.getNextValueAsInt();
146 int suspendStatus = reply.getNextValueAsInt();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
AllThreadsTest.java 64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
65 checkReplyPacket(reply, "VirtualMachine::AllThreads command");
72 int threads = reply.getNextValueAsInt();
78 threadID = reply.getNextValueAsThreadID();
102 assertAllDataRead(reply);
122 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
123 checkReplyPacket(reply, "VirtualMachine::AllThreads command");
131 int threads = reply.getNextValueAsInt();
138 threadID = reply.getNextValueAsThreadID();
172 assertAllDataRead(reply);
195 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
    [all...]
HoldEventsTest.java 69 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
70 checkReplyPacket(reply, "VirtualMachine::HoldEvents command");
TopLevelThreadGroupsTest.java 50 * <BR>&nbsp;&nbsp; - there are no extra data in the reply packet;
61 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
62 checkReplyPacket(reply, "VirtualMachine::TopLevelThreadGroups command");
64 int groups = reply.getNextValueAsInt();
70 long threadGroupID = reply.getNextValueAsThreadGroupID() ;
75 assertAllDataRead(reply);
  /external/dbus/test/name-test/
test-privserver-client.c 71 DBusMessage *reply; local
100 if (!(reply = dbus_connection_send_with_reply_and_block (session, msg, -1, &error)))
103 if (!dbus_message_get_args (reply, &error, DBUS_TYPE_STRING, &addr, DBUS_TYPE_INVALID))
117 dbus_message_unref (reply);
test-threads-init.c 20 DBusMessage *reply; local
50 /* check the reply only to make sure we
53 reply = dbus_pending_call_steal_reply (echo_pending);
55 if (reply == NULL)
57 printf ("Failed: Reply is NULL ***\n");
61 if (dbus_message_get_type (reply) == DBUS_MESSAGE_TYPE_ERROR)
63 printf ("Failed: Reply is error: %s ***\n", dbus_message_get_error_name (reply));
67 dbus_message_unref (reply);
  /external/dbus/test/
test-shell-service.c 37 DBusMessage *reply; local
42 _dbus_verbose ("sending reply to Echo method\n");
50 reply = dbus_message_new_method_return (message);
51 if (reply == NULL)
54 dbus_message_iter_init_append (reply, &iter);
59 if (!dbus_connection_send (connection, reply, NULL))
64 dbus_message_unref (reply);
  /external/iputils/ninfod/
ninfod.h 52 int reply
67 /* reply info */
68 struct icmp6_nodeinfo reply; /* common */ member in struct:packetcontext
  /external/mesa3d/src/glx/
indirect_vertex_program.c 181 GLuint index, GLenum pname, xReply * reply)
191 (void) _XReply(dpy, reply, 0, False);
201 xGLXSingleReply reply; local
204 get_vertex_attrib(gc, 1303, index, pname, (xReply *) & reply);
206 if (reply.size != 0) {
214 if (reply.size == 1) {
215 *params = (GLint) reply.pad3;
218 _XRead(dpy, (void *) params, 4 * reply.size);
235 xGLXSingleReply reply; local
238 get_vertex_attrib(gc, 1302, index, pname, (xReply *) & reply);
269 xGLXSingleReply reply; local
    [all...]
  /external/ppp/pppd/
session.c 128 struct pam_response *reply = NULL; local
130 reply = malloc(sizeof(struct pam_response) * num_msg);
131 if (!reply) return PAM_CONV_ERR;
136 reply[replies].resp_retcode = PAM_SUCCESS;
137 reply[replies].resp = COPY_STRING(PAM_username);
141 reply[replies].resp_retcode = PAM_SUCCESS;
142 reply[replies].resp = COPY_STRING(PAM_password);
149 reply[replies].resp_retcode = PAM_SUCCESS;
150 reply[replies].resp = NULL;
154 free (reply);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
scanresults.cpp 56 char reply[2048]; local
69 reply_len = sizeof(reply) - 1;
70 if (wpagui->ctrlRequest(cmd, reply, &reply_len) < 0)
72 reply[reply_len] = '\0';
74 QString bss(reply);
116 char reply[10]; local
117 size_t reply_len = sizeof(reply);
122 wpagui->ctrlRequest("SCAN", reply, &reply_len);
  /frameworks/av/camera/
ICameraClient.cpp 49 Parcel data, reply; local
54 remote()->transact(NOTIFY_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
62 Parcel data, reply; local
70 remote()->transact(DATA_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
77 Parcel data, reply; local
82 remote()->transact(DATA_CALLBACK_TIMESTAMP, data, &reply, IBinder::FLAG_ONEWAY);
87 Parcel data, reply; local
91 remote()->transact(RECORDING_FRAME_HANDLE_CALLBACK_TIMESTAMP, data, &reply,
101 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
106 CHECK_INTERFACE(ICameraClient, data, reply);
    [all...]
  /frameworks/av/media/libmedia/
IAudioPolicyServiceClient.cpp 62 Parcel data, reply; local
64 remote()->transact(PORT_LIST_UPDATE, data, &reply, IBinder::FLAG_ONEWAY);
69 Parcel data, reply; local
71 remote()->transact(PATCH_LIST_UPDATE, data, &reply, IBinder::FLAG_ONEWAY);
76 Parcel data, reply; local
80 remote()->transact(MIX_STATE_UPDATE, data, &reply, IBinder::FLAG_ONEWAY);
86 Parcel data, reply; local
94 remote()->transact(RECORDING_CONFIGURATION_UPDATE, data, &reply, IBinder::FLAG_ONEWAY);
103 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
107 CHECK_INTERFACE(IAudioPolicyServiceClient, data, reply);
    [all...]
IAudioTrack.cpp 54 Parcel data, reply; local
57 status_t status = remote()->transact(GET_CBLK, data, &reply);
59 cblk = interface_cast<IMemory>(reply.readStrongBinder());
69 Parcel data, reply; local
71 status_t status = remote()->transact(START, data, &reply);
73 status = reply.readInt32();
82 Parcel data, reply; local
84 remote()->transact(STOP, data, &reply);
89 Parcel data, reply; local
91 remote()->transact(FLUSH, data, &reply);
96 Parcel data, reply; local
103 Parcel data, reply; local
116 Parcel data, reply; local
127 Parcel data, reply; local
142 Parcel data, reply; local
    [all...]
IEffect.cpp 47 Parcel data, reply; local
49 remote()->transact(ENABLE, data, &reply);
50 return reply.readInt32();
56 Parcel data, reply; local
58 remote()->transact(DISABLE, data, &reply);
59 return reply.readInt32();
69 Parcel data, reply; local
87 status_t status = remote()->transact(COMMAND, data, &reply);
89 status = reply.readInt32();
97 size = reply.readInt32()
108 Parcel data, reply; local
116 Parcel data, reply; local
    [all...]

Completed in 1114 milliseconds

1 2 3 4 5 67 8 91011>>