OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ota_open
(Results
1 - 4
of
4
) sorted by null
/bootable/recovery/otafault/
ota_io.h
33
int
ota_open
(const char* path, int oflags);
35
int
ota_open
(const char* path, int oflags, mode_t mode);
ota_io.cpp
53
int
ota_open
(const char* path, int oflags) {
function
60
int
ota_open
(const char* path, int oflags, mode_t mode) {
function
/bootable/recovery/applypatch/
applypatch.cpp
270
int fd =
ota_open
(filename, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, S_IRUSR | S_IWUSR);
370
int fd =
ota_open
(partition, O_RDWR | O_SYNC);
400
fd =
ota_open
(partition, O_RDONLY);
409
int dc =
ota_open
("/proc/sys/vm/drop_caches", O_WRONLY);
899
output_fd =
ota_open
(tmp_target_filename.c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_SYNC,
[
all
...]
/bootable/recovery/updater/
install.cpp
564
int fd = TEMP_FAILURE_RETRY(
ota_open
(dest_path, O_WRONLY | O_CREAT | O_TRUNC | O_SYNC,
[
all
...]
Completed in 762 milliseconds