Searched defs:list (Results 1 - 10 of 10) sorted by relevance

/bionic/libc/bionic/
H A Dflistxattr.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
38 ssize_t flistxattr(int fd, char *list, size_t size) { argument
40 ssize_t result = ___flistxattr(fd, list, size);
58 return listxattr(buf, list, size);
H A Dnet_if.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
80 explicit if_list(if_list** list) { argument
81 // push_front onto `list`.
82 next = *list;
83 *list = this;
86 static void Free(if_list* list, bool names_too) { argument
87 while (list) {
88 if_list* it = list;
89 list
97 if_list** list = reinterpret_cast<if_list**>(context); local
118 if_list* list = nullptr; local
[all...]
H A Difaddrs.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
62 explicit ifaddrs_storage(ifaddrs** list) { argument
65 // push_front onto `list`.
66 ifa.ifa_next = *list;
67 *list = reinterpret_cast<ifaddrs*>(this);
237 // We construct the result directly into `out`, so terminate the list.
254 void freeifaddrs(ifaddrs* list) { argument
255 while (list != nullptr) {
256 ifaddrs* current = list;
[all...]
/bionic/tests/
H A Dnet_if_test.cpp40 struct if_nameindex* list = if_nameindex(); local
41 ASSERT_TRUE(list != nullptr);
43 ASSERT_TRUE(list->if_index != 0);
48 for (struct if_nameindex* it = list; it->if_index != 0; ++it) {
56 if_freenameindex(list);
/bionic/linker/tests/
H A Dlinked_list_test.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
61 std::string test_list_to_string(test_list_t& list) { argument
63 list.for_each([&] (const char* c) {
74 test_list_t list; local
75 ASSERT_EQ("", test_list_to_string(list));
78 list.push_front("a");
81 ASSERT_EQ("a", test_list_to_string(list));
82 list.push_front("b");
83 ASSERT_EQ("ba", test_list_to_string(list));
112 test_list_t list; local
132 test_list_t list; local
149 test_list_t list; local
166 test_list_t list; local
211 test_list_t list; local
[all...]
/bionic/libc/malloc_debug/
H A DTrackData.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
50 void TrackData::GetList(std::vector<const Header*>* list) { argument
52 list->push_back(header);
56 std::sort(list->begin(), list->end(), [](const Header* a, const Header* b) {
88 std::vector<const Header*> list; local
89 GetList(&list);
92 for (const auto& header : list) {
94 header->real_size(), debug_->GetPointer(header), ++track_count, list
122 std::vector<const Header*> list; local
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dfutex.h64 struct robust_list list; member in struct:robust_list_head
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dfutex.h64 struct robust_list list; member in struct:robust_list_head
/bionic/libc/kernel/uapi/drm/
H A Ddrm.h249 struct drm_buf_desc __user * list; member in struct:drm_buf_info
254 int __user * list; member in struct:drm_buf_free
272 struct drm_buf_pub __user * list; member in struct:drm_buf_map
/bionic/libc/versioner-dependencies/common/kernel_uapi/drm/
H A Ddrm.h249 struct drm_buf_desc __user * list; member in struct:drm_buf_info
254 int __user * list; member in struct:drm_buf_free
272 struct drm_buf_pub __user * list; member in struct:drm_buf_map

Completed in 1253 milliseconds