Searched defs:reply (Results 101 - 110 of 110) sorted by relevance

12345

/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp621 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
623 return BnAudioPolicyService::onTransact(code, data, reply, flags);
620 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DAudioFlinger.cpp5871 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
5873 return BnAudioTrack::onTransact(code, data, reply, flags);
5979 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
5981 return BnAudioRecord::onTransact(code, data, reply, flags);
9075 int reply; local
9096 &reply);
9100 *(int *)pReplyData = reply;
9102 } else if (reply != NO_ERROR) {
9103 *(int *)pReplyData = reply;
9155 uint32_t code, const Parcel& data, Parcel* reply, uint32_
5870 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
5978 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
9154 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
9760 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp264 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags = 0)
278 code, (int32_t)&data, (int32_t)reply, flags);
314 BBinder::onTransact(code, data, reply, flags);
319 // << reply << ": " << *reply << endl;
1059 Parcel* reply = parcelForJavaObject(env, replyObj); local
1060 if (reply == NULL && replyObj != NULL) {
1083 status_t err = target->transact(code, *data, reply, flags);
1084 //if (reply) printf("Transact from Java code to %p received: ", target); reply
263 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags = 0) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java627 * parcels for the request and reply. Both payloads' format is a
635 * @param reply Output parcel with the data returned by the
640 public void invoke(Parcel request, Parcel reply) { argument
641 int retcode = native_invoke(request, reply);
642 reply.setDataPosition(0);
745 Parcel reply = Parcel.obtain();
750 invoke(request, reply);
753 reply.recycle();
1201 Parcel reply = Parcel.obtain();
1204 if (!native_getMetadata(update_only, apply_filter, reply)) {
1473 getParameter(int key, Parcel reply) argument
1537 native_invoke(Parcel request, Parcel reply) argument
1553 native_getMetadata(boolean update_only, boolean apply_filter, Parcel reply) argument
1893 native_pullBatteryData(Parcel reply) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java112 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
134 reply.writeNoException();
135 reply.writeInt(result);
159 reply.writeNoException();
160 reply.writeInt(result);
184 reply.writeNoException();
185 result.writeToParcel(reply, 0);
206 reply.writeNoException();
207 reply.writeInt(result);
232 reply
[all...]
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp2415 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
2452 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
2454 CHECK_INTERFACE(ISurfaceComposer, data, reply);
2502 reply->writeInt32(0);
2503 reply->writeInt32(0);
2504 reply->writeInt32(mDebugRegion);
2505 reply->writeInt32(0);
2506 reply->writeInt32(mDebugDisableHWC);
2511 reply->writeInt32(hw->getPageFlipCount());
2414 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java640 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
644 if (reply != null) {
646 reply.sendResult(null);
819 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
822 return super.onTransact(code, data, reply, flags);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java1647 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
1675 return super.onTransact(code, data, reply, flags);
2606 // Propagate reply information over to the new activity.
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java1361 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
1364 return super.onTransact(code, data, reply, flags);
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java857 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
860 return super.onTransact(code, data, reply, flags);
6437 Parcel reply = null;
6470 reply = Parcel.obtain();
6474 binder.transact(IBinder.FIRST_CALL_TRANSACTION, data, reply, 0);
6476 reply.readException();
6491 if (reply != null) {
6492 reply.recycle();

Completed in 1270 milliseconds

12345