Lines Matching refs:TEMP_FAILURE_RETRY
128 return TEMP_FAILURE_RETRY(unix_read_interruptible(fd, buf, len)); in unix_read()
453 return TEMP_FAILURE_RETRY(open(zero_terminated.c_str(), options)); in unix_open()
460 return TEMP_FAILURE_RETRY(open(zero_terminated.c_str(), options, mode)); in unix_open()
467 return TEMP_FAILURE_RETRY(open(pathname, options, mode)); in adb_open_mode()
478 int fd = TEMP_FAILURE_RETRY(open(pathname, options)); in adb_open()
518 return TEMP_FAILURE_RETRY(read(fd.get(), buf, len)); in adb_read()
523 return TEMP_FAILURE_RETRY(pread(fd.get(), buf, len, offset)); in adb_pread()
525 return TEMP_FAILURE_RETRY(pread64(fd.get(), buf, len, offset)); in adb_pread()
540 return TEMP_FAILURE_RETRY(write(fd.get(), buf, len)); in adb_write()
545 return TEMP_FAILURE_RETRY(pwrite(fd, buf, len, offset)); in adb_pwrite()
547 return TEMP_FAILURE_RETRY(pwrite64(fd, buf, len, offset)); in adb_pwrite()
573 int fd = TEMP_FAILURE_RETRY(creat(path, mode)); in adb_creat()
619 fd = TEMP_FAILURE_RETRY(accept(serverfd.get(), addr, addrlen)); in adb_socket_accept()
721 return TEMP_FAILURE_RETRY(poll(fds, nfds, timeout)); in adb_poll()