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

/system/core/include/cutils/
H A Dfs.h23 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
27 #ifndef TEMP_FAILURE_RETRY
29 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
/system/core/include/utils/
H A DCompat.h51 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
55 #ifndef TEMP_FAILURE_RETRY
57 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
/system/core/adb/
H A Dsysdeps.h280 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
284 #ifndef TEMP_FAILURE_RETRY
286 #define TEMP_FAILURE_RETRY(exp) ({ \ 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 ) );
375 return TEMP_FAILURE_RETRY( read( fd, buf, len ) );
383 return TEMP_FAILURE_RETRY( write( fd, buf, len ) );
404 int fd = TEMP_FAILURE_RETRY( crea
[all...]

Completed in 1062 milliseconds