Searched refs:reply (Results 26 - 50 of 180) sorted by relevance

12345678

/frameworks/base/media/libmedia/
H A DIAudioPolicyService.cpp73 Parcel data, reply; local
78 remote()->transact(SET_DEVICE_CONNECTION_STATE, data, &reply);
79 return static_cast <status_t> (reply.readInt32());
86 Parcel data, reply; local
90 remote()->transact(GET_DEVICE_CONNECTION_STATE, data, &reply);
91 return static_cast <audio_policy_dev_state_t>(reply.readInt32());
96 Parcel data, reply; local
99 remote()->transact(SET_PHONE_STATE, data, &reply);
100 return static_cast <status_t> (reply.readInt32());
105 Parcel data, reply; local
115 Parcel data, reply; local
125 Parcel data, reply; local
139 Parcel data, reply; local
154 Parcel data, reply; local
167 Parcel data, reply; local
178 Parcel data, reply; local
192 Parcel data, reply; local
206 Parcel data, reply; local
215 Parcel data, reply; local
224 Parcel data, reply; local
234 Parcel data, reply; local
245 Parcel data, reply; local
255 Parcel data, reply; local
266 Parcel data, reply; local
275 Parcel data, reply; local
284 Parcel data, reply; local
297 Parcel data, reply; local
310 Parcel data, reply; local
319 Parcel data, reply; local
329 Parcel data, reply; local
344 Parcel data, reply; local
368 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
H A DIStreamSource.cpp52 Parcel data, reply; local
55 remote()->transact(SET_LISTENER, data, &reply);
59 Parcel data, reply; local
65 remote()->transact(SET_BUFFERS, data, &reply);
69 Parcel data, reply; local
73 ON_BUFFER_AVAILABLE, data, &reply, IBinder::FLAG_ONEWAY);
80 uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) {
84 CHECK_INTERFACE(IStreamSource, data, reply);
92 CHECK_INTERFACE(IStreamSource, data, reply);
107 CHECK_INTERFACE(IStreamSource, data, reply);
79 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
127 Parcel data, reply; local
137 Parcel data, reply; local
155 onTransact( uint32_t code, const Parcel &data, Parcel *reply, uint32_t flags) argument
[all...]
H A DIEffectClient.cpp44 Parcel data, reply; local
47 remote()->transact(CONTROL_STATUS_CHANGED, data, &reply, IBinder::FLAG_ONEWAY);
53 Parcel data, reply; local
56 remote()->transact(ENABLE_STATUS_CHANGED, data, &reply, IBinder::FLAG_ONEWAY);
66 Parcel data, reply; local
85 remote()->transact(COMMAND_EXECUTED, data, &reply, IBinder::FLAG_ONEWAY);
95 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
100 CHECK_INTERFACE(IEffectClient, data, reply);
107 CHECK_INTERFACE(IEffectClient, data, reply);
114 CHECK_INTERFACE(IEffectClient, data, reply);
94 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
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/drm/common/
H A DIDrmManagerService.cpp115 Parcel data, reply; local
118 remote()->transact(ADD_UNIQUEID, data, &reply);
119 return reply.readInt32();
124 Parcel data, reply; local
127 remote()->transact(REMOVE_UNIQUEID, data, &reply);
131 Parcel data, reply; local
134 remote()->transact(ADD_CLIENT, data, &reply);
138 Parcel data, reply; local
141 remote()->transact(REMOVE_CLIENT, data, &reply);
147 Parcel data, reply; local
158 Parcel data, reply; local
171 Parcel data, reply; local
202 Parcel data, reply; local
231 Parcel data, reply; local
246 Parcel data, reply; local
297 Parcel data, reply; local
345 Parcel data, reply; local
373 Parcel data, reply; local
386 Parcel data, reply; local
400 Parcel data, reply; local
415 Parcel data, reply; local
432 Parcel data, reply; local
450 Parcel data, reply; local
466 Parcel data, reply; local
478 Parcel data, reply; local
489 Parcel data, reply; local
502 Parcel data, reply; local
536 Parcel data, reply; local
569 Parcel data, reply; local
605 Parcel data, reply; local
625 Parcel data, reply; local
645 Parcel data, reply; local
661 Parcel data, reply; local
681 Parcel data, reply; local
714 Parcel data, reply; local
731 Parcel data, reply; local
752 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
H A DIDrmServiceListener.cpp28 Parcel data, reply; local
35 remote()->transact(NOTIFY, data, &reply);
36 return reply.readInt32();
42 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
47 CHECK_INTERFACE(IDrmServiceListener, data, reply);
53 reply->writeInt32(status);
58 return BBinder::onTransact(code, data, reply, flags);
41 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/core/jni/
H A DActivityManager.cpp37 Parcel data, reply; local
40 status_t ret = am->transact(OPEN_CONTENT_URI_TRANSACTION, data, &reply);
42 int32_t exceptionCode = reply.readExceptionCode();
46 if (reply.readInt32() != 0) {
47 fd = dup(reply.readFileDescriptor());
H A Dandroid_net_wifi_Wifi.cpp64 char reply[BUF_SIZE]; local
65 if (doCommand(buf, reply, sizeof(reply)) != 0) {
68 return static_cast<jint>(atoi(reply));
81 char reply[BUF_SIZE]; local
82 if (doCommand(buf, reply, sizeof(reply)) != 0) {
85 return (strcmp(reply, expect) == 0);
88 // Send a command to the supplicant, and return the reply as a String
98 char reply[409 local
378 char reply[BUF_SIZE]; local
407 char reply[BUF_SIZE]; local
428 char reply[BUF_SIZE]; local
449 char reply[25]; local
[all...]
H A Dandroid_bluetooth_common.h105 void (*reply)(DBusMessage *, void *, void *),
150 jint dbus_returns_int32(JNIEnv *env, DBusMessage *reply);
151 jint dbus_returns_uint32(JNIEnv *env, DBusMessage *reply);
152 jint dbus_returns_unixfd(JNIEnv *env, DBusMessage *reply);
153 jstring dbus_returns_string(JNIEnv *env, DBusMessage *reply);
154 jboolean dbus_returns_boolean(JNIEnv *env, DBusMessage *reply);
155 jobjectArray dbus_returns_array_of_strings(JNIEnv *env, DBusMessage *reply);
156 jobjectArray dbus_returns_array_of_object_path(JNIEnv *env, DBusMessage *reply);
157 jbyteArray dbus_returns_array_of_bytes(JNIEnv *env, DBusMessage *reply);
174 void append_dict_args(DBusMessage *reply, cons
[all...]
H A Dandroid_server_BluetoothService.cpp215 DBusMessage *reply = NULL; local
240 reply = dbus_connection_send_with_reply_and_block(nat->conn, msg, -1, &err);
249 if (reply) dbus_message_unref(reply);
261 DBusMessage *reply = NULL; local
285 reply = dbus_connection_send_with_reply_and_block(nat->conn, msg, -1, &err);
301 if (reply) dbus_message_unref(reply);
317 DBusMessage *reply = dbus_func_args(env, nat->conn, local
321 if (!reply) retur
433 DBusMessage *reply = local
458 DBusMessage *reply = local
534 DBusMessage *reply; local
565 DBusMessage *reply = dbus_message_new_method_return(msg); local
592 DBusMessage *reply = dbus_message_new_method_return(msg); local
626 DBusMessage *reply; local
655 DBusMessage *reply = dbus_message_new_method_return(msg); local
685 DBusMessage *reply = dbus_message_new_error(msg, local
710 DBusMessage *msg, *reply; local
747 DBusMessage *msg, *reply; local
784 dbus_bool_t reply = JNI_FALSE; local
851 dbus_bool_t reply = JNI_FALSE; local
973 extract_handles(JNIEnv *env, DBusMessage *reply) argument
1001 DBusMessage *reply = NULL; local
1028 DBusMessage *reply = NULL; local
1055 DBusMessage *reply = dbus_func_args(env, nat->conn, local
1076 DBusMessage *reply = dbus_func_args(env, nat->conn, local
1094 DBusMessage *reply = dbus_func_args(env, nat->conn, local
1168 DBusMessage *reply; local
1309 DBusMessage *msg, *reply; local
1372 DBusMessage *msg, *reply; local
1431 DBusMessage *reply = local
1528 DBusMessage *reply = dbus_func_args(env, nat->conn, local
1562 DBusMessage *reply = dbus_func_args(env, nat->conn, local
1610 DBusMessage *reply = dbus_func_args(env, nat->conn, local
1632 DBusMessage *reply = dbus_func_args(env, nat->conn, local
[all...]
/frameworks/base/obex/javax/obex/
H A DServerRequestHandler.java85 * Sets the connection ID header to include in the reply packets.
117 * reply must be specified in the <code>reply</code> argument.
120 * @param reply the headers that should be sent in the reply;
121 * <code>reply</code> will never be <code>null</code>
127 public int onConnect(HeaderSet request, HeaderSet reply) { argument
136 * reply must be specified in the <code>reply</code> argument.
139 * @param reply th
142 onDisconnect(HeaderSet request, HeaderSet reply) argument
171 onSetPath(HeaderSet request, HeaderSet reply, boolean backup, boolean create) argument
195 onDelete(HeaderSet request, HeaderSet reply) argument
202 onAbort(HeaderSet request, HeaderSet reply) argument
[all...]
/frameworks/base/libs/gui/
H A DIGraphicBufferAlloc.cpp47 Parcel data, reply; local
53 remote()->transact(CREATE_GRAPHIC_BUFFER, data, &reply);
55 status_t result = reply.readInt32();
58 reply.read(*graphicBuffer);
59 // reply.readStrongBinder();
73 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
90 CHECK_INTERFACE(IGraphicBufferAlloc, data, reply);
98 reply->writeInt32(error);
100 reply->write(*result);
107 reply
72 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
H A DISurfaceComposerClient.cpp73 Parcel data, reply; local
81 remote()->transact(CREATE_SURFACE, data, &reply);
82 params->readFromParcel(reply);
83 return interface_cast<ISurface>(reply.readStrongBinder());
88 Parcel data, reply; local
91 remote()->transact(DESTROY_SURFACE, data, &reply);
92 return reply.readInt32();
101 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
105 CHECK_INTERFACE(ISurfaceComposerClient, data, reply);
115 params.writeToParcel(reply);
100 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
/frameworks/base/libs/storage/
H A DIObbActionListener.cpp41 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
45 CHECK_INTERFACE(IObbActionListener, data, reply);
50 reply->writeNoException();
54 return BBinder::onTransact(code, data, reply, flags);
40 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/cmds/servicemanager/
H A Dbctest.c14 struct binder_io msg, reply; local
21 if (binder_call(bs, &msg, &reply, target, SVC_MGR_CHECK_SERVICE))
24 ptr = bio_get_ref(&reply);
29 binder_done(bs, &msg, &reply);
38 struct binder_io msg, reply; local
46 if (binder_call(bs, &msg, &reply, target, SVC_MGR_ADD_SERVICE))
49 status = bio_get_uint32(&reply);
51 binder_done(bs, &msg, &reply);
/frameworks/base/core/java/android/os/
H A DBinder.java213 protected boolean onTransact(int code, Parcel data, Parcel reply, argument
216 reply.writeString(getInterfaceDescriptor());
233 if (reply != null) {
234 reply.writeNoException();
291 public final boolean transact(int code, Parcel data, Parcel reply, argument
297 boolean r = onTransact(code, data, reply, flags);
298 if (reply != null) {
299 reply.setDataPosition(0);
332 Parcel reply = Parcel.obtain(replyObj);
338 res = onTransact(code, data, reply, flag
365 transact(int code, Parcel data, Parcel reply, int flags) argument
[all...]
/frameworks/base/libs/binder/
H A DIServiceManager.cpp147 Parcel data, reply; local
150 remote()->transact(CHECK_SERVICE_TRANSACTION, data, &reply);
151 return reply.readStrongBinder();
156 Parcel data, reply; local
160 status_t err = remote()->transact(ADD_SERVICE_TRANSACTION, data, &reply);
161 return err == NO_ERROR ? reply.readExceptionCode() : err;
170 Parcel data, reply; local
173 status_t err = remote()->transact(LIST_SERVICES_TRANSACTION, data, &reply);
176 res.add(reply.readString16());
187 uint32_t code, const Parcel& data, Parcel* reply, uint32_
186 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...]
/frameworks/base/libs/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 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/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/cmds/installd/
H A Dinstalld.c22 #define REPLY_MAX 256 /* largest reply allowed */
24 static int do_ping(char **arg, char reply[REPLY_MAX]) argument
29 static int do_install(char **arg, char reply[REPLY_MAX]) argument
34 static int do_dexopt(char **arg, char reply[REPLY_MAX]) argument
40 static int do_move_dex(char **arg, char reply[REPLY_MAX]) argument
45 static int do_rm_dex(char **arg, char reply[REPLY_MAX]) argument
50 static int do_remove(char **arg, char reply[REPLY_MAX]) argument
55 static int do_rename(char **arg, char reply[REPLY_MAX]) argument
60 static int do_free_cache(char **arg, char reply[REPLY_MAX]) /* TODO int:free_size */ argument
65 static int do_rm_cache(char **arg, char reply[REPLY_MA argument
70 do_protect(char **arg, char reply[REPLY_MAX]) argument
75 do_get_size(char **arg, char reply[REPLY_MAX]) argument
95 do_rm_user_data(char **arg, char reply[REPLY_MAX]) argument
100 do_mk_user_data(char **arg, char reply[REPLY_MAX]) argument
105 do_rm_user(char **arg, char reply[REPLY_MAX]) argument
110 do_movefiles(char **arg, char reply[REPLY_MAX]) argument
115 do_linklib(char **arg, char reply[REPLY_MAX]) argument
120 do_unlinklib(char **arg, char reply[REPLY_MAX]) argument
196 char reply[REPLY_MAX]; local
[all...]
/frameworks/base/services/powermanager/
H A DIPowerManager.cpp46 Parcel data, reply; local
54 return remote()->transact(ACQUIRE_WAKE_LOCK, data, &reply);
59 Parcel data, reply; local
63 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);

Completed in 752 milliseconds

12345678