Searched refs:reply (Results 51 - 75 of 221) sorted by relevance

123456789

/frameworks/av/services/audioflinger/
H A DISchedulingPolicyService.cpp42 Parcel data, reply; local
48 status_t status = remote()->transact(REQUEST_PRIORITY_TRANSACTION, data, &reply, flags);
56 if (reply.readExceptionCode() != 0) {
59 return reply.readInt32();
68 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
76 return BBinder::onTransact(code, data, reply, flags);
67 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DISchedulingPolicyService.h39 Parcel* reply,
/frameworks/native/libs/binder/
H A DIAppOpsCallback.cpp41 Parcel data, reply; local
45 remote()->transact(OP_CHANGED_TRANSACTION, data, &reply);
54 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
58 CHECK_INTERFACE(IAppOpsCallback, data, reply);
62 reply->writeNoException();
66 return BBinder::onTransact(code, data, reply, flags);
53 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIServiceManager.cpp147 Parcel data, reply; local
150 remote()->transact(CHECK_SERVICE_TRANSACTION, data, &reply);
151 return reply.readStrongBinder();
157 Parcel data, reply; local
162 status_t err = remote()->transact(ADD_SERVICE_TRANSACTION, data, &reply);
163 return err == NO_ERROR ? reply.readExceptionCode() : err;
172 Parcel data, reply; local
175 status_t err = remote()->transact(LIST_SERVICES_TRANSACTION, data, &reply);
178 res.add(reply.readString16());
189 uint32_t code, const Parcel& data, Parcel* reply, uint32_
188 onTransact( 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
291 Parcel data, reply; local
364 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
/frameworks/av/camera/
H A DICameraRecordingProxyListener.cpp41 Parcel data, reply; local
46 remote()->transact(DATA_CALLBACK_TIMESTAMP, data, &reply, IBinder::FLAG_ONEWAY);
55 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
60 CHECK_INTERFACE(ICameraRecordingProxyListener, data, reply);
68 return BBinder::onTransact(code, data, reply, flags);
54 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DICameraServiceListener.cpp46 Parcel data, reply; local
55 &reply,
66 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
70 CHECK_INTERFACE(ICameraServiceListener, data, reply);
80 return BBinder::onTransact(code, data, reply, flags);
65 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DICameraClient.cpp45 Parcel data, reply; local
50 remote()->transact(NOTIFY_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
58 Parcel data, reply; local
66 remote()->transact(DATA_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
73 Parcel data, reply; local
78 remote()->transact(DATA_CALLBACK_TIMESTAMP, data, &reply, IBinder::FLAG_ONEWAY);
87 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
92 CHECK_INTERFACE(ICameraClient, data, reply);
101 CHECK_INTERFACE(ICameraClient, data, reply);
117 CHECK_INTERFACE(ICameraClient, data, reply);
86 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
/frameworks/av/media/libmedia/
H A DIDrmClient.cpp45 Parcel data, reply; local
52 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY);
61 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
65 CHECK_INTERFACE(IDrmClient, data, reply);
77 return BBinder::onTransact(code, data, reply, flags);
60 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIMediaPlayerClient.cpp40 Parcel data, reply; local
48 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY);
57 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
61 CHECK_INTERFACE(IMediaPlayerClient, data, reply);
74 return BBinder::onTransact(code, data, reply, flags);
56 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIMediaRecorderClient.cpp40 Parcel data, reply; local
45 remote()->transact(NOTIFY, data, &reply, IBinder::FLAG_ONEWAY);
54 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
58 CHECK_INTERFACE(IMediaRecorderClient, data, reply);
66 return BBinder::onTransact(code, data, reply, flags);
53 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/core/tests/coretests/src/android/os/
H A DMessengerService.java31 Message reply = Message.obtain();
32 reply.copyFrom(msg);
34 msg.replyTo.send(reply);
/frameworks/base/core/java/android/content/pm/
H A DParceledListSlice.java76 Parcel reply = Parcel.obtain();
79 retriever.transact(IBinder.FIRST_CALL_TRANSACTION, data, reply, 0);
84 while (i < N && reply.readInt() != 0) {
85 mList.add(reply.readCreator(creator, loader));
89 reply.recycle();
131 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags)
134 return super.onTransact(code, data, reply, flags);
138 while (i < N && reply.dataSize() < MAX_IPC_SIZE) {
139 reply.writeInt(1);
140 mList.get(i).writeToParcel(reply, callFlag
[all...]
/frameworks/native/services/powermanager/
H A DIPowerManager.cpp46 Parcel data, reply; local
53 return remote()->transact(ACQUIRE_WAKE_LOCK, data, &reply);
58 Parcel data, reply; local
62 return remote()->transact(RELEASE_WAKE_LOCK, data, &reply);
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp85 virtual status_t invoke(const Parcel& request, Parcel *reply);
87 virtual status_t getParameter(int key, Parcel *reply) {return OK;} argument
91 // Take a request, copy it to the reply.
92 void ping(const Parcel& request, Parcel *reply);
98 status_t Player::invoke(const Parcel& request, Parcel *reply) argument
102 ping(request, reply);
109 void Player::ping(const Parcel& request, Parcel *reply) argument
113 reply->setData(static_cast<const uint8_t*>(request.readInplace(len)), len);
/frameworks/native/cmds/installd/
H A Dinstalld.c25 #define REPLY_MAX 256 /* largest reply allowed */
27 static int do_ping(char **arg, char reply[REPLY_MAX]) argument
32 static int do_install(char **arg, char reply[REPLY_MAX]) argument
37 static int do_dexopt(char **arg, char reply[REPLY_MAX]) argument
43 static int do_move_dex(char **arg, char reply[REPLY_MAX]) argument
48 static int do_rm_dex(char **arg, char reply[REPLY_MAX]) argument
53 static int do_remove(char **arg, char reply[REPLY_MAX]) argument
58 static int do_rename(char **arg, char reply[REPLY_MAX]) argument
63 static int do_fixuid(char **arg, char reply[REPLY_MAX]) argument
68 static int do_free_cache(char **arg, char reply[REPLY_MA argument
73 do_rm_cache(char **arg, char reply[REPLY_MAX]) argument
78 do_get_size(char **arg, char reply[REPLY_MAX]) argument
99 do_rm_user_data(char **arg, char reply[REPLY_MAX]) argument
104 do_mk_user_data(char **arg, char reply[REPLY_MAX]) argument
109 do_rm_user(char **arg, char reply[REPLY_MAX]) argument
114 do_movefiles(char **arg, char reply[REPLY_MAX]) argument
119 do_linklib(char **arg, char reply[REPLY_MAX]) argument
194 char reply[REPLY_MAX]; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp69 void ARTSPConnection::connect(const char *url, const sp<AMessage> &reply) { argument
72 msg->setMessage("reply", reply);
76 void ARTSPConnection::disconnect(const sp<AMessage> &reply) { argument
78 msg->setMessage("reply", reply);
83 const char *request, const sp<AMessage> &reply) {
86 msg->setMessage("reply", reply);
90 void ARTSPConnection::observeBinaryData(const sp<AMessage> &reply) { argument
82 sendRequest( const char *request, const sp<AMessage> &reply) argument
229 sp<AMessage> reply; local
334 sp<AMessage> reply; local
343 sp<AMessage> reply; local
403 sp<AMessage> reply; local
507 sp<AMessage> reply = mPendingRequests.valueAt(i); local
735 sp<AMessage> reply = mPendingRequests.valueAt(i); local
871 sp<AMessage> reply = mPendingRequests.valueAt(i); local
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DTakeScreenshotService.java44 Message reply = Message.obtain(null, 1);
46 callback.send(reply);
/frameworks/base/core/java/android/os/storage/
H A DIMountShutdownObserver.java60 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
64 reply.writeString(DESCRIPTOR);
72 reply.writeNoException();
76 return super.onTransact(code, data, reply, flags);
H A DIObbActionListener.java61 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
65 reply.writeString(DESCRIPTOR);
77 reply.writeNoException();
81 return super.onTransact(code, data, reply, flags);
H A DIMountService.java839 public boolean onTransact(int code, Parcel data, Parcel reply, argument
843 reply.writeString(DESCRIPTOR);
851 reply.writeNoException();
859 reply.writeNoException();
865 reply.writeNoException();
866 reply.writeInt((result ? 1 : 0));
874 reply.writeNoException();
880 reply.writeNoException();
881 reply.writeInt((result ? 1 : 0));
889 reply
[all...]
/frameworks/base/include/storage/
H A DIMountShutdownObserver.h40 Parcel* reply,
/frameworks/native/include/binder/
H A DIAppOpsCallback.h46 Parcel* reply,
/frameworks/base/core/jni/
H A Dandroid_net_wifi_Wifi.cpp62 char reply[BUF_SIZE]; local
63 if (doCommand(ifname, buf, reply, sizeof(reply)) != 0) {
66 return static_cast<jint>(atoi(reply));
79 char reply[BUF_SIZE]; local
80 if (doCommand(ifname, buf, reply, sizeof(reply)) != 0) {
83 return (strcmp(reply, expect) == 0);
86 // Send a command to the supplicant, and return the reply as a String
96 char reply[409 local
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DMediaPlayerInvokeTest.java64 Parcel reply = Parcel.obtain();
68 mPlayer.invoke(request, reply);
69 assertEquals(val, reply.readInt());

Completed in 1218 milliseconds

123456789