Home | History | Annotate | Download | only in camera

Lines Matching full:data

45         Parcel data, reply;
46 data.writeInterfaceToken(ICameraClient::getInterfaceDescriptor());
47 data.writeInt32(msgType);
48 data.writeInt32(ext1);
49 data.writeInt32(ext2);
50 remote()->transact(NOTIFY_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
53 // generic data callback from camera service to app with image data
57 Parcel data, reply;
58 data.writeInterfaceToken(ICameraClient::getInterfaceDescriptor());
59 data.writeInt32(msgType);
60 data.writeStrongBinder(imageData->asBinder());
61 remote()->transact(DATA_CALLBACK, data, &reply, IBinder::FLAG_ONEWAY);
64 // generic data callback from camera service to app with image data
68 Parcel data, reply;
69 data.writeInterfaceToken(ICameraClient::getInterfaceDescriptor());
70 data.writeInt64(timestamp);
71 data.writeInt32(msgType);
72 data.writeStrongBinder(imageData->asBinder());
73 remote()->transact(DATA_CALLBACK_TIMESTAMP, data, &reply, IBinder::FLAG_ONEWAY);
82 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
87 CHECK_INTERFACE(ICameraClient, data, reply);
88 int32_t msgType = data.readInt32();
89 int32_t ext1 = data.readInt32();
90 int32_t ext2 = data.readInt32();
96 CHECK_INTERFACE(ICameraClient, data, reply);
97 int32_t msgType = data.readInt32();
98 sp<IMemory> imageData = interface_cast<IMemory>(data.readStrongBinder());
104 CHECK_INTERFACE(ICameraClient, data, reply);
105 nsecs_t timestamp = data.readInt64();
106 int32_t msgType = data.readInt32();
107 sp<IMemory> imageData = interface_cast<IMemory>(data.readStrongBinder());
112 return BBinder::onTransact(code, data, reply, flags);