Searched refs:reply (Results 1 - 25 of 199) sorted by last modified time

12345678

/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp547 Parcel *reply = new Parcel(); local
548 status_t status = mPlayer->getParameter(KEY_PARAMETER_AUDIO_CHANNEL_COUNT, reply);
550 channelCount = reply->readInt32();
561 delete reply;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java362 Message reply = obtainMessage(EVENT_SEND_SMS_COMPLETE, tracker);
363 mCm.sendCdmaSms(pdu, reply);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java295 Message reply = obtainMessage(EVENT_SEND_SMS_COMPLETE, tracker);
296 mCm.sendSMS(IccUtils.bytesToHexString(smsc), IccUtils.bytesToHexString(pdu), reply);
/frameworks/native/include/binder/
H A DBinder.h37 Parcel* reply,
63 Parcel* reply,
H A DBpBinder.h41 Parcel* reply,
H A DIBinder.h81 Parcel* reply,
H A DIInterface.h107 #define CHECK_INTERFACE(interface, data, reply) \
H A DIMemory.h60 Parcel* reply,
90 Parcel* reply,
H A DIPCThreadState.h63 Parcel* reply, uint32_t flags);
89 status_t sendReply(const Parcel& reply, uint32_t flags);
90 status_t waitForResponse(Parcel *reply,
H A DIPermissionController.h47 Parcel* reply,
H A DIServiceManager.h92 Parcel* reply,
/frameworks/native/include/gui/
H A DBitTube.h45 status_t writeToParcel(Parcel* reply) const;
H A DIDisplayEventConnection.h66 Parcel* reply,
H A DIGraphicBufferAlloc.h50 Parcel* reply,
H A DISensorEventConnection.h50 Parcel* reply,
H A DISensorServer.h50 Parcel* reply,
H A DISurface.h56 Parcel* reply,
H A DISurfaceComposer.h137 Parcel* reply, uint32_t flags = 0);
H A DISurfaceComposerClient.h82 Parcel* reply, uint32_t flags = 0);
H A DISurfaceTexture.h197 Parcel* reply,
/frameworks/native/libs/binder/
H A DBinder.cpp98 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
105 reply->writeInt32(pingBinder());
108 err = onTransact(code, data, reply, flags);
112 if (reply != NULL) {
113 reply->setDataPosition(0);
187 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
191 reply->writeString16(getInterfaceDescriptor());
97 transact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
186 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DBpBinder.cpp109 Parcel send, reply; local
112 INTERFACE_TRANSACTION, send, &reply);
114 String16 res(reply.readString16());
138 Parcel reply; local
139 status_t err = transact(PING_TRANSACTION, send, &reply);
141 if (reply.dataSize() < sizeof(status_t)) return NOT_ENOUGH_DATA;
142 return (status_t)reply.readInt32();
148 Parcel reply; local
155 status_t err = transact(DUMP_TRANSACTION, send, &reply);
160 uint32_t code, const Parcel& data, Parcel* reply, uint32_
159 transact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
H A DIMemory.cpp181 Parcel data, reply; local
183 if (remote()->transact(GET_MEMORY, data, &reply) == NO_ERROR) {
184 sp<IBinder> heap = reply.readStrongBinder();
185 ssize_t o = reply.readInt32();
186 size_t s = reply.readInt32();
212 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
216 CHECK_INTERFACE(IMemory, data, reply);
219 reply->writeStrongBinder( getMemory(&offset, &size)->asBinder() );
220 reply->writeInt32(offset);
221 reply
211 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
293 Parcel data, reply; local
366 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
H A DIPCThreadState.cpp166 out << "Unknown reply: " << code << endl;
506 Parcel* reply, uint32_t flags)
526 if (reply) reply->setError(err);
538 if (reply) {
539 err = waitForResponse(reply);
556 if (reply) alog << indent << *reply << dedent << endl;
652 status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags) argument
656 err = writeTransactionData(BC_REPLY, flags, -1, 0, reply,
504 transact(int32_t handle, uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
662 waitForResponse(Parcel *reply, status_t *acquireResult) argument
1018 Parcel reply; local
[all...]
H A DIPermissionController.cpp42 Parcel data, reply; local
47 remote()->transact(CHECK_PERMISSION_TRANSACTION, data, &reply);
49 if (reply.readExceptionCode() != 0) return 0;
50 return reply.readInt32() != 0;
59 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
64 CHECK_INTERFACE(IPermissionController, data, reply);
69 reply->writeNoException();
70 reply->writeInt32(res ? 1 : 0);
74 return BBinder::onTransact(code, data, reply, flags);
58 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument

Completed in 161 milliseconds

12345678