Searched defs:open (Results 1 - 6 of 6) sorted by relevance

/system/core/libutils/
H A DTokenizer.cpp54 status_t Tokenizer::open(const String8& filename, Tokenizer** outTokenizer) { function in class:android::Tokenizer
58 int fd = ::open(filename.string(), O_RDONLY);
/system/core/adb/
H A Dtransport_local.c194 * Redefine open and write for qemu_pipe.h that contains inlined references
197 #undef open macro
199 #define open adb_open macro
202 #undef open macro
204 #define open ___xxx_open macro
H A Dsysdeps.h152 return open(path, options);
161 return open(path, options, mode);
164 #define open ___xxx_unix_open macro
331 return TEMP_FAILURE_RETRY( open(path, options) );
340 return TEMP_FAILURE_RETRY( open( path, options, mode ) );
346 return TEMP_FAILURE_RETRY( open( pathname, options, mode ) );
352 int fd = TEMP_FAILURE_RETRY( open( pathname, options ) );
358 #undef open macro
359 #define open ___xxx_open macro
H A Dadb.c158 * Redefine open and write for qemu_pipe.h that contains inlined references
162 #undef open macro
164 #define open adb_open macro
167 #undef open macro
169 #define open ___xxx_open macro
/system/core/libsparse/
H A Doutput_file.c63 int (*open)(struct output_file *, int fd); member in struct:output_file_ops
177 .open = file_open,
261 .open = gz_file_open,
311 .open = callback_file_open,
671 out->ops->open(out, fd);
751 int file_fd = open(file, O_RDONLY | O_BINARY);
/system/security/keystore/
H A Dkeystore.cpp117 ALOGE("could not open keymaster device in %s (%s)",
423 bool open() { function in class:Entropy
425 mRandom = TEMP_FAILURE_RETRY(::open(randomDevice, O_RDONLY));
427 ALOGE("open: %s: %s", randomDevice, strerror(errno));
613 int out = TEMP_FAILURE_RETRY(open(tmpFileName,
616 ALOGW("could not open file: %s: %s", tmpFileName, strerror(errno));
637 int in = TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
792 int in = TEMP_FAILURE_RETRY(open(mMasterKeyFile, O_RDONLY));
860 ALOGW("couldn't open user directory: %s", strerror(errno));
1166 ALOGW("can't open director
[all...]

Completed in 199 milliseconds