Searched refs:oflags (Results 1 – 2 of 2) sorted by relevance
33 int ota_open(const char* path, int oflags);35 int ota_open(const char* path, int oflags, mode_t mode);
53 int ota_open(const char* path, int oflags) { in ota_open() argument55 int fd = open(path, oflags); in ota_open()60 int ota_open(const char* path, int oflags, mode_t mode) { in ota_open() argument61 int fd = open(path, oflags, mode); in ota_open()