HomeSort by relevance Sort by last modified time
    Searched defs:reply (Results 76 - 100 of 720) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionBaseTest.java 81 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
82 debuggeeWrapper.vmMirror.checkReply(reply);
85 int framesCount = reply.getNextValueAsInt();
88 reply.getNextValueAsFrameID(); // frameID
89 return reply.getNextValueAsLocation();
FieldAccessTest.java 58 ReplyPacket reply = debuggeeWrapper.vmMirror.setFieldAccess(classSignature, JDWPConstants.TypeTag.CLASS, "testIntField"); local
59 checkReplyPacket(reply, "Set FIELD_ACCESS event");
FieldModificationTest.java 58 ReplyPacket reply = debuggeeWrapper.vmMirror.setFieldModification(classSignature, JDWPConstants.TypeTag.CLASS, "testIntField"); local
59 checkReplyPacket(reply, "Set FIELD_MODIFICATION event");
MethodEntryTest.java 60 ReplyPacket reply = debuggeeWrapper.vmMirror.setMethodEntry(methodEntryClassNameRegexp); local
61 checkReplyPacket(reply, "Set METHOD_ENTRY event");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
SourceDebugExtensionTest.java 68 logWriter.println("=> CHECK: send " + thisCommandName + " and check reply...");
168 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
169 checkReplyPacket(reply, "VirtualMachine::AllClasses command");
174 int classes = reply.getNextValueAsInt();
177 reply.getNextValueAsByte();
178 typeID = reply.getNextValueAsReferenceTypeID();
179 signature = reply.getNextValueAsString();
180 status = reply.getNextValueAsInt();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ThreadGroup002Test.java 156 ReplyPacket reply = null; local
176 reply = debuggeeWrapper.vmMirror.performCommand(packet);
177 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.Status command") ) {
182 int threadStatus = reply.getNextValueAsInt();
184 reply.getNextValueAsInt();
195 reply = debuggeeWrapper.vmMirror.performCommand(packet);
196 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.ThreadGroup command") ) {
201 long threadGroupID = reply.getNextValueAsThreadGroupID();
240 reply = debuggeeWrapper.vmMirror.performCommand(packet);
241 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.ThreadGroup command") )
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
AllClassesTest.java 64 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
65 checkReplyPacket(reply, "VirtualMachine::AllClasses command");
71 int classes = reply.getNextValueAsInt();
77 reply.getNextValueAsByte();
78 typeID = reply.getNextValueAsReferenceTypeID();
79 signature = reply.getNextValueAsString();
80 status = reply.getNextValueAsInt();
125 * <BR>&nbsp;&nbsp; - All data were read from reply packet;
136 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
137 checkReplyPacket(reply, "VirtualMachine::AllClasses command")
    [all...]
AllClassesWithGenericTest.java 65 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
66 checkReplyPacket(reply, "VirtualMachine::AllClassesWithGeneric command");
72 int classes = reply.getNextValueAsInt();
78 reply.getNextValueAsByte();
79 typeID = reply.getNextValueAsReferenceTypeID();
80 signature = reply.getNextValueAsString();
81 genericSignature = reply.getNextValueAsString();
82 status = reply.getNextValueAsInt();
130 * <BR>&nbsp;&nbsp; - All data were read from reply packet;
141 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet) local
    [all...]
Resume002Test.java 106 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
107 checkReplyPacket(reply, "ThreadReference::Status command");
109 reply.getNextValueAsInt(); // 'threadStatus' unused
110 int suspendStatus = reply.getNextValueAsInt();
111 assertAllDataRead(reply);
125 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
126 checkReplyPacket(reply, "ThreadReference::SuspendCount command");
128 int suspendCount = reply.getNextValueAsInt();
129 assertAllDataRead(reply);
  /frameworks/base/core/java/android/content/pm/
BaseParceledListSlice.java 96 Parcel reply = Parcel.obtain(); local
99 retriever.transact(IBinder.FIRST_CALL_TRANSACTION, data, reply, 0);
104 while (i < N && reply.readInt() != 0) {
105 final T parcelable = readCreator(creator, reply, loader);
113 reply.recycle();
176 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags)
179 return super.onTransact(code, data, reply, flags);
183 while (i < N && reply.dataSize() < MAX_IPC_SIZE) {
184 reply.writeInt(1);
188 writeElement(parcelable, reply, callFlags)
    [all...]
  /packages/apps/Settings/src/com/android/settings/development/
HardwareOverlaysPreferenceController.java 90 final Parcel reply = Parcel.obtain(); local
92 mSurfaceFlinger.transact(SURFACE_FLINGER_READ_CODE, data, reply, 0 /* flags */);
93 @SuppressWarnings("unused") final int showCpu = reply.readInt();
94 @SuppressWarnings("unused") final int enableGL = reply.readInt();
95 @SuppressWarnings("unused") final int showUpdates = reply.readInt();
96 @SuppressWarnings("unused") final int showBackground = reply.readInt();
97 final int disableOverlays = reply.readInt();
99 reply.recycle();
117 null /* reply */, 0 /* flags */);
ShowSurfaceUpdatesPreferenceController.java 89 final Parcel reply = Parcel.obtain(); local
91 mSurfaceFlinger.transact(SURFACE_FLINGER_READ_CODE, data, reply, 0 /* flags */);
92 @SuppressWarnings("unused") final int showCpu = reply.readInt();
93 @SuppressWarnings("unused") final int enableGL = reply.readInt();
94 final int showUpdates = reply.readInt();
96 reply.recycle();
113 null /* reply */, 0 /* flags */);
  /packages/apps/Settings/src/com/android/settings/display/
ColorModePreferenceController.java 83 final Parcel reply = Parcel.obtain(); local
87 data, reply, 0);
88 return reply.readBoolean();
93 reply.recycle();
  /cts/hostsidetests/devicepolicy/app/SimpleApp/src/com/android/cts/launcherapps/simpleapp/
SimpleActivity.java 46 Intent reply = new Intent(); local
47 reply.setAction(ACTIVITY_LAUNCHED_ACTION);
48 sendBroadcast(reply);
SimpleActivityImmediateExit.java 48 Intent reply = new Intent(); local
49 reply.setAction(ACTIVITY_EXIT_ACTION);
50 sendBroadcast(reply);
SimpleActivityStartService.java 46 Intent reply = new Intent(ACTION_SIMPLE_ACTIVITY_START_SERVICE_RESULT); local
47 reply.setFlags(Intent.FLAG_RECEIVER_FOREGROUND);
52 reply.putExtra("result", Activity.RESULT_CANCELED);
53 sendBroadcast(reply);
56 reply.putExtra("result", Activity.RESULT_FIRST_USER);
57 sendBroadcast(reply);
  /cts/tests/tests/externalservice/service/src/android/externalservice/service/
BaseService.java 56 Message reply = Message.obtain(null, ServiceMessages.MSG_IDENTIFY_RESPONSE, local
58 reply.getData().putString(ServiceMessages.IDENTIFY_PACKAGE,
61 msg.replyTo.send(reply);
  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageReplyReceiver.java 33 * A receiver that gets called when a reply is sent to a given conversationId.
43 CharSequence reply = getMessageText(intent); local
45 Log.d(TAG, "Got reply (" + reply + ") for ConversationId " + conversationId);
47 " received a reply: [" + reply + "]");
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageReplyReceiver.java 33 * A receiver that gets called when a reply is sent to a given conversationId.
43 CharSequence reply = getMessageText(intent); local
45 Log.d(TAG, "Got reply (" + reply + ") for ConversationId " + conversationId);
47 " received a reply: [" + reply + "]");
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
MessageReplyReceiver.java 33 * A receiver that gets called when a reply is sent to a given conversationId.
43 CharSequence reply = getMessageText(intent); local
45 Log.d(TAG, "Got reply (" + reply + ") for ConversationId " + conversationId);
47 " received a reply: [" + reply + "]");
  /device/google/cuttlefish_common/guest/hals/audio/
vsoc_audio_input_stream.cpp 166 str_parms* reply = str_parms_create(); local
173 str_parms_add_int(reply, AUDIO_PARAMETER_STREAM_ROUTING, device_);
174 str = strdup(str_parms_to_str(reply));
179 str_parms_destroy(reply);
  /external/adhd/cras/src/server/
cras_bt_player.c 22 DBusMessage *reply; local
24 reply = dbus_pending_call_steal_reply(pending_call);
27 if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR) {
29 dbus_message_get_error_name(reply));
30 dbus_message_unref(reply);
34 dbus_message_unref(reply);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
NewInstanceTest.java 76 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
77 checkReplyPacket(reply, "VirtualMachine::ClassesBySignature command");
79 int classes = reply.getNextValueAsInt();
85 byte refInitTypeTag = reply.getNextValueAsByte();
86 long typeArrayID = reply.getNextValueAsReferenceTypeID();
87 int status = reply.getNextValueAsInt();
104 reply = debuggeeWrapper.vmMirror.performCommand(packet);
105 checkReplyPacket(reply, "ArrayType::NewInstance command");
107 TaggedObject newArray = reply.getNextValueAsTaggedObject();
108 assertAllDataRead(reply);
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassLoaderReference/
VisibleClassesTest.java 66 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
67 checkReplyPacket(reply, "ClassLoaderReference::VisibleClasses command");
74 int classes = reply.getNextValueAsInt();
85 refTypeTag = reply.getNextValueAsByte();
88 typeID = reply.getNextValueAsReferenceTypeID();
102 assertAllDataRead(reply);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
SetValuesTest.java 133 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
134 checkReplyPacket(reply, "ClassType::SetValues command");
143 reply = debuggeeWrapper.vmMirror.performCommand(packet);
144 checkReplyPacket(reply, "ClassType::GetValues command");
146 int fields = reply.getNextValueAsInt();
148 Value returnedValue = reply.getNextValueAsValue();

Completed in 1048 milliseconds

1 2 34 5 6 7 8 91011>>