Searched refs:reply (Results 126 - 150 of 199) sorted by relevance

12345678

/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java79 * @param reply Parcel to write to
84 public static final void writeExceptionToParcel(Parcel reply, Exception e) { argument
112 reply.writeException(e);
116 reply.writeInt(code);
117 reply.writeString(e.getMessage());
129 * @param reply Parcel to read from
133 public static final void readExceptionFromParcel(Parcel reply) { argument
134 int code = reply.readExceptionCode();
136 String msg = reply.readString();
137 DatabaseUtils.readExceptionFromParcel(reply, ms
140 readExceptionWithFileNotFoundExceptionFromParcel( Parcel reply) argument
152 readExceptionWithOperationApplicationExceptionFromParcel( Parcel reply) argument
164 readExceptionFromParcel(Parcel reply, String msg, int code) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalService.java32 protected boolean onTransact(int code, Parcel data, Parcel reply,
39 return super.onTransact(code, data, reply, flags);
/frameworks/av/include/media/
H A DIAudioTrack.h99 Parcel* reply,
H A DIOMX.h177 uint32_t code, const Parcel &data, Parcel *reply,
184 uint32_t code, const Parcel &data, Parcel *reply,
H A Dmediaplayer.h223 status_t invoke(const Parcel& request, Parcel *reply);
231 status_t getParameter(int key, Parcel* reply);
H A DIMediaRecorder.h68 Parcel* reply,
/frameworks/av/include/media/stagefright/foundation/
H A DALooperRoster.h40 void postReply(uint32_t replyID, const sp<AMessage> &reply);
/frameworks/base/cmds/servicemanager/
H A Dservice_manager.c204 struct binder_io *reply)
238 bio_put_ref(reply, ptr);
256 bio_put_string16(reply, si->name);
266 bio_put_uint32(reply, 0);
201 svcmgr_handler(struct binder_state *bs, struct binder_txn *txn, struct binder_io *msg, struct binder_io *reply) argument
/frameworks/native/include/binder/
H A DIServiceManager.h92 Parcel* reply,
H A DIBinder.h81 Parcel* reply,
/frameworks/native/include/gui/
H A DBitTube.h45 status_t writeToParcel(Parcel* reply) const;
H A DISurfaceComposerClient.h82 Parcel* reply, uint32_t flags = 0);
H A DISurfaceComposer.h137 Parcel* reply, uint32_t flags = 0);
/frameworks/native/services/surfaceflinger/
H A DClient.h63 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags);
H A DClient.cpp91 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
107 return BnSurfaceComposerClient::onTransact(code, data, reply, flags);
90 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/av/media/libstagefright/rtsp/
H A DMyTransmitter.h103 sp<AMessage> reply = new AMessage('conn', id()); local
104 mConn->connect(mServerURL.c_str(), reply);
232 sp<AMessage> reply = new AMessage('anno', id()); local
233 mConn->sendRequest(request.c_str(), reply);
417 sp<AMessage> reply = new AMessage('setu', id()); local
418 mConn->sendRequest(request.c_str(), reply);
538 sp<AMessage> reply = new AMessage('reco', id()); local
539 mConn->sendRequest(request.c_str(), reply);
589 sp<AMessage> reply = new AMessage('opts', id()); local
590 mConn->sendRequest(request.c_str(), reply);
705 sp<AMessage> reply = new AMessage('paus', id()); local
756 sp<AMessage> reply = new AMessage('tear', id()); local
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DALooperRoster.cpp181 void ALooperRoster::postReply(uint32_t replyID, const sp<AMessage> &reply) { argument
185 mReplies.add(replyID, reply);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleHello.java134 Chunk reply = new Chunk(CHUNK_HELO, out);
143 return reply;
/frameworks/native/libs/gui/
H A DBitTube.cpp122 status_t BitTube::writeToParcel(Parcel* reply) const
127 status_t result = reply->writeDupFileDescriptor(mReceiveFd);
/frameworks/av/include/camera/
H A DICamera.h116 Parcel* reply,
/frameworks/av/include/common_time/
H A DICommonTimeConfig.h68 Parcel* reply, uint32_t flags = 0);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java161 // query was already completed, so just send the reply.
164 Message reply = args.handler.obtainMessage(msg.what);
165 reply.obj = args;
166 reply.arg1 = msg.arg1;
168 reply.sendToTarget();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp261 status_t NuPlayerDriver::invoke(const Parcel &request, Parcel *reply) { argument
262 if (reply == NULL) {
263 ALOGE("reply is a NULL pointer");
295 status_t NuPlayerDriver::getParameter(int key, Parcel *reply) { argument
/frameworks/av/services/camera/tests/CameraServiceTest/
H A DCameraServiceTest.cpp100 Parcel* reply,
111 Parcel data, reply; local
113 remote()->transact(HOLDER_PUT, data, &reply, IBinder::FLAG_ONEWAY);
117 Parcel data, reply; local
118 remote()->transact(HOLDER_GET, data, &reply);
119 return reply.readStrongBinder();
123 Parcel data, reply; local
124 remote()->transact(HOLDER_CLEAR, data, &reply);
131 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
138 reply
130 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java68 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
447 reply.writeNoException();
448 mi.writeToParcel(reply, 0);
537 reply.writeNoException();
538 mi.writeToParcel(reply, 0);
558 reply.writeNoException();
578 reply.writeNoException();
587 reply.writeNoException();
592 return super.onTransact(code, data, reply, flags);
1061 Parcel reply
[all...]

Completed in 4844 milliseconds

12345678