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

<<11121314151617181920>>

  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfoAsyncQuery.java 200 // query was already completed, so just send the reply.
203 Message reply = args.handler.obtainMessage(msg.what); local
204 reply.obj = args;
205 reply.arg1 = msg.arg1;
207 reply.sendToTarget();
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 342 Message reply = args.handler.obtainMessage(args.token); local
343 reply.obj = args;
344 reply.arg1 = args.op;
348 + reply.what);
351 reply.sendToTarget();
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
CallerInfoAsyncQuery.java 189 // query was already completed, so just send the reply.
192 Message reply = args.handler.obtainMessage(msg.what); local
193 reply.obj = args;
194 reply.arg1 = msg.arg1;
196 reply.sendToTarget();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethodTest.java 71 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
72 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
74 int classes = reply.getNextValueAsInt();
77 byte refTypeTag = reply.getNextValueAsByte();
78 long typeID = reply.getNextValueAsReferenceTypeID();
79 int status = reply.getNextValueAsInt();
80 assertAllDataRead(reply);
95 reply = debuggeeWrapper.vmMirror.performCommand(packet);
96 checkReplyPacket(reply, "ReferenceType::Methods command");
98 int declared = reply.getNextValueAsInt()
275 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
412 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
    [all...]
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...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
InstanceOnlyModifierTest.java 256 ReplyPacket reply = debuggeeWrapper.vmMirror.getThreadFrames(threadID, local
258 checkReplyPacket(reply, "Failed to get frames for thread " + threadID);
259 int frames = reply.getNextValueAsInt();
261 long currentFrameID = reply.getNextValueAsLong();
262 Location currentFrameLocation = reply.getNextValueAsLocation();
JDWPEventModifierTestCase.java 210 ReplyPacket reply = debuggeeWrapper.vmMirror.setEvent(event); local
211 checkReplyPacket(reply, "Failed to request " + eventName);
212 int requestID = reply.getNextValueAsInt();
213 assertAllDataRead(reply);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedEvents002Test.java 151 ReplyPacket reply = null; local
154 reply = debuggeeWrapper.vmMirror.setMethodEntry(TESTED_CLASS_NAME);
157 reply = debuggeeWrapper.vmMirror.setMethodExit(TESTED_CLASS_NAME);
160 reply = debuggeeWrapper.vmMirror.setMethodExitWithReturnValue(TESTED_CLASS_NAME);
163 checkReplyPacket(reply, "Set " + eventKindName + " event."); //DBG needless ?
164 int requestId = reply.getNextValueAsInt();
CombinedEvents003Test.java 108 ReplyPacket reply = debuggeeWrapper.vmMirror.setBreakpoint(combinedEventsLocation); local
109 int breakpointRequestID = reply.getNextValueAsInt();
114 reply = debuggeeWrapper.vmMirror
116 checkReplyPacket(reply, "Set METHOD_ENTRY event");
117 int methodEntryRequestID = reply.getNextValueAsInt();
121 reply = debuggeeWrapper.vmMirror
123 checkReplyPacket(reply, "Set METHOD_EXIT event");
124 int methodExitRequestID = reply.getNextValueAsInt();
CombinedEventsTest.java 114 ReplyPacket reply = debuggeeWrapper.vmMirror.setBreakpoint(combinedEventsLocation); local
115 int breakpointRequestID = reply.getNextValueAsInt();
120 reply = debuggeeWrapper.vmMirror
122 checkReplyPacket(reply, "Set METHOD_ENTRY event");
123 int methodEntryRequestID = reply.getNextValueAsInt();
249 ReplyPacket reply = debuggeeWrapper.vmMirror.setBreakpoint(combinedEventsLocation); local
250 int breakpointRequestID = reply.getNextValueAsInt();
255 reply = debuggeeWrapper.vmMirror
257 checkReplyPacket(reply, "EventRequest::Set command");
258 int methodExitRequestID = reply.getNextValueAsInt()
369 ReplyPacket reply = debuggeeWrapper.vmMirror local
496 ReplyPacket reply = debuggeeWrapper.vmMirror local
636 ReplyPacket reply = debuggeeWrapper.vmMirror.setBreakpoint(combinedEventsLocation); local
795 ReplyPacket reply = debuggeeWrapper.vmMirror.setBreakpoint(combinedEventsLocation); local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodDefault002Test.java 64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
65 checkReplyPacket(reply, "EventRequest::Set command");
67 int requestID = reply.getNextValueAsInt();
69 assertAllDataRead(reply);
141 reply = debuggeeWrapper.vmMirror.performCommand(packet);
142 checkReplyPacket(reply, "ObjectReference::InvokeMethod command");
144 Value returnValue = reply.getNextValueAsValue();
152 TaggedObject exception = reply.getNextValueAsTaggedObject();
167 TaggedObject exception = reply.getNextValueAsTaggedObject();
InvokeMethodDefaultTest.java 63 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
64 checkReplyPacket(reply, "EventRequest::Set command");
66 int requestID = reply.getNextValueAsInt();
68 assertAllDataRead(reply);
141 reply = debuggeeWrapper.vmMirror.performCommand(packet);
142 checkReplyPacket(reply, "ObjectReference::InvokeMethod command");
144 Value returnValue = reply.getNextValueAsValue();
152 TaggedObject exception = reply.getNextValueAsTaggedObject();
167 TaggedObject exception = reply.getNextValueAsTaggedObject();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
PopFrames002Test.java 278 * <BR>Then the test performs ClassType.InvokeMethodCommand without waiting reply, and
283 * <BR>Next, the test receives reply from invoked method and resumes debuggee..
370 // send MethodInvoke command, but not wait for reply
416 logWriter.println("=> Receive reply of invoked method: " + PopFramesDebuggee.METHOD_TO_INVOKE_NAME);
418 ReplyPacket reply = debuggeeWrapper.vmMirror local
420 checkReplyPacket(reply, "ClassType::InvokeMethod command");
423 .println("##Exception while receiving reply for invoke command: "
  /external/avahi/avahi-client/
browser.c 115 DBusMessage *message = NULL, *reply = NULL; local
180 if (!(reply = dbus_connection_send_with_reply_and_block (client->bus, message, -1, &error)) ||
186 if (!dbus_message_get_args (reply, &error, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID) ||
211 dbus_message_unref(reply);
228 if (reply)
229 dbus_message_unref(reply);
360 DBusMessage *message = NULL, *reply = NULL; local
420 if (!(reply = dbus_connection_send_with_reply_and_block (client->bus, message, -1, &error)) ||
426 if (!dbus_message_get_args (reply, &error, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID) ||
442 dbus_message_unref(reply);
575 DBusMessage *message = NULL, *reply = NULL; local
798 DBusMessage *message = NULL, *reply = NULL; local
    [all...]
entrygroup.c 53 DBusMessage *message = NULL, *reply = NULL; local
69 if (!(reply = dbus_connection_send_with_reply_and_block(client->bus, message, -1, &error)) ||
75 if (!dbus_message_get_args(reply, &error, DBUS_TYPE_INT32, &state, DBUS_TYPE_INVALID) ||
82 dbus_message_unref(reply);
95 if (reply)
96 dbus_message_unref(reply);
103 DBusMessage *message = NULL, *reply = NULL; local
138 if (!(reply = dbus_connection_send_with_reply_and_block (client->bus, message, -1, &error)) ||
144 if (!dbus_message_get_args(reply, &error, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID) ||
166 dbus_message_unref(reply);
189 DBusMessage *message = NULL, *reply = NULL; local
297 DBusMessage *message = NULL, *reply = NULL; local
414 DBusMessage *message = NULL, *reply = NULL; local
532 DBusMessage *message = NULL, *reply = NULL; local
643 DBusMessage *message = NULL, *reply = NULL; local
729 DBusMessage *message = NULL, *reply = NULL; local
820 DBusMessage *message = NULL, *reply = NULL; local
    [all...]
resolver.c 193 DBusMessage *message = NULL, *reply = NULL; local
271 if (!(reply = dbus_connection_send_with_reply_and_block(client->bus, message, -1, &error)) ||
277 if (!dbus_message_get_args (reply, &error, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID) ||
294 dbus_message_unref(reply);
311 if (reply)
312 dbus_message_unref(reply);
436 DBusMessage *message = NULL, *reply = NULL; local
493 if (!(reply = dbus_connection_send_with_reply_and_block(client->bus, message, -1, &error)) ||
499 if (!dbus_message_get_args (reply, &error, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID) ||
515 dbus_message_unref(reply);
653 DBusMessage *message = NULL, *reply = NULL; local
    [all...]
  /external/dbus/dbus/
dbus-bus.c 651 DBusMessage *message, *reply; local
661 reply = NULL;
692 reply = dbus_connection_send_with_reply_and_block (connection, message, -1, error);
694 if (reply == NULL)
696 else if (dbus_set_error_from_message (error, reply))
698 else if (!dbus_message_get_args (reply, error,
718 if (reply)
719 dbus_message_unref (reply);
857 DBusMessage *message, *reply; local
885 reply = dbus_connection_send_with_reply_and_block (connection, message, -1
939 DBusMessage *message, *reply; local
1105 DBusMessage *message, *reply; local
1190 DBusMessage *message, *reply; local
1272 DBusMessage *message, *reply; local
1351 DBusMessage *reply; local
1407 DBusMessage *reply; local
    [all...]
dbus-pending-call.c 47 * Opaque object representing a reply message that we're waiting for.
68 DBusPendingCallNotifyFunction function; /**< Notifier when reply arrives. */
71 DBusMessage *reply; /**< Reply (after we've received it) */ member in struct:DBusPendingCall
76 dbus_uint32_t reply_serial; /**< Expected serial of reply */
106 * Creates a new pending reply object.
108 * @param connection connection where reply will arrive
171 * Sets the reply of a pending call with the given message,
198 _dbus_assert (pending->reply == NULL);
200 pending->reply = message
366 DBusMessage *reply; local
    [all...]
  /external/dbus/test/
dbus-daemon.c 153 DBusMessage *reply; local
158 reply = dbus_message_new_method_return (message);
160 if (reply == NULL)
163 if (!dbus_connection_send (connection, reply, NULL))
166 dbus_message_unref (reply);
  /external/dbus/tools/
dbus-send.c 54 fprintf (stderr, "Usage: %s [--help] [--system | --session | --address=ADDRESS] [--dest=NAME] [--type=TYPE] [--print-reply[=literal]] [--reply-timeout=MSEC] <destination object path> <message name> [contents ...]\n", appname);
283 else if (strncmp (arg, "--print-reply", 13) == 0)
290 else if (strstr (arg, "--reply-timeout=") == arg)
511 DBusMessage *reply; local
514 reply = dbus_connection_send_with_reply_and_block (connection,
525 if (reply)
527 print_message (reply, print_reply_literal);
528 dbus_message_unref (reply);
  /external/google-breakpad/src/client/windows/crash_generation/
crash_generation_server.cc 605 ProtocolMessage* reply) const {
606 reply->tag = MESSAGE_TAG_REGISTRATION_RESPONSE;
607 reply->id = GetCurrentProcessId();
609 if (CreateClientHandles(client_info, reply)) {
615 if (reply->dump_request_handle) {
617 reply->dump_request_handle, // hSourceHandle
623 reply->dump_request_handle = NULL;
626 if (reply->dump_generated_handle) {
628 reply->dump_generated_handle, // hSourceHandle
634 reply->dump_generated_handle = NULL
688 ProtocolMessage reply; local
    [all...]
  /external/ipsec-tools/src/racoon/
privsep.c 288 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/libchrome/sandbox/linux/suid/
sandbox.c 146 const char reply = kMsgChrootSuccessful; local
148 bytes = write(sv[0], &reply, 1);
152 FatalError("Writing reply");
  /external/libevent/
evrpc-internal.h 142 /* the empty reply object that needs to be filled in */
143 void *reply; member in struct:evrpc_req_generic
188 void (*cb)(struct evrpc_status*, void *request, void *reply, void *arg);
192 void *reply; member in struct:evrpc_request_wrapper
197 /* removes all stored state in the reply */
200 /* marshals the reply into a buffer */
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/jni-headers/
jdwpTransport.h 105 jdwpReplyPacket reply; member in union:__anon14806::__anon14807

Completed in 1901 milliseconds

<<11121314151617181920>>