Home | History | Annotate | Download | only in base

Lines Matching defs:hidl_handle

38 hidl_handle::hidl_handle() {
43 hidl_handle::~hidl_handle() {
47 hidl_handle::hidl_handle(const native_handle_t *handle) {
53 hidl_handle::hidl_handle(const hidl_handle &other) {
59 hidl_handle::hidl_handle(hidl_handle &&other) {
65 hidl_handle &hidl_handle::operator=(const hidl_handle &other) {
73 PLOG(FATAL) << "Failed to clone native_handle in hidl_handle";
83 hidl_handle &hidl_handle::operator=(const native_handle_t *native_handle) {
90 hidl_handle &hidl_handle::operator=(hidl_handle &&other) {
101 void hidl_handle::setTo(native_handle_t* handle, bool shouldOwn) {
107 const native_handle_t* hidl_handle::operator->() const {
112 hidl_handle::operator const native_handle_t *() const {
117 const native_handle_t *hidl_handle::getNativeHandle() const {
121 void hidl_handle::freeHandle() {
126 // 2. Copy/assignment from another hidl_handle, in which case we have
128 // 3. Move constructor from another hidl_handle, in which case the original
129 // hidl_handle must have been non-const as well.
297 hidl_handle hidlHandle;
306 HidlMemory::HidlMemory(const hidl_string& name, hidl_handle&& handle, size_t size)