Searched refs:list (Results 1 - 21 of 21) sorted by relevance

/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/upstream-netbsd/lib/libc/include/isc/
H A Dlist.h1 /* $NetBSD: list.h,v 1.5 2009/04/12 17:07:16 christos Exp $ */
25 #define INIT_LIST(list) \
26 do { (list).head = NULL; (list).tail = NULL; } while (/*CONSTCOND*/0)
39 #define HEAD(list) ((list).head)
40 #define TAIL(list) ((list).tail)
41 #define EMPTY(list) ((list)
[all...]
/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 Dlibc_init_static.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
50 static void call_array(void(**list)()) {
51 // First element is -1, list is null-terminated
52 while (*++list) {
53 (*list)();
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/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/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/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...]
H A DPointerData.h9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
132 static void GetList(std::vector<ListInfoType>* list, bool only_with_backtrace);
133 static void GetUniqueList(std::vector<ListInfoType>* list, bool only_with_backtrace);
/bionic/tools/bionicbb/
H A Dgmail.py62 response = service.users().messages().list(
68 response = service.users().messages().list(
H A Dtasks.py94 labels = gmail_service.users().labels().list(userId='me').execute()
/bionic/libc/kernel/tools/
H A Dkernel.py4 # list here the macros that you know are always defined/undefined when including
29 # for path in <your list of files>:
133 list = cpp.BlockParser().parseFile(path)
134 if list:
140 list.optimizeMacros(macros)
141 list.optimizeIf01()
142 includes = list.findIncludes()
185 # for path in <your list of user sources>:
193 # not that the result of scanForAllArchs() is a list of relative
200 'headers' is a list o
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dfutex.h55 struct robust_list list; member in struct:robust_list_head
/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
/bionic/libc/upstream-netbsd/lib/libc/isc/
H A Deventlib_p.h45 #include <isc/list.h>
/bionic/libc/dns/resolv/
H A Dres_cache.c9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
1047 * similarly, mru_next and mru_prev are part of the global MRU list
1177 entry_mru_add( Entry* e, Entry* list )
1179 Entry* first = list->mru_next;
1182 e->mru_prev = list;
1184 list->mru_next = e;
1393 // remove item from list and destroy
1748 /* bump up this entry to the top of the MRU list */
1848 // Head of the list o
[all...]

Completed in 1884 milliseconds