Searched refs:reply (Results 101 - 125 of 344) sorted by relevance

1234567891011>>

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DCapabilitiesNewTest.java84 * there are no extra data in the reply packet;
93 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
94 checkReplyPacket(reply, "VirtualMachine::CapabilitiesNew command");
99 flag = reply.getNextValueAsBoolean();
115 assertAllDataRead(reply);
H A DReleaseEventsTest.java79 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
80 checkReplyPacket(reply, "VirtualMachine::HoldEvents command");
90 reply = debuggeeWrapper.vmMirror.performCommand(packet);
91 checkReplyPacket(reply, "VirtualMachine::ReleaseEvents command");
H A DResumeTest.java131 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
132 int errorCode = reply.getErrorCode();
156 reply = debuggeeWrapper.vmMirror.performCommand(packet);
157 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Status command") ) {
162 int threadStatus = reply.getNextValueAsInt();
163 int suspendStatus = reply.getNextValueAsInt();
193 reply = debuggeeWrapper.vmMirror.performCommand(packet);
194 errorCode = reply.getErrorCode();
221 reply = debuggeeWrapper.vmMirror.performCommand(packet);
222 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReferenc
[all...]
/external/chromium_org/base/threading/
H A Dworker_pool.h44 const Closure& reply,
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dwrite_on_cache_file.h38 // Does the same thing as WriteOnCacheFile() and runs |reply| on the UI thread
44 const FileOperationCallback& reply);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DBreakpointTest.java56 ReplyPacket reply;
57 reply = debuggeeWrapper.vmMirror.setBreakpoint(JDWPConstants.TypeTag.CLASS, breakpoint);
58 checkReplyPacket(reply, "Set BREAKPOINT event");
H A DClassPrepareTest.java57 ReplyPacket reply = debuggeeWrapper.vmMirror.setClassPrepared(class2prepareRegexp);
58 checkReplyPacket(reply, "Set CLASS_PREPARE event");
96 ReplyPacket reply = debuggeeWrapper.vmMirror.setClassPreparedForSourceNameMatch(expectedSourceNamePattern);
97 checkReplyPacket(reply, "Set CLASS_PREPARE event");
160 ReplyPacket reply = debuggeeWrapper.vmMirror.setClassPreparedForSourceNameMatch(expectedSourceNamePattern);
161 checkReplyPacket(reply, "Set CLASS_PREPARE event");
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
H A DIsObsoleteTest.java74 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
75 checkReplyPacket(reply, "Method::IsObsolete command");
77 boolean isObsolete = reply.getNextValueAsBoolean();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
H A DNameTest.java68 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
69 checkReplyPacket(reply, "ThreadReference::ThreadGroup command");
71 groupID = reply.getNextValueAsThreadGroupID();
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DNameTest.java54 ReplyPacket thrdReply, reply = debuggeeWrapper.vmMirror.getAllThreadID();
59 int threads = reply.getNextValueAsInt();
61 threadID = reply.getNextValueAsThreadID();
H A DThreadGroup002Test.java155 ReplyPacket reply = null;
175 reply = debuggeeWrapper.vmMirror.performCommand(packet);
176 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Status command") ) {
181 int threadStatus = reply.getNextValueAsInt();
183 reply.getNextValueAsInt();
194 reply = debuggeeWrapper.vmMirror.performCommand(packet);
195 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.ThreadGroup command") ) {
200 long threadGroupID = reply.getNextValueAsThreadGroupID();
239 reply = debuggeeWrapper.vmMirror.performCommand(packet);
240 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReferenc
[all...]
H A DCurrentContendedMonitorTest.java91 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
92 checkReplyPacket(reply, "ThreadReference::CurrentContendedMonitor command");
94 TaggedObject tobj = reply.getNextValueAsTaggedObject();
133 reply = debuggeeWrapper.vmMirror.performCommand(packet);
134 checkReplyPacket(reply, "ThreadReference::Interrupt command");
136 short err = reply.getErrorCode();
H A DSuspendTest.java128 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
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();
H A DThreadGroupTest.java62 ReplyPacket replyThread, reply = debuggeeWrapper.vmMirror.getAllThreadID();
63 int threads = reply.getNextValueAsInt();
71 threadID = reply.getNextValueAsThreadID();
/external/chromium_org/chrome/browser/renderer_host/pepper/
H A Dpepper_talk_host.h44 void OnRequestPermissionCompleted(ppapi::host::ReplyMessageContext reply);
45 void OnStartRemotingCompleted(ppapi::host::ReplyMessageContext reply);
46 void OnStopRemotingCompleted(ppapi::host::ReplyMessageContext reply);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
H A DGetValuesTest.java65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
66 checkReplyPacket(reply, "ReferenceType::Fields command");
68 int declared = reply.getNextValueAsInt();
70 long fieldID = reply.getNextValueAsFieldID();
71 String name = reply.getNextValueAsString();
72 reply.getNextValueAsString();
73 reply.getNextValueAsInt();
149 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet);
150 checkReplyPacket(reply, "ReferenceType::GetValues command");
152 assertEquals("ReferenceType::GetValues command returned invalid int value,", reply
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_handlers.c106 DBusMessage *reply; local
108 reply = dbus_message_new_error(message, WPAS_DBUS_ERROR_INVALID_ARGS,
112 dbus_message_append_args(reply, DBUS_TYPE_STRING, &arg,
115 return reply;
130 DBusMessage *reply; local
132 reply = dbus_message_new_error(message,
136 return reply;
327 "%s: error constructing reply", __func__);
553 DBusMessage *reply = NULL; local
610 reply
664 DBusMessage *reply = NULL; local
694 DBusMessage *reply = NULL; local
991 wpas_dbus_get_scan_type(DBusMessage *message, DBusMessageIter *var, char **type, DBusMessage **reply) argument
1006 wpas_dbus_get_scan_ssids(DBusMessage *message, DBusMessageIter *var, struct wpa_driver_scan_params *params, DBusMessage **reply) argument
1094 wpas_dbus_get_scan_ies(DBusMessage *message, DBusMessageIter *var, struct wpa_driver_scan_params *params, DBusMessage **reply) argument
1158 wpas_dbus_get_scan_channels(DBusMessage *message, DBusMessageIter *var, struct wpa_driver_scan_params *params, DBusMessage **reply) argument
1266 wpas_dbus_get_scan_allow_roam(DBusMessage *message, DBusMessageIter *var, dbus_bool_t *allow, DBusMessage **reply) argument
1296 DBusMessage *reply = NULL; local
1440 DBusMessage *reply = NULL; local
1560 DBusMessage *reply = NULL; local
1674 DBusMessage *reply = NULL; local
1727 DBusMessage *reply = NULL; local
1794 DBusMessage *reply = NULL; local
1865 DBusMessage *reply = NULL; local
1930 DBusMessage *reply = NULL; local
1987 DBusMessage *reply = NULL; local
2164 DBusMessage *reply; local
[all...]
/external/iputils/ninfod/
H A Dninfod_addrs.c217 if (reply) {
246 p->reply.ni_type = ICMP6_NI_REPLY;
247 p->reply.ni_code = ICMP6_NI_SUCCESS;
248 p->reply.ni_cksum = 0;
249 p->reply.ni_qtype = htons(NI_QTYPE_NODEADDR);
250 p->reply.ni_flags = flags&(NI_NODEADDR_FLAG_COMPAT|
260 p->reply.ni_flags |= NI_NODEADDR_FLAG_TRUNCATE;
377 if (reply) {
409 p->reply.ni_type = ICMP6_NI_REPLY;
410 p->reply
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DVmMirror.java87 * Checks error code of given reply packet and throws
90 * @param reply
91 * reply packet to check
92 * @return ReplyPacket unchanged reply packet
94 public ReplyPacket checkReply(ReplyPacket reply) { argument
95 if (reply.getErrorCode() != JDWPConstants.Error.NONE)
96 throw new ReplyErrorCodeException(reply.getErrorCode());
97 return reply;
250 ReplyPacket reply = setBreakpoint(breakpointLocation);
251 checkReply(reply);
[all...]
/external/chromium_org/ui/base/x/
H A Dselection_owner.cc117 XEvent reply; local
118 reply.xselection.type = SelectionNotify;
119 reply.xselection.requestor = event.requestor;
120 reply.xselection.selection = event.selection;
121 reply.xselection.target = event.target;
122 reply.xselection.property = None; // Indicates failure
123 reply.xselection.time = event.time;
154 reply.xselection.property = event.property;
158 reply.xselection.property = event.property;
161 // Send off the reply
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_udp.c181 char *reply; local
182 reply = os_malloc(7 + 2 * COOKIE_LEN + 1);
183 if (reply == NULL) {
188 os_memcpy(reply, "COOKIE=", 7);
189 wpa_snprintf_hex(reply + 7, 2 * COOKIE_LEN + 1,
193 return reply;
213 char *reply = NULL; local
250 reply = wpa_supplicant_ctrl_iface_get_cookie(priv, &reply_len);
302 reply = wpa_supplicant_ctrl_iface_process(wpa_s, pos,
307 if (reply) {
522 char *reply; local
547 char *reply; local
[all...]
/external/ipsec-tools/src/racoon/
H A Dprivsep.c288 struct privsep_com_msg *reply; local
319 /* Prepare the reply buffer */
320 if ((reply = racoon_malloc(sizeof(*reply))) == NULL) {
322 "Cannot allocate reply buffer: %s\n",
326 bzero(reply, sizeof(*reply));
327 reply->hdr.ac_cmd = combuf->hdr.ac_cmd;
328 reply->hdr.ac_len = sizeof(*reply);
[all...]
/external/chromium_org/chromeos/cryptohome/
H A Dhomedir_methods.cc231 const BaseReply& reply) {
236 if (reply.has_error()) {
237 if (reply.error() != CRYPTOHOME_ERROR_NOT_SET) {
238 callback.Run(false, MapError(reply.error()), std::string());
242 if (!reply.HasExtension(MountReply::reply)) {
248 mount_hash = reply.GetExtension(MountReply::reply).sanitized_username();
255 const BaseReply& reply) {
260 if (reply
228 OnMountExCallback(const MountCallback& callback, chromeos::DBusMethodCallStatus call_status, bool result, const BaseReply& reply) argument
252 OnBaseReplyCallback(const Callback& callback, chromeos::DBusMethodCallStatus call_status, bool result, const BaseReply& reply) argument
[all...]
/external/chromium_org/remoting/tools/
H A Dnative_messaging_host_test.py146 reply = child.stdout.read(reply_length).decode('utf-8')
147 print 'Reply: ' + reply
148 if len(reply) != reply_length:
149 print 'Invalid reply length'
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Duserdatarequest.cpp81 char reply[10]; local
82 size_t reply_len = sizeof(reply);
92 wpagui->ctrlRequest(cmd.toAscii().constData(), reply, &reply_len);

Completed in 507 milliseconds

1234567891011>>