Home | History | Annotate | Download | only in os

Lines Matching refs:reply

255     protected boolean onTransact(int code, Parcel data, Parcel reply,
258 reply.writeString(getInterfaceDescriptor());
275 if (reply != null) {
276 reply.writeNoException();
341 public final boolean transact(int code, Parcel data, Parcel reply,
347 boolean r = onTransact(code, data, reply, flags);
348 if (reply != null) {
349 reply.setDataPosition(0);
382 Parcel reply = Parcel.obtain(replyObj);
388 res = onTransact(code, data, reply, flags);
390 reply.setDataPosition(0);
391 reply.writeException(e);
394 reply.setDataPosition(0);
395 reply.writeException(e);
399 reply.setDataPosition(0);
400 reply.writeException(re);
403 reply.recycle();
418 public native boolean transact(int code, Parcel data, Parcel reply,
426 Parcel reply = Parcel.obtain();
430 transact(DUMP_TRANSACTION, data, reply, 0);
431 reply.readException();
434 reply.recycle();
440 Parcel reply = Parcel.obtain();
444 transact(DUMP_TRANSACTION, data, reply, FLAG_ONEWAY);
445 reply.readException();
448 reply.recycle();