Home | History | Annotate | Download | only in gui

Lines Matching refs:reply

50         Parcel data, reply;
52 remote()->transact(GET_SENSOR_LIST, data, &reply);
55 int32_t n = reply.readInt32();
58 reply.read(s);
66 Parcel data, reply;
68 remote()->transact(CREATE_SENSOR_EVENT_CONNECTION, data, &reply);
69 return interface_cast<ISensorEventConnection>(reply.readStrongBinder());
78 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
82 CHECK_INTERFACE(ISensorServer, data, reply);
85 reply->writeInt32(n);
87 reply->write(v[i]);
92 CHECK_INTERFACE(ISensorServer, data, reply);
94 reply->writeStrongBinder(connection->asBinder());
98 return BBinder::onTransact(code, data, reply, flags);