Searched defs:open (Results 1 - 6 of 6) sorted by last modified time

/system/security/keystore/
H A Dkeystore.cpp115 ALOGE("could not open keymaster device in %s (%s)",
348 bool open() { function in class:Entropy
350 mRandom = TEMP_FAILURE_RETRY(::open(randomDevice, O_RDONLY));
352 ALOGE("open: %s: %s", randomDevice, strerror(errno));
538 int out = TEMP_FAILURE_RETRY(open(tmpFileName,
541 ALOGW("could not open file: %s: %s", tmpFileName, strerror(errno));
562 int in = TEMP_FAILURE_RETRY(open(filename, O_RDONLY));
705 int in = TEMP_FAILURE_RETRY(open(mMasterKeyFile, O_RDONLY));
773 ALOGW("couldn't open user directory: %s", strerror(errno));
1321 int in = TEMP_FAILURE_RETRY(open(sMetaDataFil
[all...]
/system/core/adb/
H A Dadb.c155 * Redefine open and write for qemu_pipe.h that contains inlined references
159 #undef open macro
161 #define open adb_open macro
164 #undef open macro
166 #define open ___xxx_open macro
H A Dsysdeps.h151 return open(path, options);
160 return open(path, options, mode);
163 #define open ___xxx_unix_open macro
328 return TEMP_FAILURE_RETRY( open(path, options) );
337 return TEMP_FAILURE_RETRY( open( path, options, mode ) );
343 return TEMP_FAILURE_RETRY( open( pathname, options, mode ) );
349 int fd = TEMP_FAILURE_RETRY( open( pathname, options ) );
355 #undef open macro
356 #define open ___xxx_open macro
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
/system/core/libsparse/
H A Doutput_file.c70 int (*open)(struct output_file *, int fd); member in struct:output_file_ops
184 .open = file_open,
268 .open = gz_file_open,
319 .open = callback_file_open,
682 out->ops->open(out, fd);
760 int file_fd = open(file, O_RDONLY | O_BINARY);
/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);

Completed in 122 milliseconds