Home | History | Annotate | Download | only in liboverlay

Lines Matching refs:open

35 #include <fcntl.h> // open, O_RDWR, etc
88 /* helper function to open by using fbnum */
89 bool open(OvFD& fd, uint32_t fbnum, const char* const dev,
219 * Usually, you want to open the rotator to make sure it is
674 return overlay::open(fd, fbnum, devpath, flags);
735 /* Open fd using the path given by dev.
737 bool open(const char* const dev,
770 inline bool open(OvFD& fd, uint32_t fbnum, const char* const dev, int flags)
774 return fd.open(dev_name, flags);
785 inline bool OvFD::open(const char* const dev, int flags)
787 mFD = ::open(dev, flags, 0);
790 ALOGE("Cant open device %s err=%d", dev, errno);