HomeSort by relevance Sort by last modified time
    Searched refs:ota_open (Results 1 - 5 of 5) sorted by null

  /bootable/recovery/otafault/
ota_io.h 37 int ota_open(const char* path, int oflags);
39 int ota_open(const char* path, int oflags, mode_t mode);
ota_io.cpp 58 int ota_open(const char* path, int oflags) { function
66 int ota_open(const char* path, int oflags, mode_t mode) { function
  /bootable/recovery/applypatch/
applypatch.cpp 192 unique_fd fd(ota_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, S_IRUSR | S_IWUSR));
237 unique_fd fd(ota_open(partition, O_RDWR));
271 fd.reset(ota_open(partition, O_RDONLY));
279 unique_fd dc(ota_open("/proc/sys/vm/drop_caches", O_WRONLY));
336 fd.reset(ota_open(partition, O_RDWR));
  /bootable/recovery/updater/
blockimg.cpp 676 android::base::unique_fd fd(TEMP_FAILURE_RETRY(ota_open(fn.c_str(), O_RDONLY)));
739 TEMP_FAILURE_RETRY(ota_open(fn.c_str(), O_WRONLY | O_CREAT | O_TRUNC, STASH_FILE_MODE)));
766 android::base::unique_fd dfd(TEMP_FAILURE_RETRY(ota_open(dname.c_str(),
    [all...]
install.cpp 444 ota_open(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)));
    [all...]

Completed in 47 milliseconds