Home | History | Annotate | Download | only in binder

Lines Matching refs:reply

109         Parcel send, reply;
112 INTERFACE_TRANSACTION, send, &reply);
114 String16 res(reply.readString16());
138 Parcel reply;
139 status_t err = transact(PING_TRANSACTION, send, &reply);
141 if (reply.dataSize() < sizeof(status_t)) return NOT_ENOUGH_DATA;
142 return (status_t)reply.readInt32();
148 Parcel reply;
155 status_t err = transact(DUMP_TRANSACTION, send, &reply);
160 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
165 mHandle, code, data, reply, flags);