/prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-x86/usr/include/linux/ |
notifier.h | 26 struct notifier_block *head; member in struct:atomic_notifier_head 31 struct notifier_block *head; member in struct:blocking_notifier_head 35 struct notifier_block *head; member in struct:raw_notifier_head 38 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL; } while (0) 39 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { init_rwsem(&(name)->rwsem); (name)->head = NULL; } while (0) 40 #define RAW_INIT_NOTIFIER_HEAD(name) do { (name)->head = NULL; } while (0) 42 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL } 43 #define BLOCKING_NOTIFIER_INIT(name) { .rwsem = __RWSEM_INITIALIZER((name).rwsem), .head = NULL } 44 #define RAW_NOTIFIER_INIT(name) { .head = NULL }
|
/prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/linux/ |
notifier.h | 26 struct notifier_block *head; member in struct:atomic_notifier_head 31 struct notifier_block *head; member in struct:blocking_notifier_head 35 struct notifier_block *head; member in struct:raw_notifier_head 38 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL; } while (0) 39 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { init_rwsem(&(name)->rwsem); (name)->head = NULL; } while (0) 40 #define RAW_INIT_NOTIFIER_HEAD(name) do { (name)->head = NULL; } while (0) 42 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL } 43 #define BLOCKING_NOTIFIER_INIT(name) { .rwsem = __RWSEM_INITIALIZER((name).rwsem), .head = NULL } 44 #define RAW_NOTIFIER_INIT(name) { .head = NULL }
|
/prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/linux/ |
notifier.h | 26 struct notifier_block *head; member in struct:atomic_notifier_head 31 struct notifier_block *head; member in struct:blocking_notifier_head 35 struct notifier_block *head; member in struct:raw_notifier_head 38 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL; } while (0) 39 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { init_rwsem(&(name)->rwsem); (name)->head = NULL; } while (0) 40 #define RAW_INIT_NOTIFIER_HEAD(name) do { (name)->head = NULL; } while (0) 42 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL } 43 #define BLOCKING_NOTIFIER_INIT(name) { .rwsem = __RWSEM_INITIALIZER((name).rwsem), .head = NULL } 44 #define RAW_NOTIFIER_INIT(name) { .head = NULL }
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/ |
notifier.h | 26 struct notifier_block *head; member in struct:atomic_notifier_head 31 struct notifier_block *head; member in struct:blocking_notifier_head 35 struct notifier_block *head; member in struct:raw_notifier_head 38 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL; } while (0) 39 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { init_rwsem(&(name)->rwsem); (name)->head = NULL; } while (0) 40 #define RAW_INIT_NOTIFIER_HEAD(name) do { (name)->head = NULL; } while (0) 42 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL } 43 #define BLOCKING_NOTIFIER_INIT(name) { .rwsem = __RWSEM_INITIALIZER((name).rwsem), .head = NULL } 44 #define RAW_NOTIFIER_INIT(name) { .head = NULL }
|
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/ |
notifier.h | 26 struct notifier_block *head; member in struct:atomic_notifier_head 31 struct notifier_block *head; member in struct:blocking_notifier_head 35 struct notifier_block *head; member in struct:raw_notifier_head 38 #define ATOMIC_INIT_NOTIFIER_HEAD(name) do { spin_lock_init(&(name)->lock); (name)->head = NULL; } while (0) 39 #define BLOCKING_INIT_NOTIFIER_HEAD(name) do { init_rwsem(&(name)->rwsem); (name)->head = NULL; } while (0) 40 #define RAW_INIT_NOTIFIER_HEAD(name) do { (name)->head = NULL; } while (0) 42 #define ATOMIC_NOTIFIER_INIT(name) { .lock = __SPIN_LOCK_UNLOCKED(name.lock), .head = NULL } 43 #define BLOCKING_NOTIFIER_INIT(name) { .rwsem = __RWSEM_INITIALIZER((name).rwsem), .head = NULL } 44 #define RAW_NOTIFIER_INIT(name) { .head = NULL }
|
/external/bluetooth/glib/tests/ |
queue-test.c | 26 if (!queue->head) 29 g_assert (!queue->head); 33 for (list = queue->head; list != NULL; list = list->next) 51 g_assert (last == queue->head); 54 for (list = queue->head; list != NULL; list = list->next) 70 for (list = queue->head; list != NULL; list = list->next) 155 enum { OFF_QUEUE, HEAD, TAIL, MIDDLE, LAST } where; 160 where = g_random_int_range (HEAD, LAST); 168 case HEAD: 221 GList *head; member in struct:QueueInfo [all...] |
/external/iptables/libiptc/ |
linux_list.h | 85 * @head: list head to add it after 87 * Insert a new entry after the specified head. 90 static inline void list_add(struct list_head *new, struct list_head *head) 92 __list_add(new, head, head->next); 98 * @head: list head to add it before 100 * Insert a new entry before the specified head. 103 static inline void list_add_tail(struct list_head *new, struct list_head *head) [all...] |
/external/qemu/ |
sys-tree.h | 88 #define SPLAY_ROOT(head) (head)->sph_root 89 #define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL) 92 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ 93 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \ 94 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ 95 (head)->sph_root = tmp; \ 98 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ 99 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); [all...] |
/cts/tests/tests/webkitsecurity/assets/ |
after-doesnt-crash.html | 2 <head> 8 </head>
|
avl-crash.html | 3 <head> 5 </head>
|
before-doesnt-crash.html | 2 <head> 8 </head>
|
block-style-progress-crash.html | 3 <head>
17 </head>
|
call-apply-crash.html | 3 <head> 5 </head>
|
canvas-font-ex-units-crash.html | 3 <head> 5 </head>
|
canvas-getImageData-large-crash.html | 2 <head> 10 </head>
|
copy-crash-with-extraneous-attribute.html | 2 <head> 8 </head>
|
crash-1.html | 3 <head> 5 </head>
|
crash-2.html | 3 <head> 5 </head>
|
crash-on-1px-border.html | 0 <head> 12 </head>
|
crash-on-custom-cursor-when-loading.html | 2 <head> 11 </head>
|
crash-on-degenerate-gradient.html | 0 <head> 6 </head>
|
create-document-crash-on-attach-event.html | 3 <head> 5 </head>
|
cross-origin-stylesheet-crash.html | 2 <head> 8 </head>
|
css3-radial-gradient-crash.html | 0 <head> 6 </head>
|
dirty-inline-textbox-crash.html | 2 <head>
10 </head>
|