/ndk/build/platforms/android-8/arch-arm/usr/include/linux/ |
plist.h | 31 #define PLIST_HEAD_INIT(head, _lock) { .prio_list = LIST_HEAD_INIT((head).prio_list), .node_list = LIST_HEAD_INIT((head).node_list), PLIST_HEAD_LOCK_INIT(&(_lock)) } 35 #define plist_for_each(pos, head) list_for_each_entry(pos, &(head)->node_list, plist.node_list) 37 #define plist_for_each_safe(pos, n, head) list_for_each_entry_safe(pos, n, &(head)->node_list, plist.node_list) 39 #define plist_for_each_entry(pos, head, mem) list_for_each_entry(pos, &(head)->node_list, mem.plist.node_list) 41 #define plist_for_each_entry_safe(pos, n, head, m) list_for_each_entry_safe(pos, n, &(head)->node_list, m.plist.node_list [all...] |
/ndk/build/platforms/android-8/arch-x86/usr/include/linux/ |
plist.h | 31 #define PLIST_HEAD_INIT(head, _lock) { .prio_list = LIST_HEAD_INIT((head).prio_list), .node_list = LIST_HEAD_INIT((head).node_list), PLIST_HEAD_LOCK_INIT(&(_lock)) } 35 #define plist_for_each(pos, head) list_for_each_entry(pos, &(head)->node_list, plist.node_list) 37 #define plist_for_each_safe(pos, n, head) list_for_each_entry_safe(pos, n, &(head)->node_list, plist.node_list) 39 #define plist_for_each_entry(pos, head, mem) list_for_each_entry(pos, &(head)->node_list, mem.plist.node_list) 41 #define plist_for_each_entry_safe(pos, n, head, m) list_for_each_entry_safe(pos, n, &(head)->node_list, m.plist.node_list [all...] |
/development/docs/ |
SDK_RELEASE_NOTES | 2 <head> 4 </head>
|
/external/webkit/LayoutTests/storage/domstorage/events/resources/ |
setattribute-event-handler.html | 1 <html><head></head><body>
|
/external/webkit/LayoutTests/storage/ |
sql-data-types.html | 2 <head> 4 </head>
|
/external/webkit/WebCore/manual-tests/inspector-wrappers/ |
console-eval.html | 2 <head> 7 </head>
|
console-str-getter.html | 2 <head> 8 </head>
|
inspector-evaluate.html | 2 <head> 7 </head>
|
/external/webkit/WebCore/manual-tests/qt/ |
plugin-sibling-frame.html | 2 <head><title>Move the frame to hide the plugin fully</title></head>
|
/external/webkit/WebCore/manual-tests/redirectHistory/ |
redir-2.html | 2 <head> 5 </head>
|
/external/webkit/WebCore/manual-tests/resources/ |
popup200x100.html | 2 <head> 4 </head>
|
popup200x200.html | 2 <head> 4 </head>
|
/frameworks/base/docs/ |
docs-documentation-redirect.html | 2 <head> 4 </head>
|
docs-redirect-index.html | 2 <head>
4 </head>
|
docs-redirect.html | 2 <head>
4 </head>
|
docs-samples-redirect.html | 2 <head>
4 </head>
|
/frameworks/base/docs/html/guide/basics/ |
index.html | 2 <head> 4 </head>
|
/frameworks/base/docs/html/guide/developing/ |
index.html | 2 <head> 4 </head>
|
/frameworks/base/docs/html/guide/practices/ |
index.html | 2 <head> 4 </head>
|
/frameworks/base/docs/html/guide/topics/ |
index.html | 2 <head> 4 </head>
|
/frameworks/base/docs/html/guide/tutorials/ |
index.html | 2 <head> 4 </head>
|
/frameworks/base/docs/html/mwc2010/ |
index.html | 2 <head> 5 </head>
|
/frameworks/base/docs/html/resources/tutorials/ |
index.html | 2 <head> 4 </head>
|
/external/webkit/WebKitTools/GtkLauncher/ |
text.html | 2 <head>
|
/bionic/libc/include/sys/ |
queue.h | 43 * head of the list. Elements being removed from the head of the list 53 * or after an existing element or at the head of the list. A list 56 * A simple queue is headed by a pair of pointers, one the head of the 59 * head of the list. New elements can be added to the list after 60 * an existing element, at the head of the list, or at the end of the 63 * A tail queue is headed by a pair of pointers, one to the head of the 67 * after an existing element, at the head of the list, or at the end of 70 * A circle queue is headed by a pair of pointers, one to the head of the 74 * an existing element, at the head of the list, or at the end of the list [all...] |