/art/libelffile/stream/ |
D | buffered_output_stream.cc | 32 bool BufferedOutputStream::WriteFully(const void* buffer, size_t byte_count) { in WriteFully() argument 33 if (byte_count > kBufferSize) { in WriteFully() 37 return out_->WriteFully(buffer, byte_count); in WriteFully() 39 if (used_ + byte_count > kBufferSize) { in WriteFully() 45 memcpy(&buffer_[used_], src, byte_count); in WriteFully() 46 used_ += byte_count; in WriteFully()
|
D | vector_output_stream.h | 34 bool WriteFully(const void* buffer, size_t byte_count) override { in WriteFully() argument 37 vector_->insert(vector_->end(), &start[0], &start[byte_count]); in WriteFully() 38 offset_ += byte_count; in WriteFully() 40 off_t new_offset = offset_ + byte_count; in WriteFully() 42 memcpy(&(*vector_)[offset_], buffer, byte_count); in WriteFully()
|
D | error_delaying_output_stream.h | 39 bool WriteFully(const void* buffer, size_t byte_count) override { in WriteFully() argument 41 if (!output_->WriteFully(buffer, byte_count)) { in WriteFully() 42 PLOG(ERROR) << "Failed to write " << byte_count in WriteFully() 47 output_offset_ += byte_count; in WriteFully()
|
D | file_output_stream.cc | 28 bool FileOutputStream::WriteFully(const void* buffer, size_t byte_count) { in WriteFully() argument 29 return file_->WriteFully(buffer, byte_count); in WriteFully()
|
D | file_output_stream.h | 32 bool WriteFully(const void* buffer, size_t byte_count) override;
|
D | buffered_output_stream.h | 34 bool WriteFully(const void* buffer, size_t byte_count) override;
|
D | output_stream.h | 44 virtual bool WriteFully(const void* buffer, size_t byte_count) = 0;
|
/art/libartbase/base/ |
D | hex_dump.cc | 55 size_t byte_count = byte_count_; in Dump() local 57 while (byte_count > 0) { in Dump() 71 size_t count = std::min(byte_count, 16 - gap); in Dump() 104 byte_count -= count; in Dump() 106 if (byte_count > 0) { in Dump()
|
D | mem_map.h | 134 size_t byte_count, 142 size_t byte_count, in MapAnonymous() argument 148 byte_count, in MapAnonymous() 156 size_t byte_count, in MapAnonymous() argument 163 byte_count, in MapAnonymous() 175 static MemMap MapDummy(const char* name, uint8_t* addr, size_t byte_count); 181 static MemMap MapFile(size_t byte_count, in MapFile() argument 190 byte_count, in MapFile() 215 size_t byte_count, 294 MemMap TakeReservedMemory(size_t byte_count); [all …]
|
D | mem_map.cc | 185 bool MemMap::CheckMapRequest(uint8_t* expected_ptr, void* actual_ptr, size_t byte_count, in CheckMapRequest() argument 202 int result = TargetMUnmap(actual_ptr, byte_count); in CheckMapRequest() 204 PLOG(WARNING) << StringPrintf("munmap(%p, %zd) failed", actual_ptr, byte_count); in CheckMapRequest() 231 size_t byte_count, in CheckReservation() argument 247 if (byte_count > reservation.Size()) { in CheckReservation() 249 byte_count, in CheckReservation() 306 size_t byte_count, in MapAnonymous() argument 316 if (byte_count == 0) { in MapAnonymous() 320 size_t page_aligned_byte_count = RoundUp(byte_count, kPageSize); in MapAnonymous() 329 DCHECK(ContainedWithinExistingMap(addr, byte_count, error_msg)) << *error_msg; in MapAnonymous() [all …]
|
D | utils.cc | 188 std::string PrettySize(int64_t byte_count) { in PrettySize() argument 200 if (byte_count < 0) { in PrettySize() 202 byte_count = -byte_count; in PrettySize() 206 if (byte_count >= kUnitThresholds[i]) { in PrettySize() 211 negative_str, byte_count / kBytesPerUnit[i], kUnitStrings[i]); in PrettySize()
|
D | hex_dump.h | 32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) in HexDump() argument 33 : address_(address), byte_count_(byte_count), show_actual_addresses_(show_actual_addresses), in HexDump()
|
/art/runtime/gc/ |
D | heap-inl.h | 47 size_t byte_count, in AllocObjectWithAllocator() argument 51 CheckPreconditionsForAllocObject(klass, byte_count); in AllocObjectWithAllocator() 65 if (kCheckLargeObject && UNLIKELY(ShouldAllocLargeObject(klass, byte_count))) { in AllocObjectWithAllocator() 66 obj = AllocLargeObject<kInstrumented, PreFenceVisitor>(self, &klass, byte_count, in AllocObjectWithAllocator() 83 byte_count = RoundUp(byte_count, space::BumpPointerSpace::kAlignment); in AllocObjectWithAllocator() 86 if (IsTLABAllocator(allocator) && byte_count <= self->TlabSize()) { in AllocObjectWithAllocator() 87 obj = self->AllocTlab(byte_count); in AllocObjectWithAllocator() 93 bytes_allocated = byte_count; in AllocObjectWithAllocator() 99 (obj = rosalloc_space_->AllocThreadLocal(self, byte_count, &bytes_allocated)) != nullptr && in AllocObjectWithAllocator() 113 obj = TryToAllocate<kInstrumented, false>(self, allocator, byte_count, &bytes_allocated, in AllocObjectWithAllocator() [all …]
|
D | allocation_listener.h | 42 virtual void ObjectAllocated(Thread* self, ObjPtr<mirror::Object>* obj, size_t byte_count)
|
D | allocation_record.cc | 192 size_t byte_count) { in RecordAllocation() argument 251 Put(obj->Ptr(), AllocRecord(byte_count, (*obj)->GetClass(), std::move(trace))); in RecordAllocation()
|
/art/libartbase/base/unix_file/ |
D | fd_file.cc | 70 static ssize_t pread(int fd, void* data, size_t byte_count, off64_t offset) { in pread() argument 84 if (!ReadFile(handle, data, static_cast<DWORD>(byte_count), &bytes_read, &overlapped)) { in pread() 362 int64_t FdFile::Read(char* buf, int64_t byte_count, int64_t offset) const { in Read() argument 364 int rc = TEMP_FAILURE_RETRY(pread64(fd_, buf, byte_count, offset)); in Read() 366 int rc = TEMP_FAILURE_RETRY(pread(fd_, buf, byte_count, offset)); in Read() 388 int64_t FdFile::Write(const char* buf, int64_t byte_count, int64_t offset) { in Write() argument 391 int rc = TEMP_FAILURE_RETRY(pwrite64(fd_, buf, byte_count, offset)); in Write() 393 int rc = TEMP_FAILURE_RETRY(pwrite(fd_, buf, byte_count, offset)); in Write() 421 static bool ReadFullyGeneric(int fd, void* buffer, size_t byte_count, size_t offset) { in ReadFullyGeneric() argument 423 while (byte_count > 0) { in ReadFullyGeneric() [all …]
|
D | fd_file.h | 69 int64_t Read(char* buf, int64_t byte_count, int64_t offset) const override WARN_UNUSED; 72 int64_t Write(const char* buf, int64_t byte_count, int64_t offset) override WARN_UNUSED; 100 bool ReadFully(void* buffer, size_t byte_count) WARN_UNUSED; 101 bool PreadFully(void* buffer, size_t byte_count, size_t offset) WARN_UNUSED; 102 bool WriteFully(const void* buffer, size_t byte_count) WARN_UNUSED; 103 bool PwriteFully(const void* buffer, size_t byte_count, size_t offset) WARN_UNUSED; 154 bool WriteFullyGeneric(const void* buffer, size_t byte_count, size_t offset);
|
D | random_access_file.h | 45 virtual int64_t Read(char* buf, int64_t byte_count, int64_t offset) const = 0; 60 virtual int64_t Write(const char* buf, int64_t byte_count, int64_t offset) = 0;
|
/art/test/ti-agent/ |
D | ti_utf.h | 28 inline size_t CountModifiedUtf8Chars(const char* utf8, size_t byte_count) { in CountModifiedUtf8Chars() argument 29 DCHECK_LE(byte_count, strlen(utf8)); in CountModifiedUtf8Chars() 31 const char* end = utf8 + byte_count; in CountModifiedUtf8Chars() 108 size_t byte_count, in ConvertUtf16ToModifiedUtf8() argument 111 if (LIKELY(byte_count == char_count)) { in ConvertUtf16ToModifiedUtf8()
|
/art/runtime/native/ |
D | java_lang_StringFactory.cc | 34 jint high, jint offset, jint byte_count) { in StringFactory_newStringFromBytes() argument 43 if ((offset | byte_count) < 0 || byte_count > data_size - offset) { in StringFactory_newStringFromBytes() 46 offset, byte_count); in StringFactory_newStringFromBytes() 51 byte_count, in StringFactory_newStringFromBytes()
|
/art/libdexfile/dex/ |
D | utf.cc | 50 size_t CountModifiedUtf8Chars(const char* utf8, size_t byte_count) { in CountModifiedUtf8Chars() argument 51 DCHECK_LE(byte_count, strlen(utf8)); in CountModifiedUtf8Chars() 53 const char* end = utf8 + byte_count; in CountModifiedUtf8Chars() 124 void ConvertUtf16ToModifiedUtf8(char* utf8_out, size_t byte_count, in ConvertUtf16ToModifiedUtf8() argument 126 if (LIKELY(byte_count == char_count)) { in ConvertUtf16ToModifiedUtf8()
|
D | utf.h | 39 size_t CountModifiedUtf8Chars(const char* utf8, size_t byte_count); 73 void ConvertUtf16ToModifiedUtf8(char* utf8_out, size_t byte_count,
|
/art/runtime/entrypoints/quick/ |
D | quick_alloc_entrypoints.cc | 46 size_t byte_count = klass->GetObjectSize(); in artAllocObjectFromCode() local 47 byte_count = RoundUp(byte_count, gc::space::BumpPointerSpace::kAlignment); in artAllocObjectFromCode() 49 if (LIKELY(byte_count < self->TlabSize())) { in artAllocObjectFromCode() 50 obj = self->AllocTlab(byte_count); in artAllocObjectFromCode() 102 mirror::ByteArray* byte_array, int32_t high, int32_t offset, int32_t byte_count, \ 109 self, byte_count, handle_array, offset, high, allocator_type).Ptr(); \
|
/art/runtime/mirror/ |
D | string.cc | 187 size_t byte_count = strlen(utf); in AllocFromModifiedUtf8() local 188 size_t char_count = CountModifiedUtf8Chars(utf, byte_count); in AllocFromModifiedUtf8() 189 return AllocFromModifiedUtf8(self, char_count, utf, byte_count); in AllocFromModifiedUtf8() 270 size_t byte_count = GetUtfLength(); in ToModifiedUtf8() local 271 std::string result(byte_count, static_cast<char>(0)); in ToModifiedUtf8() 273 for (size_t i = 0; i < byte_count; ++i) { in ToModifiedUtf8() 278 ConvertUtf16ToModifiedUtf8(&result[0], byte_count, chars, GetLength()); in ToModifiedUtf8()
|
/art/runtime/jdwp/ |
D | jdwp_priv.h | 83 void ConsumeBytes(size_t byte_count);
|