Searched defs:TEMP_FAILURE_RETRY (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/cmds/idmap/
H A Didmap.h13 #ifndef TEMP_FAILURE_RETRY
15 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
/frameworks/base/libs/androidfw/
H A DStreamingZipInflater.cpp30 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
34 #ifndef TEMP_FAILURE_RETRY
36 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
213 ssize_t didRead = TEMP_FAILURE_RETRY(::read(mFd, mInBuf, toRead));
H A DObbFile.cpp58 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
62 #ifndef TEMP_FAILURE_RETRY
64 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
137 actual = TEMP_FAILURE_RETRY(read(fd, footer, kFooterTagSize));
179 actual = TEMP_FAILURE_RETRY(read(fd, scanBuf, footerSize));
H A DAssetManager.cpp48 #ifndef TEMP_FAILURE_RETRY
50 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
666 if (TEMP_FAILURE_RETRY(flock(fileno(fin), LOCK_SH)) != 0) {
704 TEMP_FAILURE_RETRY(flock(fileno(fin), LOCK_UN));

Completed in 156 milliseconds