Searched defs:TEMP_FAILURE_RETRY (Results 1 - 2 of 2) 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/adb/
H A Dsysdeps.h281 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
285 #ifndef TEMP_FAILURE_RETRY
287 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
329 return TEMP_FAILURE_RETRY( open(path, options) );
338 return TEMP_FAILURE_RETRY( open( path, options, mode ) );
344 return TEMP_FAILURE_RETRY( open( pathname, options, mode ) );
350 int fd = TEMP_FAILURE_RETRY( open( pathname, options ) );
376 return TEMP_FAILURE_RETRY( read( fd, buf, len ) );
384 return TEMP_FAILURE_RETRY( write( fd, buf, len ) );
405 int fd = TEMP_FAILURE_RETRY( crea
[all...]

Completed in 45 milliseconds