Home
last modified time | relevance | path

Searched refs:byte_count (Results 1 – 25 of 38) sorted by relevance

12

/art/libelffile/stream/
Dbuffered_output_stream.cc32 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()
Dvector_output_stream.h34 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()
Derror_delaying_output_stream.h39 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()
Dfile_output_stream.cc28 bool FileOutputStream::WriteFully(const void* buffer, size_t byte_count) { in WriteFully() argument
29 return file_->WriteFully(buffer, byte_count); in WriteFully()
Dfile_output_stream.h32 bool WriteFully(const void* buffer, size_t byte_count) override;
Dbuffered_output_stream.h34 bool WriteFully(const void* buffer, size_t byte_count) override;
/art/libprofile/profile/
Dprofile_helpers.h29 inline bool WriteBuffer(int fd, const uint8_t* buffer, size_t byte_count) { in WriteBuffer() argument
30 while (byte_count > 0) { in WriteBuffer()
31 int bytes_written = TEMP_FAILURE_RETRY(write(fd, buffer, byte_count)); in WriteBuffer()
35 byte_count -= bytes_written; // Reduce the number of remaining bytes. in WriteBuffer()
/art/libartbase/base/
Dhex_dump.cc55 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()
Dmem_map.h133 size_t byte_count,
141 size_t byte_count, in MapAnonymous() argument
147 byte_count, in MapAnonymous()
155 size_t byte_count, in MapAnonymous() argument
162 byte_count, in MapAnonymous()
174 static MemMap MapPlaceholder(const char* name, uint8_t* addr, size_t byte_count);
180 static MemMap MapFile(size_t byte_count, in MapFile() argument
189 byte_count, in MapFile()
214 size_t byte_count,
294 MemMap TakeReservedMemory(size_t byte_count);
[all …]
Dmem_map.cc185 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 …]
Dhex_dump.h32 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()
Dutils.cc212 std::string PrettySize(int64_t byte_count) { in PrettySize() argument
224 if (byte_count < 0) { in PrettySize()
226 byte_count = -byte_count; in PrettySize()
230 if (byte_count >= kUnitThresholds[i]) { in PrettySize()
235 negative_str, byte_count / kBytesPerUnit[i], kUnitStrings[i]); in PrettySize()
/art/libartbase/base/unix_file/
Dfd_file.h69 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);
Dfd_file.cc70 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 …]
Drandom_access_file.h45 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/runtime/gc/
Dheap-inl.h47 size_t byte_count, in AllocObjectWithAllocator() argument
57 CheckPreconditionsForAllocObject(klass, byte_count); in AllocObjectWithAllocator()
75 l->PreObjectAllocated(self, h_klass, &byte_count); in AllocObjectWithAllocator()
91 if (kCheckLargeObject && UNLIKELY(ShouldAllocLargeObject(klass, byte_count))) { in AllocObjectWithAllocator()
94 obj = AllocLargeObject<kInstrumented, PreFenceVisitor>(self, &klass, byte_count, in AllocObjectWithAllocator()
108 byte_count = RoundUp(byte_count, space::BumpPointerSpace::kAlignment); in AllocObjectWithAllocator()
111 if (IsTLABAllocator(allocator) && byte_count <= self->TlabSize()) { in AllocObjectWithAllocator()
112 obj = self->AllocTlab(byte_count); in AllocObjectWithAllocator()
118 bytes_allocated = byte_count; in AllocObjectWithAllocator()
124 (obj = rosalloc_space_->AllocThreadLocal(self, byte_count, &bytes_allocated)) != nullptr && in AllocObjectWithAllocator()
[all …]
Dallocation_listener.h59 size_t* byte_count ATTRIBUTE_UNUSED) in PreObjectAllocated()
64 virtual void ObjectAllocated(Thread* self, ObjPtr<mirror::Object>* obj, size_t byte_count)
/art/test/ti-agent/
Dti_utf.h28 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/
Djava_lang_StringFactory.cc34 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/
Dutf.cc50 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()
Dutf.h39 size_t CountModifiedUtf8Chars(const char* utf8, size_t byte_count);
73 void ConvertUtf16ToModifiedUtf8(char* utf8_out, size_t byte_count,
/art/openjdkjvmti/
Dalloc_manager.cc101 size_t* byte_count) { in PreObjectAllocated() argument
104 oss << "allocating " << *byte_count << " bytes of type " << type->PrettyClass(); in PreObjectAllocated()
108 *byte_count = in PreObjectAllocated()
110 *byte_count); in PreObjectAllocated()
Dalloc_manager.h66 size_t* byte_count) override REQUIRES_SHARED(art::Locks::mutator_lock_);
79 size_t byte_count) REQUIRES_SHARED(art::Locks::mutator_lock_) = 0;
/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc47 size_t byte_count = klass->GetObjectSizeAllocFastPath(); in artAllocObjectFromCode() local
48 if (LIKELY(byte_count < self->TlabSize())) { in artAllocObjectFromCode()
50 DCHECK_ALIGNED(byte_count, gc::space::BumpPointerSpace::kAlignment); in artAllocObjectFromCode()
51 mirror::Object* obj = self->AllocTlab(byte_count); in artAllocObjectFromCode()
101 mirror::ByteArray* byte_array, int32_t high, int32_t offset, int32_t byte_count, \
108 self, byte_count, handle_array, offset, high, allocator_type).Ptr(); \
/art/runtime/mirror/
Dstring.cc187 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()

12