OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
55
int
ota_open
(const char* path, int oflags) {
function
62
int
ota_open
(const char* path, int oflags, mode_t mode) {
function
/bootable/recovery/applypatch/
applypatch.cpp
191
unique_fd fd(
ota_open
(filename, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, S_IRUSR | S_IWUSR));
236
unique_fd fd(
ota_open
(partition, O_RDWR));
270
fd.reset(
ota_open
(partition, O_RDONLY));
278
unique_fd dc(
ota_open
("/proc/sys/vm/drop_caches", O_WRONLY));
335
fd.reset(
ota_open
(partition, O_RDWR));
/bootable/recovery/updater/
blockimg.cpp
668
android::base::unique_fd fd(TEMP_FAILURE_RETRY(
ota_open
(fn.c_str(), O_RDONLY)));
731
TEMP_FAILURE_RETRY(
ota_open
(fn.c_str(), O_WRONLY | O_CREAT | O_TRUNC, STASH_FILE_MODE)));
758
android::base::unique_fd dfd(TEMP_FAILURE_RETRY(
ota_open
(dname.c_str(),
[
all
...]
install.cpp
451
ota_open
(dest_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)));
[
all
...]
Completed in 387 milliseconds