Searched refs:reply (Results 201 - 225 of 399) sorted by relevance

1234567891011>>

/frameworks/native/include/binder/
H A DIPermissionController.h53 Parcel* reply,
H A DBinder.h39 Parcel* reply,
65 Parcel* reply,
H A DSafeInterface.h267 // Send the data Parcel to the remote and retrieve the reply parcel
268 Parcel reply;
269 error = this->remote()->transact(static_cast<uint32_t>(tag), data, &reply);
278 // Read the outputs from the reply Parcel into the output arguments
279 error = readOutputs(reply, std::forward<Args>(args)...);
285 // Retrieve the result code from the reply Parcel
287 error = reply.readInt32(&result);
317 // There will be no data in the reply Parcel since the call is one-way
318 Parcel reply;
319 error = this->remote()->transact(static_cast<uint32_t>(tag), data, &reply,
[all...]
/frameworks/native/include/gui/
H A DIConsumerListener.h93 status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply,
H A DIDisplayEventConnection.h61 status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply,
H A DIProducerListener.h57 Parcel* reply, uint32_t flags = 0);
/frameworks/native/libs/binder/include/binder/
H A DIPermissionController.h53 Parcel* reply,
H A DBinder.h39 Parcel* reply,
65 Parcel* reply,
H A DSafeInterface.h267 // Send the data Parcel to the remote and retrieve the reply parcel
268 Parcel reply;
269 error = this->remote()->transact(static_cast<uint32_t>(tag), data, &reply);
278 // Read the outputs from the reply Parcel into the output arguments
279 error = readOutputs(reply, std::forward<Args>(args)...);
285 // Retrieve the result code from the reply Parcel
287 error = reply.readInt32(&result);
317 // There will be no data in the reply Parcel since the call is one-way
318 Parcel reply;
319 error = this->remote()->transact(static_cast<uint32_t>(tag), data, &reply,
[all...]
/frameworks/native/libs/sensor/include/sensor/
H A DISensorEventConnection.h54 Parcel* reply,
/frameworks/native/services/surfaceflinger/
H A DGpuService.h40 Parcel* reply, uint32_t flags = 0) override;
/frameworks/av/include/media/
H A DICrypto.h88 uint32_t code, const Parcel &data, Parcel *reply,
92 void writeVector(Parcel *reply, Vector<uint8_t> const &vector) const;
H A DIMediaPlayerService.h88 virtual status_t pullBatteryData(Parcel* reply) = 0;
98 Parcel* reply,
H A DIMediaRecorder.h56 virtual status_t getMetrics(Parcel *reply) = 0;
76 Parcel* reply,
H A DIMediaPlayer.h89 virtual status_t getParameter(int key, Parcel* reply) = 0;
105 // for the request and reply.
108 // @param[out] reply Parcel to hold the reply data. Cannot be null.
110 virtual status_t invoke(const Parcel& request, Parcel *reply) = 0;
142 Parcel* reply,
/frameworks/av/media/libmedia/include/media/
H A DICrypto.h88 uint32_t code, const Parcel &data, Parcel *reply,
92 void writeVector(Parcel *reply, Vector<uint8_t> const &vector) const;
H A DIMediaPlayerService.h88 virtual status_t pullBatteryData(Parcel* reply) = 0;
98 Parcel* reply,
H A DIMediaRecorder.h56 virtual status_t getMetrics(Parcel *reply) = 0;
76 Parcel* reply,
H A DIMediaPlayer.h89 virtual status_t getParameter(int key, Parcel* reply) = 0;
105 // for the request and reply.
108 // @param[out] reply Parcel to hold the reply data. Cannot be null.
110 virtual status_t invoke(const Parcel& request, Parcel *reply) = 0;
142 Parcel* reply,
/frameworks/native/cmds/service/
H A Dservice.cpp47 Parcel data, reply; local
48 status_t err = service->transact(IBinder::INTERFACE_TRANSACTION, data, &reply);
50 return reply.readString16();
135 Parcel data, reply; local
277 service->transact(code, data, &reply);
278 aout << "Result: " << reply << endl;
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderPassThrough.cpp215 status_t NuPlayer::DecoderPassThrough::fetchInputData(sp<AMessage> &reply) { argument
263 reply->setInt32("err", err);
277 reply->setBuffer("buffer", accessUnit);
340 sp<AMessage> reply = new AMessage(kWhatBufferConsumed, this); local
341 reply->setInt32("generation", mBufferGeneration);
342 reply->setInt32("size", bufferSize);
347 mRenderer->queueBuffer(true /* audio */, mcBuffer, reply);
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp149 out << "Unknown reply: " << code << endl;
561 Parcel* reply, uint32_t flags)
581 if (reply) reply->setError(err);
593 if (reply) {
594 err = waitForResponse(reply);
611 if (reply) alog << indent << *reply << dedent << endl;
712 status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags) argument
716 err = writeTransactionData(BC_REPLY, flags, -1, 0, reply,
559 transact(int32_t handle, uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
722 waitForResponse(Parcel *reply, status_t *acquireResult) argument
1062 Parcel reply; local
[all...]
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java111 Message reply = args.handler.obtainMessage(token);
112 reply.obj = args;
113 reply.arg1 = msg.arg1;
117 + ", reply.what=" + reply.what);
120 reply.sendToTarget();
/frameworks/native/libs/binder/tests/
H A DbinderSafeInterfaceTest.cpp194 status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply,
201 return callLocalAsync(data, reply, &ICallback::onCallback);
485 status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply,
492 return callLocal(data, reply, &ISafeInterfaceTest::setDeathToken);
495 return callLocal(data, reply, &ISafeInterfaceTest::returnsNoMemory);
498 return callLocal(data, reply, &ISafeInterfaceTest::logicalNot);
501 return callLocal(data, reply, &ISafeInterfaceTest::modifyEnum);
506 return callLocal<Signature>(data, reply, &ISafeInterfaceTest::increment);
512 return callLocal<Signature>(data, reply, &ISafeInterfaceTest::increment);
518 return callLocal<Signature>(data, reply,
[all...]
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
H A DBandwidthEnforcementTestService.java164 final byte[] reply = new byte[query.length];
165 final DatagramPacket replyPacket = new DatagramPacket(reply, reply.length);

Completed in 1735 milliseconds

1234567891011>>