HomeSort by relevance Sort by last modified time
    Searched refs:reply (Results 226 - 250 of 1272) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
Breakpoint003Test.java 87 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
88 checkReplyPacket(reply, "ThreadReference::FramesCommand command");
89 int frames = reply.getNextValueAsInt();
91 long frameID = reply.getNextValueAsLong();
92 Location location = reply.getNextValueAsLocation();
105 //check reply for errors
106 reply = debuggeeWrapper.vmMirror.performCommand(packet);
107 checkReplyPacket(reply, "StackFrame::GetValues command");
109 int numberOfValues = reply.getNextValueAsInt();
111 Value val = reply.getNextValueAsValue()
    [all...]
  /external/mesa3d/src/glx/
singlepix.c 42 xGLXGetSeparableFilterReply reply; local
57 compsize = reply.length << 2;
63 width = reply.width;
64 height = reply.height;
133 xGLXGetSeparableFilterReply reply; local
145 (void) _XReply(dpy, (xReply *) & reply, 0, False);
147 compsize = reply.length << 2;
150 const GLint width = reply.width;
151 const GLint height = reply.height;
  /frameworks/base/core/java/android/os/
CommonClock.java 316 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags)
329 return super.onTransact(code, data, reply, flags);
343 android.os.Parcel reply = android.os.Parcel.obtain(); local
349 mRemote.transact(METHOD_REGISTER_LISTENER, data, reply, 0);
350 success = (0 == reply.readInt());
356 reply.recycle();
375 android.os.Parcel reply = android.os.Parcel.obtain(); local
380 mRemote.transact(METHOD_UNREGISTER_LISTENER, data, reply, 0);
384 reply.recycle();
  /hardware/qcom/display/msm8226/libqservice/
IQService.cpp 49 Parcel data, reply; local
52 remote()->transact(CONNECT, data, &reply);
60 Parcel *reply = outParcel; local
64 err = remote()->transact(command, data, reply);
76 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
94 CHECK_INTERFACE(IQService, data, reply);
112 CHECK_INTERFACE(IQService, data, reply);
113 dispatch(code, &data, reply);
116 return BBinder::onTransact(code, data, reply, flags);
  /hardware/qcom/display/msm8994/libqservice/
IQService.cpp 49 Parcel data, reply; local
52 remote()->transact(CONNECT, data, &reply);
60 Parcel *reply = outParcel; local
64 err = remote()->transact(command, data, reply);
76 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
94 CHECK_INTERFACE(IQService, data, reply);
112 CHECK_INTERFACE(IQService, data, reply);
113 dispatch(code, &data, reply);
116 return BBinder::onTransact(code, data, reply, flags);
  /system/tools/aidl/tests/
aidl_test_client_utf8_strings.cpp 59 string reply; local
60 Status status = s->RepeatUtf8CppString(input, &reply);
61 if (!status.isOk() || input != reply) {
65 << " and output=" << reply;
78 unique_ptr<string> reply; local
80 unique_ptr<string>(new string(input)), &reply);
86 if (!reply) {
87 LOG(ERROR) << "Got null reply while repeating nullable utf8 string "
91 if (input != *reply) {
95 << " and output=" << *reply;
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
VmMirror.java 87 * 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) {
95 if (reply.getErrorCode() != JDWPConstants.Error.NONE)
96 throw new ReplyErrorCodeException(reply.getErrorCode());
97 return reply;
203 ReplyPacket reply = setBreakpoint(breakpointLocation, suspendPolicy); local
204 checkReply(reply);
1239 ReplyPacket reply = performCommand(commandPacket); local
1296 ReplyPacket reply = performCommand(packet); local
1828 ReplyPacket reply = checkReply(performCommand(command)); local
1844 ReplyPacket reply = getThreadFrames(threadID, 0, -1); local
1901 ReplyPacket reply = performCommand(command); local
1955 ReplyPacket reply = checkReply(performCommand(command)); local
1978 ReplyPacket reply = checkReply(performCommand(command)); local
1994 ReplyPacket reply = checkReply(performCommand(command)); local
2011 ReplyPacket reply = checkReply(performCommand(command)); local
2034 ReplyPacket reply = performCommand(command); local
2068 ReplyPacket reply = checkReply(performCommand(command)); local
2102 ReplyPacket reply = checkReply(performCommand(command)); local
2141 ReplyPacket reply = checkReply(performCommand(command)); local
2174 ReplyPacket reply = checkReply(performCommand(command)); local
2190 ReplyPacket reply = checkReply(performCommand(command)); local
2206 ReplyPacket reply = checkReply(performCommand(command)); local
2246 ReplyPacket reply = checkReply(performCommand(command)); local
2262 ReplyPacket reply = checkReply(performCommand(command)); local
2300 ReplyPacket reply = getLineTable(classID, methodID); local
2338 ReplyPacket reply = getLineTable(classID, methodID); local
2516 ReplyPacket reply = checkReply(performCommand(command)); local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
CurrentContendedMonitorTest.java 77 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
78 checkReplyPacket(reply, "ThreadReference::CurrentContendedMonitor command");
80 TaggedObject tobj = reply.getNextValueAsTaggedObject();
119 reply = debuggeeWrapper.vmMirror.performCommand(packet);
120 checkReplyPacket(reply, "ThreadReference::Interrupt command");
122 short err = reply.getErrorCode();
FrameCountTest.java 74 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
75 checkReplyPacket(reply, "ThreadReference::FrameCount command");
77 int frameCount = reply.getNextValueAsInt();
101 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
102 err = reply.getErrorCode();
108 int framesCount = reply.getNextValueAsInt();
StopTest.java 81 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
82 checkReplyPacket(reply, "ReferenceType::GetValues command");
84 int values = reply.getNextValueAsInt();
90 Value fieldValue = reply.getNextValueAsValue();
99 reply = debuggeeWrapper.vmMirror.performCommand(packet);
100 checkReplyPacket(reply, "ThreadReference::Stop command");
StatusTest.java 73 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
74 checkReplyPacket(reply, "ThreadReference::Status command");
76 int threadStatus = reply.getNextValueAsInt();
77 int suspendStatus = reply.getNextValueAsInt();
130 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
131 checkReplyPacket(reply, "ThreadReference::Status command");
133 int threadStatus = reply.getNextValueAsInt();
134 int suspendStatus = reply.getNextValueAsInt();
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/session/
StubSession.groovy 154 * @return the reply code for the session reply at the specified index
161 * @return the reply message for the session reply at the specified index
180 def reply = sentReplies[replyIndex]
181 assert reply, "No reply for index [$replyIndex] sent for ${this}"
182 return reply
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
MessageHandler.java 100 Message reply = Message.obtain(); local
103 reply.setData(sl4aResponse);
104 message.replyTo.send(reply);
107 Log.e("Could not send reply back to client", e);
114 private void putResult(int id, Object result, Bundle reply) {
126 reply.putString(SL4A_RESULT, e.toString());
130 reply.putString(SL4A_RESULT, json.toString());
  /frameworks/base/media/tests/players/
invoke_mock_media_player.cpp 91 virtual status_t invoke(const Parcel& request, Parcel *reply);
93 virtual status_t getParameter(int /* key */, Parcel* /* reply */) { return OK; }
97 // Take a request, copy it to the reply.
98 void ping(const Parcel& request, Parcel *reply);
104 status_t Player::invoke(const Parcel& request, Parcel *reply)
108 ping(request, reply);
115 void Player::ping(const Parcel& request, Parcel *reply)
119 reply->setData(static_cast<const uint8_t*>(request.readInplace(len)), len);
  /frameworks/native/libs/binder/
IMemory.cpp 187 Parcel data, reply; local
189 if (remote()->transact(GET_MEMORY, data, &reply) == NO_ERROR) {
190 sp<IBinder> heap = reply.readStrongBinder();
191 ssize_t o = reply.readInt32();
192 size_t s = reply.readInt32();
229 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
233 CHECK_INTERFACE(IMemory, data, reply);
236 reply->writeStrongBinder( IInterface::asBinder(getMemory(&offset, &size)) );
237 reply->writeInt32(offset);
238 reply->writeInt32(size)
314 Parcel data, reply; local
    [all...]
  /frameworks/native/libs/gui/
ISurfaceComposerClient.cpp 86 status_t BnSurfaceComposerClient::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
89 return BBinder::onTransact(code, data, reply, flags);
94 return callLocal(data, reply, &ISurfaceComposerClient::createSurface);
96 return callLocal(data, reply, &ISurfaceComposerClient::destroySurface);
98 return callLocal(data, reply, &ISurfaceComposerClient::clearLayerFrameStats);
100 return callLocal(data, reply, &ISurfaceComposerClient::getLayerFrameStats);
  /packages/apps/Settings/src/com/android/settings/development/
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 */);
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 25 type Reply struct {
33 Result Reply `json:"result"`
37 func (t *Arith) Add(args *Args, reply *Reply) error {
38 reply.C = args.A + args.B
42 func (t *Arith) Mul(args *Args, reply *Reply) error {
43 reply.C = args.A * args.B
47 func (t *Arith) Div(args *Args, reply *Reply) error
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 25 type Reply struct {
33 Result Reply `json:"result"`
37 func (t *Arith) Add(args *Args, reply *Reply) error {
38 reply.C = args.A + args.B
42 func (t *Arith) Mul(args *Args, reply *Reply) error {
43 reply.C = args.A * args.B
47 func (t *Arith) Div(args *Args, reply *Reply) error
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
ParentTest.java 72 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
73 checkReplyPacket(reply, "ThreadReference::ThreadGroup command");
75 groupID = reply.getNextValueAsThreadGroupID();
82 reply = debuggeeWrapper.vmMirror.performCommand(packet);
83 checkReplyPacket(reply, "ThreadGroupReference::Parent command");
85 groupID = reply.getNextValueAsThreadGroupID();
158 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(packet); local
160 checkReplyPacket(reply, "ThreadGroupReference::Name command", expectedError);
  /external/libnl/src/lib/
ct.c 86 void nl_cli_ct_parse_src(struct nfnl_ct *ct, int reply, char *arg)
90 if ((err = nfnl_ct_set_src(ct, reply, a)) < 0)
95 void nl_cli_ct_parse_dst(struct nfnl_ct *ct, int reply, char *arg)
99 if ((err = nfnl_ct_set_dst(ct, reply, a)) < 0)
104 void nl_cli_ct_parse_src_port(struct nfnl_ct *ct, int reply, char *arg)
107 nfnl_ct_set_src_port(ct, reply, port);
110 void nl_cli_ct_parse_dst_port(struct nfnl_ct *ct, int reply, char *arg)
113 nfnl_ct_set_dst_port(ct, reply, port);
  /external/perfetto/include/perfetto/ipc/
codegen_helpers.h 38 typename TReply, // Type of the reply argument.
42 ::perfetto::ipc::DeferredBase reply) {
45 ::perfetto::ipc::Deferred<TReply>(::std::move(reply)));
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowBinderBridge.java 21 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException {
25 ClassParameter.from(Parcel.class, reply),
  /frameworks/av/media/libmedia/include/media/
IStreamSource.h 65 uint32_t code, const Parcel &data, Parcel *reply,
71 uint32_t code, const Parcel &data, Parcel *reply,
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.cpp 70 void ARTSPConnection::connect(const char *url, const sp<AMessage> &reply) {
73 msg->setMessage("reply", reply);
77 void ARTSPConnection::disconnect(const sp<AMessage> &reply) {
79 msg->setMessage("reply", reply);
84 const char *request, const sp<AMessage> &reply) {
87 msg->setMessage("reply", reply);
91 void ARTSPConnection::observeBinaryData(const sp<AMessage> &reply) {
231 sp<AMessage> reply; local
339 sp<AMessage> reply; local
348 sp<AMessage> reply; local
409 sp<AMessage> reply; local
512 sp<AMessage> reply = mPendingRequests.valueAt(i); local
743 sp<AMessage> reply = mPendingRequests.valueAt(i); local
879 sp<AMessage> reply = mPendingRequests.valueAt(i); local
    [all...]

Completed in 2191 milliseconds

1 2 3 4 5 6 7 8 91011>>