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

/system/core/include/cutils/
H A Dfs.h24 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
28 #ifndef TEMP_FAILURE_RETRY
30 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
/system/core/base/include/base/
H A Dmacros.h21 #include <unistd.h> // for TEMP_FAILURE_RETRY
23 // bionic and glibc both have TEMP_FAILURE_RETRY, but eg Mac OS' libc doesn't.
24 #ifndef TEMP_FAILURE_RETRY
25 #define TEMP_FAILURE_RETRY(exp) \ macro
/system/core/include/utils/
H A DCompat.h64 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
68 #ifndef TEMP_FAILURE_RETRY
70 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
/system/core/adb/
H A Dsysdeps.h28 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
32 #ifndef TEMP_FAILURE_RETRY
34 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
327 return TEMP_FAILURE_RETRY( open(path, options) );
336 return TEMP_FAILURE_RETRY( open( path, options, mode ) );
342 return TEMP_FAILURE_RETRY( open( pathname, options, mode ) );
348 int fd = TEMP_FAILURE_RETRY( open( pathname, options ) );
374 return TEMP_FAILURE_RETRY( read( fd, buf, len ) );
382 return TEMP_FAILURE_RETRY( write( fd, buf, len ) );
403 int fd = TEMP_FAILURE_RETRY( crea
[all...]

Completed in 107 milliseconds