Home
last modified time | relevance | path

Searched refs:size_ (Results 1 – 8 of 8) sorted by relevance

/bionic/libc/bionic/
Dscandir.cpp32 ScandirResult() : names_(nullptr), size_(0), capacity_(0) { in ScandirResult()
41 return size_; in size()
47 size_ = capacity_ = 0; in release()
52 if (size_ >= capacity_) { in Add()
67 names_[size_++] = copy; in Add()
73 if (size_ > 0 && comparator != nullptr) { in Sort()
74 qsort(names_, size_, sizeof(dirent*), in Sort()
81 size_t size_; member in ScandirResult
Datexit.cpp58 size_t size() const { return size_; } in size()
68 size_t size_; member in __anon0ca2bf2e0111::AtexitArray
81 return page_end_of_index(size_ - extracted_count_) < page_end_of_index(size_); in needs_recompaction()
92 if (size_ >= capacity_ && !expand_capacity()) return false; in append_entry()
94 size_t idx = size_++; in append_entry()
119 set_writable(true, 0, size_); in recompact()
123 while (src < size_ && array_[src].fn != nullptr) { in recompact()
129 for (; src < size_; ++src) { in recompact()
138 size_t old_bytes = page_end_of_index(size_); in recompact()
144 set_writable(false, 0, size_); in recompact()
[all …]
Dbionic_netlink.cpp44 size_ = 8192; in NetlinkConnection()
45 data_ = new char[size_]; in NetlinkConnection()
79 while ((bytes_read = TEMP_FAILURE_RETRY(recv(fd_.get(), data_, size_, 0))) > 0) { in ReadResponses()
Dbionic_netlink.h51 size_t size_; variable
/bionic/linker/
Dlinker_mapped_file_fragment.h43 size_t size() const { return size_; } in size()
48 size_t size_; variable
Dlinker_mapped_file_fragment.cpp39 data_(nullptr), size_ (0) in MappedFileFragment()
72 size_ = size; in Map()
/bionic/libc/malloc_debug/
DRecordData.cpp57 MallocEntry::MallocEntry(void* pointer, size_t size) : AllocEntry(pointer), size_(size) {} in MallocEntry()
60 return android::base::StringPrintf("%d: malloc %p %zu\n", tid_, pointer_, size_); in GetString()
73 return android::base::StringPrintf("%d: calloc %p %zu %zu\n", tid_, pointer_, nmemb_, size_); in GetString()
80 …return android::base::StringPrintf("%d: realloc %p %p %zu\n", tid_, pointer_, old_pointer_, size_); in GetString()
88 …return android::base::StringPrintf("%d: memalign %p %zu %zu\n", tid_, pointer_, alignment_, size_); in GetString()
DRecordData.h86 size_t size_;