/art/runtime/base/unix_file/ |
D | fd_file.cc | 178 int rc = TEMP_FAILURE_RETRY(fdatasync(fd_)); in Flush() local 180 int rc = TEMP_FAILURE_RETRY(fsync(fd_)); in Flush() local 194 int rc = TEMP_FAILURE_RETRY(pread64(fd_, buf, byte_count, offset)); in Read() local 204 int rc = TEMP_FAILURE_RETRY(ftruncate64(fd_, new_length)); in SetLength() local 206 int rc = TEMP_FAILURE_RETRY(ftruncate(fd_, new_length)); in SetLength() local 214 int rc = TEMP_FAILURE_RETRY(fstat(fd_, &s)); in GetLength() local 221 int rc = TEMP_FAILURE_RETRY(pwrite64(fd_, buf, byte_count, offset)); in Write() local 223 int rc = TEMP_FAILURE_RETRY(pwrite(fd_, buf, byte_count, offset)); in Write() local 439 off_t rc = TEMP_FAILURE_RETRY(lseek(fd_, 0, SEEK_SET)); in ResetOffset() local
|
/art/runtime/ |
D | signal_set.h | 49 int rc = TEMP_FAILURE_RETRY(sigwait(&set_, &signal_number)); in Wait() local
|
D | fault_handler.cc | 64 ssize_t rc = SafeCopy(&cls, method_declaring_class, sizeof(cls)); in SafeGetDeclaringClass() local 84 ssize_t rc = SafeCopy(&cls, obj_cls, sizeof(cls)); in SafeGetClass() local
|
D | zip_archive.cc | 198 int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC); in SetCloseOnExec() local
|
D | runtime_common.cc | 469 int rc = 0; in InitPlatformSignalHandlersCommon() local
|
D | utils.cc | 933 int rc = stat(filename.c_str(), &stat_buf); in GetFileSizeBytes() local
|
/art/runtime/base/ |
D | safe_copy.cc | 70 ssize_t rc = process_vm_readv(getpid(), &dst_iov, 1, src_iovs, iovecs_used, 0); in SafeCopy() local
|
D | mutex.cc | 399 int rc = pthread_mutex_destroy(&mutex_); in ~Mutex() local 1009 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &guard_.mutex_, &ts)); in TimedWait() local
|
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 62 JdwpError rc = Dbg::GetObjectTag(object_id, &tag); in WriteTaggedObject() local 74 JdwpError rc = WriteTaggedObject(reply, objects[i]); in WriteTaggedObjectList() local 408 JdwpError rc = Dbg::GetInstanceCounts(class_ids, &counts); in VM_InstanceCounts() local 595 JdwpError rc = Dbg::GetInstances(class_id, max_count, &instances); in RT_Instances() local 756 JdwpError rc = Dbg::GetBytecodes(class_id, method_id, &bytecodes); in M_Bytecodes() local 879 JdwpError rc = Dbg::IsCollected(object_id, &is_collected); in OR_IsCollected() local 893 JdwpError rc = Dbg::GetReferringObjects(object_id, max_count, &referring_objects); in OR_ReferringObjects() local 1049 JdwpError rc = Dbg::GetThreadFrameCount(thread_id, &frame_count); in TR_FrameCount() local 1064 JdwpError rc = Dbg::GetOwnedMonitors(thread_id, &monitors, &stack_depths); in TR_OwnedMonitors() local 1097 JdwpError rc = Dbg::GetContendedMonitor(thread_id, &contended_monitor); in TR_CurrentContendedMonitor() local [all …]
|
D | jdwp_adb.cc | 193 int rc = TEMP_FAILURE_RETRY(recvmsg(ControlSock(), &msg, 0)); in ReceiveClientFd() local
|
/art/dalvikvm/ |
D | dalvikvm.cc | 190 int rc = InvokeMain(env, &argv[arg_idx]); in dalvikvm() local
|
/art/runtime/gc/allocator/ |
D | dlmalloc.cc | 72 int rc = madvise(start, length, MADV_DONTNEED); in DlmallocMadviseCallback() local
|
/art/runtime/arch/x86/ |
D | thread_x86.cc | 114 int rc = syscall(__NR_set_thread_area, &gdt_entry); in InitCpu() local
|
/art/runtime/native/ |
D | dalvik_system_ZygoteHooks.cc | 285 int rc = pthread_getname_np(pthread_self(), name_buf, kMaxProcessNameLength); in ZygoteHooks_nativePostForkChild() local
|
/art/sigchainlib/ |
D | sigchain.cc | 129 int rc = pthread_key_create(&key, nullptr); in GetHandlingSignalKey() local
|
/art/dex2oat/ |
D | dex2oat.cc | 550 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &timeout_ts)); in Wait() local 1409 int rc = TEMP_FAILURE_RETRY(fstat(input_vdex_fd_, &s)); in OpenFile() local
|