Searched defs:list (Results 1 - 13 of 13) 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
40 ssize_t flistxattr(int fd, char *list, size_t size) { argument
42 ssize_t result = ___flistxattr(fd, list, size);
57 return listxattr(FdPath(fd).c_str(), 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/kernel/uapi/linux/
H A Dfutex.h55 struct robust_list list; member in struct:robust_list_head
/bionic/libc/malloc_debug/
H A DPointerData.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
349 void PointerData::GetList(std::vector<ListInfoType>* list, bool only_with_backtrace)
371 list->emplace_back(ListInfoType{entry.first, 1, entry.second.RealSize(),
376 std::sort(list->begin(), list->end(), [](const ListInfoType& a, const ListInfoType& b) {
411 void PointerData::GetUniqueList(std::vector<ListInfoType>* list, bool only_with_backtrace)
413 GetList(list, only_with_backtrace);
416 for (auto iter = list->begin(); iter != list
433 std::vector<ListInfoType> list; local
460 std::vector<ListInfoType> list; local
498 std::vector<ListInfoType> list; local
[all...]
/bionic/libc/system_properties/
H A Dcontexts_split.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
69 static inline void ListAdd(List** list, Args... args) { argument
70 *list = new List(*list, args...);
73 static void ListAddAfterLen(PrefixNode** list, const char* prefix, ContextListNode* context) { argument
76 auto next_list = list;
89 static void ListForEach(List* list, Func func) { argument
90 while (list) {
91 func(list);
97 ListFind(List* list, Func func) argument
108 ListFree(List** list) argument
[all...]
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dfutex.h55 struct robust_list list; member in struct:robust_list_head
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Dfutex.h55 struct robust_list list; member in struct:robust_list_head
/bionic/libc/kernel/uapi/drm/
H A Ddrm.h203 struct drm_buf_desc __user * list; member in struct:drm_buf_info
207 int __user * list; member in struct:drm_buf_free
222 struct drm_buf_pub __user * list; member in struct:drm_buf_map
/bionic/libc/versioner-dependencies/common/kernel_uapi/drm/
H A Ddrm.h203 struct drm_buf_desc __user * list; member in struct:drm_buf_info
207 int __user * list; member in struct:drm_buf_free
222 struct drm_buf_pub __user * list; member in struct:drm_buf_map
/bionic/tools/versioner/dependencies/common/kernel_uapi/drm/
H A Ddrm.h203 struct drm_buf_desc __user * list; member in struct:drm_buf_info
207 int __user * list; member in struct:drm_buf_free
222 struct drm_buf_pub __user * list; member in struct:drm_buf_map

Completed in 218 milliseconds