Home
last modified time | relevance | path

Searched refs:TEMP_FAILURE_RETRY (Results 1 – 18 of 18) sorted by relevance

/art/runtime/base/unix_file/
Dfd_file.cc92 fd_ = TEMP_FAILURE_RETRY(open(path.c_str(), flags, mode)); in Open()
110 int result = TEMP_FAILURE_RETRY(close(fd_)); in Close()
130 int rc = TEMP_FAILURE_RETRY(fdatasync(fd_)); in Flush()
132 int rc = TEMP_FAILURE_RETRY(fsync(fd_)); in Flush()
140 int rc = TEMP_FAILURE_RETRY(pread64(fd_, buf, byte_count, offset)); in Read()
142 int rc = TEMP_FAILURE_RETRY(pread(fd_, buf, byte_count, offset)); in Read()
149 int rc = TEMP_FAILURE_RETRY(ftruncate64(fd_, new_length)); in SetLength()
151 int rc = TEMP_FAILURE_RETRY(ftruncate(fd_, new_length)); in SetLength()
159 int rc = TEMP_FAILURE_RETRY(fstat(fd_, &s)); in GetLength()
165 int rc = TEMP_FAILURE_RETRY(pwrite64(fd_, buf, byte_count, offset)); in Write()
[all …]
Dmapped_file.cc49 int result = TEMP_FAILURE_RETRY(fstat(Fd(), &st)); in MapReadOnly()
71 int result = TEMP_FAILURE_RETRY(ftruncate64(Fd(), file_size)); in MapReadWrite()
73 int result = TEMP_FAILURE_RETRY(ftruncate(Fd(), file_size)); in MapReadWrite()
100 int result = TEMP_FAILURE_RETRY(munmap(mapped_file_, file_size_)); in Unmap()
144 int rc = IsMapped() ? TEMP_FAILURE_RETRY(msync(mapped_file_, file_size_, 0)) : FdFile::Flush(); in Flush()
Dmapped_file_test.cc37 int fd = TEMP_FAILURE_RETRY(open(good_path_.c_str(), O_CREAT|O_RDWR, 0666)); in SetUp()
54 TEMP_FAILURE_RETRY(truncate(good_path_.c_str(), 0)); in MakeTestFile()
141 FdFile new_file(TEMP_FAILURE_RETRY(open(new_path.c_str(), O_RDONLY)), false); in TEST_F()
212 TEMP_FAILURE_RETRY(unlink(good_path_.c_str())); in TEST_F()
/art/runtime/base/
Dscoped_flock.cc38 int flock_result = TEMP_FAILURE_RETRY(flock(file_->Fd(), LOCK_EX)); in Init()
44 int fstat_result = TEMP_FAILURE_RETRY(fstat(file_->Fd(), &fstat_stat)); in Init()
50 int stat_result = TEMP_FAILURE_RETRY(stat(filename, &stat_stat)); in Init()
72 if (0 != TEMP_FAILURE_RETRY(flock(file_->Fd(), LOCK_EX))) { in Init()
93 int flock_result = TEMP_FAILURE_RETRY(flock(file_->Fd(), LOCK_UN)); in ~ScopedFlock()
Dmacros.h24 #ifndef TEMP_FAILURE_RETRY
25 #define TEMP_FAILURE_RETRY(exp) ({ \ macro
Dmutex.cc836 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts)); in TimedWait()
/art/runtime/jdwp/
Djdwp_adb.cc162 int rc = TEMP_FAILURE_RETRY(recvmsg(control_sock_, &msg, 0)); in ReceiveClientFd()
237 ret = TEMP_FAILURE_RETRY(send(control_sock_, buff, 4, 0)); in Accept()
421 int cc = TEMP_FAILURE_RETRY(write(clientSock, input_buffer_, kMagicHandshakeLen)); in ProcessIncoming()
Djdwp_main.cc70 TEMP_FAILURE_RETRY(write(wake_pipe_[1], "", 1)); in WakePipe()
130 return TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), length)); in WritePacket()
138 return TEMP_FAILURE_RETRY(writev(clientSock, &iov[0], iov.size())); in WriteBufferedPacket()
Djdwp_socket.cc478 int cc = TEMP_FAILURE_RETRY(write(clientSock, input_buffer_, kMagicHandshakeLen)); in ProcessIncoming()
/art/runtime/
Dsignal_set.h49 int rc = TEMP_FAILURE_RETRY(sigwait(&set_, &signal_number)); in Wait()
Dzip_archive_test.cc57 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buf, kBufSize)); in TEST_F()
Dutils.cc121 int64_t n = TEMP_FAILURE_RETRY(read(file->Fd(), &buf[0], buf.size())); in ReadFileToString()
1363 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0)); in Exec()
Ddex_file.cc60 int n = TEMP_FAILURE_RETRY(read(fd.get(), magic, sizeof(*magic))); in OpenAndReadMagic()
Dclass_linker.cc669 TEMP_FAILURE_RETRY(unlink(oat_cache_filename)); in GenerateOatFile()
1376 if (TEMP_FAILURE_RETRY(unlink(cache_filename.c_str())) != 0) { in OpenOatFileFromDexLocation()
/art/compiler/utils/
Dswap_space.cc136 int result = TEMP_FAILURE_RETRY(ftruncate64(fd_, size_ + next_part)); in NewFileChunk()
/art/runtime/gc/space/
Dimage_space.cc112 if (TEMP_FAILURE_RETRY(unlink(cache_file.c_str())) != 0) { in RealPruneDalvikCache()
117 CHECK_EQ(0, TEMP_FAILURE_RETRY(closedir(cache_dir))) << "Unable to close directory."; in RealPruneDalvikCache()
412 int res = TEMP_FAILURE_RETRY(statvfs(cache_filename.c_str(), &buf)); in CheckSpace()
/art/dex2oat/
Ddex2oat.cc697 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &timeout_ts)); in Wait()
1665 int bytes_read = TEMP_FAILURE_RETRY(read(in->Fd(), buffer.get(), buffer_size)); in dex2oat()
/art/patchoat/
Dpatchoat.cc419 TEMP_FAILURE_RETRY(unlink(output_oat_filename.c_str())); in ReplaceOatFileWithSymlink()