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

12345678

/frameworks/native/libs/binder/
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
293 Parcel data, reply; local
366 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
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
/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/av/camera/
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/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/base/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_clone_user_data(char **arg, char reply[REPLY_MAX]) argument
119 do_movefiles(char **arg, char reply[REPLY_MAX]) argument
124 do_linklib(char **arg, char reply[REPLY_MAX]) argument
200 char reply[REPLY_MAX]; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp67 void ARTSPConnection::connect(const char *url, const sp<AMessage> &reply) { argument
70 msg->setMessage("reply", reply);
74 void ARTSPConnection::disconnect(const sp<AMessage> &reply) { argument
76 msg->setMessage("reply", reply);
81 const char *request, const sp<AMessage> &reply) {
84 msg->setMessage("reply", reply);
88 void ARTSPConnection::observeBinaryData(const sp<AMessage> &reply) { argument
80 sendRequest( const char *request, const sp<AMessage> &reply) argument
227 sp<AMessage> reply; local
332 sp<AMessage> reply; local
341 sp<AMessage> reply; local
401 sp<AMessage> reply; local
505 sp<AMessage> reply = mPendingRequests.valueAt(i); local
733 sp<AMessage> reply = mPendingRequests.valueAt(i); local
868 sp<AMessage> reply = mPendingRequests.valueAt(i); local
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DTakeScreenshotService.java43 Message reply = Message.obtain(null, 1);
45 callback.send(reply);
/frameworks/av/services/audioflinger/
H A DISchedulingPolicyService.h39 Parcel* 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...]
H A DIMountServiceListener.java61 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
65 reply.writeString(DESCRIPTOR);
73 reply.writeNoException();
85 reply.writeNoException();
89 return super.onTransact(code, data, reply, flags);
/frameworks/base/include/storage/
H A DIMountShutdownObserver.h40 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());
/frameworks/av/media/libmedia/
H A DIAudioFlingerClient.cpp44 Parcel data, reply; local
60 remote()->transact(IO_CONFIG_CHANGED, data, &reply, IBinder::FLAG_ONEWAY);
69 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
73 CHECK_INTERFACE(IAudioFlingerClient, data, reply);
95 return BBinder::onTransact(code, data, reply, flags);
68 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/obex/javax/obex/
H A DServerSession.java155 * request, this method will create a reply message to send to the server.
162 HeaderSet reply = new HeaderSet();
172 code = mListener.onAbort(request, reply);
183 * It will also send replies and receive requests until the final reply
184 * should be sent. When the final reply should be sent, this method will get
185 * the response code to use and send the reply. The
186 * <code>ServerOperation</code> object will always reply with a
187 * OBEX_HTTP_CONTINUE reply. It will only reply if further information is
228 * It will also send replies and receive requests until the final reply
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleHeap.java177 /* create a non-empty reply so the handler fires on completion */
178 byte[] reply = { result };
179 return new Chunk(CHUNK_HPDU, reply, 0, reply.length);
250 byte[] reply = new byte[1];
251 reply[0] = DdmVmInternal.getRecentAllocationStatus() ? (byte)1 :(byte)0;
252 return new Chunk(CHUNK_REAQ, reply, 0, reply.length);
264 /* generate the reply in a ready-to-go format */
265 byte[] reply
[all...]
H A DDdmHandleProfiling.java128 /* create a non-empty reply so the handler fires on completion */
129 byte[] reply = { result };
130 return new Chunk(CHUNK_MPRE, reply, 0, reply.length);
183 /* create a non-empty reply so the handler fires on completion */
184 byte[] reply = { (byte) result };
185 return new Chunk(CHUNK_MPRQ, reply, 0, reply.length);
/frameworks/native/services/sensorservice/
H A DBatteryService.cpp42 Parcel data, reply; local
47 TRANSACTION_noteStartSensor, data, &reply, 0);
48 err = reply.readExceptionCode();
53 Parcel data, reply; local
58 TRANSACTION_noteStopSensor, data, &reply, 0);
59 err = reply.readExceptionCode();
/frameworks/base/cmds/servicemanager/
H A Dbinder.h69 struct binder_io *reply);
78 struct binder_io *msg, struct binder_io *reply,
87 struct binder_io *msg, struct binder_io *reply);
/frameworks/av/include/camera/
H A DICameraRecordingProxy.h95 Parcel* reply,

Completed in 726 milliseconds

12345678