Searched defs:TEMP_FAILURE_RETRY (Results 1 - 3 of 3) 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/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.h283 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
287 #ifndef TEMP_FAILURE_RETRY
289 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
331 return TEMP_FAILURE_RETRY( open(path, options) );
340 return TEMP_FAILURE_RETRY( open( path, options, mode ) );
346 return TEMP_FAILURE_RETRY( open( pathname, options, mode ) );
352 int fd = TEMP_FAILURE_RETRY( open( pathname, options ) );
378 return TEMP_FAILURE_RETRY( read( fd, buf, len ) );
386 return TEMP_FAILURE_RETRY( write( fd, buf, len ) );
407 int fd = TEMP_FAILURE_RETRY( crea
[all...]

Completed in 5259 milliseconds