Lines Matching defs:data

45         Parcel data, reply;
46 data.writeInterfaceToken(ICameraRecordingProxyListener::getInterfaceDescriptor());
47 data.writeInt64(timestamp);
48 data.writeInt32(msgType);
49 data.writeStrongBinder(IInterface::asBinder(imageData));
50 remote()->transact(DATA_CALLBACK_TIMESTAMP, data, &reply, IBinder::FLAG_ONEWAY);
55 Parcel data, reply;
56 data.writeInterfaceToken(ICameraRecordingProxyListener::getInterfaceDescriptor());
57 data.writeInt64(timestamp);
58 data.writeNativeHandle(handle);
59 remote()->transact(RECORDING_FRAME_HANDLE_CALLBACK_TIMESTAMP, data, &reply,
71 Parcel data, reply;
72 data.writeInterfaceToken(ICameraRecordingProxyListener::getInterfaceDescriptor());
80 data.writeUint32(n);
82 data.writeInt64(ts);
85 data.writeNativeHandle(handle);
87 remote()->transact(RECORDING_FRAME_HANDLE_CALLBACK_TIMESTAMP_BATCH, data, &reply,
103 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
108 CHECK_INTERFACE(ICameraRecordingProxyListener, data, reply);
109 nsecs_t timestamp = data.readInt64();
110 int32_t msgType = data.readInt32();
111 sp<IMemory> imageData = interface_cast<IMemory>(data.readStrongBinder());
117 CHECK_INTERFACE(ICameraRecordingProxyListener, data, reply);
119 status_t res = data.readInt64(&timestamp);
125 native_handle_t* handle = data.readNativeHandle();
137 CHECK_INTERFACE(ICameraRecordingProxyListener, data, reply);
139 status_t res = data.readUint32(&n);
150 res = data.readInt64(&t);
159 native_handle_t* handle = data.readNativeHandle();
173 return BBinder::onTransact(code, data, reply, flags);