Lines Matching refs:open
35 #include <fcntl.h> // open, O_RDWR, etc
89 /* helper function to open by using fbnum */
90 bool open(OvFD& fd, uint32_t fbnum, const char* const dev,
219 * Usually, you want to open the rotator to make sure it is
696 return overlay::open(fd, fbnum, devpath, flags);
757 /* Open fd using the path given by dev.
759 bool open(const char* const dev,
792 inline bool open(OvFD& fd, uint32_t fbnum, const char* const dev, int flags)
796 return fd.open(dev_name, flags);
807 inline bool OvFD::open(const char* const dev, int flags)
809 mFD = ::open(dev, flags, 0);
812 ALOGE("Cant open device %s err=%d", dev, errno);