/external/chromium/third_party/libevent/compat/sys/ |
D | queue.h | 93 #define SLIST_HEAD_INITIALIZER(head) \ argument 106 #define SLIST_FIRST(head) ((head)->slh_first) argument 107 #define SLIST_END(head) NULL argument 108 #define SLIST_EMPTY(head) (SLIST_FIRST(head) == SLIST_END(head)) argument 111 #define SLIST_FOREACH(var, head, field) \ argument 119 #define SLIST_INIT(head) { \ argument 128 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument 133 #define SLIST_REMOVE_HEAD(head, field) do { \ argument 145 #define LIST_HEAD_INITIALIZER(head) \ argument 157 #define LIST_FIRST(head) ((head)->lh_first) argument [all …]
|
/external/qemu/ |
D | qemu-queue.h | 87 #define QLIST_HEAD_INITIALIZER(head) \ argument 99 #define QLIST_INIT(head) do { \ argument 118 #define QLIST_INSERT_HEAD(head, elm, field) do { \ argument 132 #define QLIST_FOREACH(var, head, field) \ argument 137 #define QLIST_FOREACH_SAFE(var, head, field, next_var) \ argument 145 #define QLIST_EMPTY(head) ((head)->lh_first == NULL) argument 146 #define QLIST_FIRST(head) ((head)->lh_first) argument 159 #define QSIMPLEQ_HEAD_INITIALIZER(head) \ argument 170 #define QSIMPLEQ_INIT(head) do { \ argument 175 #define QSIMPLEQ_INSERT_HEAD(head, elm, field) do { \ argument [all …]
|
D | sys-tree.h | 88 #define SPLAY_ROOT(head) (head)->sph_root argument 89 #define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL) argument 92 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ argument 98 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ argument 104 #define SPLAY_LINKLEFT(head, tmp, field) do { \ argument 110 #define SPLAY_LINKRIGHT(head, tmp, field) do { \ argument 116 #define SPLAY_ASSEMBLE(head, node, left, right, field) do { \ argument 296 #define SPLAY_FOREACH(x, name, head) \ argument 328 #define RB_ROOT(head) (head)->rbh_root argument 329 #define RB_EMPTY(head) (RB_ROOT(head) == NULL) argument [all …]
|
/external/ipsec-tools/src/include-glibc/sys/ |
D | queue.h | 114 #define SLIST_HEAD_INITIALIZER(head) \ argument 125 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument 127 #define SLIST_FIRST(head) ((head)->slh_first) argument 129 #define SLIST_FOREACH(var, head, field) \ argument 134 #define SLIST_INIT(head) do { \ argument 143 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument 150 #define SLIST_REMOVE(head, elm, type, field) do { \ argument 163 #define SLIST_REMOVE_HEAD(head, field) do { \ argument 176 #define STAILQ_HEAD_INITIALIZER(head) \ argument 187 #define STAILQ_EMPTY(head) ((head)->stqh_first == NULL) argument [all …]
|
/external/bluetooth/hcidump/parser/ |
D | hidp.c | 39 static char *type2str(uint8_t head) in type2str() 67 static char *result2str(uint8_t head) in result2str() 89 static char *operation2str(uint8_t head) in operation2str() 109 static char *report2str(uint8_t head) in report2str() 125 static char *protocol2str(uint8_t head) in protocol2str()
|
D | rfcomm.c | 53 static void print_rfcomm_hdr(long_frame_head* head, uint8_t *ptr, int len) in print_rfcomm_hdr() 74 long_frame_head *head, mcc_long_frame_head *mcc_head) in mcc_test() 81 long_frame_head *head, mcc_long_frame_head *mcc_head) in mcc_fcon() 89 long_frame_head *head, mcc_long_frame_head *mcc_head) in mcc_fcoff() 97 long_frame_head *head, mcc_long_frame_head *mcc_head) in mcc_msc() 120 long_frame_head *head, mcc_long_frame_head *mcc_head) in mcc_rpn() 151 long_frame_head *head, mcc_long_frame_head *mcc_head) in mcc_rls() 162 long_frame_head *head, mcc_long_frame_head *mcc_head) in mcc_pn() 179 long_frame_head *head, mcc_long_frame_head *mcc_head) in mcc_nsc() 193 static inline void mcc_frame(int level, struct frame *frm, long_frame_head *head) in mcc_frame() [all …]
|
/external/kernel-headers/original/linux/ |
D | list.h | 60 static inline void list_add(struct list_head *new, struct list_head *head) in list_add() 73 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail() 110 static inline void list_add_rcu(struct list_head *new, struct list_head *head) in list_add_rcu() 132 struct list_head *head) in list_add_tail_rcu() 249 static inline void list_move(struct list_head *list, struct list_head *head) in list_move() 261 struct list_head *head) in list_move_tail() 273 const struct list_head *head) in list_is_last() 282 static inline int list_empty(const struct list_head *head) in list_empty() 300 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful() 307 struct list_head *head) in __list_splice() [all …]
|
D | plist.h | 104 #define PLIST_HEAD_INIT(head, _lock) \ argument 129 plist_head_init(struct plist_head *head, spinlock_t *lock) in plist_head_init() 159 #define plist_for_each(pos, head) \ argument 170 #define plist_for_each_safe(pos, n, head) \ argument 180 #define plist_for_each_entry(pos, head, mem) \ argument 192 #define plist_for_each_entry_safe(pos, n, head, m) \ argument 200 static inline int plist_head_empty(const struct plist_head *head) in plist_head_empty() 225 # define plist_first_entry(head, type, member) \ argument 231 # define plist_first_entry(head, type, member) \ argument 242 static inline struct plist_node* plist_first(const struct plist_head *head) in plist_first()
|
D | circ_buf.h | 6 int head; member 11 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1)) argument 16 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size)) argument 21 #define CIRC_CNT_TO_END(head,tail,size) \ argument 27 #define CIRC_SPACE_TO_END(head,tail,size) \ argument
|
/external/iptables/libiptc/ |
D | linux_list.h | 90 static inline void list_add(struct list_head *new, struct list_head *head) in list_add() 103 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail() 140 static inline void list_add_rcu(struct list_head *new, struct list_head *head) in list_add_rcu() 162 struct list_head *head) in list_add_tail_rcu() 238 static inline void list_move(struct list_head *list, struct list_head *head) in list_move() 250 struct list_head *head) in list_move_tail() 260 static inline int list_empty(const struct list_head *head) in list_empty() 277 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful() 284 struct list_head *head) in __list_splice() 302 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice() [all …]
|
/external/libnl-headers/netlink/ |
D | list.h | 38 struct nl_list_head *head) in nl_list_add_tail() 44 struct nl_list_head *head) in nl_list_add_head() 55 static inline int nl_list_empty(struct nl_list_head *head) in nl_list_empty() 67 #define nl_list_at_tail(pos, head, member) \ argument 70 #define nl_list_at_head(pos, head, member) \ argument 76 #define nl_list_first_entry(head, type, member) \ argument 79 #define nl_list_for_each_entry(pos, head, member) \ argument 84 #define nl_list_for_each_entry_safe(pos, n, head, member) \ argument 90 #define nl_init_list_head(head) \ argument
|
/external/ipsec-tools/src/racoon/ |
D | genlist.c | 50 genlist_insert (struct genlist *head, void *data) in genlist_insert() 59 genlist_append (struct genlist *head, void *data) in genlist_append() 68 genlist_foreach (struct genlist *head, genlist_func_t func, void *arg) in genlist_foreach() 82 genlist_next (struct genlist *head, struct genlist_entry **buf) in genlist_next() 96 genlist_free (struct genlist *head, genlist_freedata_t func) in genlist_free()
|
D | misc.h | 56 #define RACOON_TAILQ_FOREACH_REVERSE(var, head, headname ,field) \ argument 59 #define RACOON_TAILQ_FOREACH_REVERSE(var, head, headname ,field) \ argument
|
/external/blktrace/btt/ |
D | list.h | 73 static inline void list_add(struct list_head *new, struct list_head *head) in list_add() 86 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail() 127 #define __list_for_each(pos, head) \ argument 136 #define list_for_each_safe(pos, n, head) \ argument 165 static inline int list_empty(const struct list_head *head) in list_empty() 174 static inline struct list_head *list_first(const struct list_head *head) in list_first() 185 struct list_head *head) in list_move_tail() 192 struct list_head *head) in __list_splice() 210 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
|
/external/e2fsprogs/lib/blkid/ |
D | list.h | 61 _INLINE_ void list_add(struct list_head *add, struct list_head *head) in list_add() 74 _INLINE_ void list_add_tail(struct list_head *add, struct list_head *head) in list_add_tail() 119 _INLINE_ int list_empty(struct list_head *head) in list_empty() 129 _INLINE_ void list_splice(struct list_head *list, struct list_head *head) in list_splice() 159 #define list_for_each(pos, head) \ argument 169 #define list_for_each_safe(pos, pnext, head) \ argument
|
/external/oprofile/libutil/ |
D | op_list.h | 64 static __inline__ void list_add(struct list_head * new_entry, struct list_head * head) in list_add() 77 static __inline__ void list_add_tail(struct list_head * new_entry, struct list_head * head) in list_add_tail() 120 static __inline__ int list_empty(struct list_head const * head) in list_empty() 130 static __inline__ void list_splice(struct list_head * list, struct list_head * head) in list_splice() 160 #define list_for_each(pos, head) \ argument 169 #define list_for_each_safe(pos, n, head) \ argument
|
/external/e2fsprogs/lib/ext2fs/ |
D | kernel-list.h | 50 static __inline__ void list_add(struct list_head *new, struct list_head *head) in list_add() 58 static __inline__ void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail() 82 static __inline__ int list_empty(struct list_head *head) in list_empty() 90 static __inline__ void list_splice(struct list_head *list, struct list_head *head) in list_splice() 109 #define list_for_each(pos, head) \ argument
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | TemplateList.java | 140 TemplateSubPatternAssociation head = in dumpAssociationTables() local 154 TemplateSubPatternAssociation head = m_wildCardPatterns; in dumpAssociationTables() local 188 TemplateSubPatternAssociation head = in compose() local 224 insertAssociationIntoList(TemplateSubPatternAssociation head, in insertAssociationIntoList() 356 TemplateSubPatternAssociation head = isWildCard in insertPatternInTable() local 434 TemplateSubPatternAssociation head; in getHead() local 502 TemplateSubPatternAssociation head; in getTemplateFast() local 601 TemplateSubPatternAssociation head = getHead(xctxt, targetNode, dtm); in getTemplate() local 666 TemplateSubPatternAssociation head = getHead(xctxt, targetNode, dtm); in getTemplate() local 726 private void checkConflicts(TemplateSubPatternAssociation head, in checkConflicts()
|
/external/webkit/Source/JavaScriptCore/profiler/ |
D | Profile.h | 42 ProfileNode* head() const { return m_head.get(); } in head() function 43 void setHead(PassRefPtr<ProfileNode> head) { m_head = head; } in setHead()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | StructureChain.h | 45 …static StructureChain* create(JSGlobalData& globalData, Structure* head) { return new (&globalData… in create() 46 WriteBarrier<Structure>* head() { return m_vector.get(); } in head() function
|
/external/v8/tools/ |
D | profile_view.js | 81 ViewBuilder.prototype.createView = function(head) { argument 99 funcName, totalTime, selfTime, head) { argument 112 function ProfileView(head) { argument 161 internalFuncName, totalTime, selfTime, head) { argument
|
/external/chromium/net/base/ |
D | address_list.cc | 40 struct addrinfo* head; member 113 void AddressList::Adopt(struct addrinfo* head) { in Adopt() 117 void AddressList::Copy(const struct addrinfo* head, bool recursive) { in Copy() 122 void AddressList::Append(const struct addrinfo* head) { in Append() 180 const struct addrinfo* AddressList::head() const { in head() function in net::AddressList
|
/external/skia/src/core/ |
D | SkGlobals.cpp | 48 Rec*& head = bootstrap.fHead; in Find() local 78 Rec*& head = bootstrap.fHead; in Term() local
|
/external/yaffs2/yaffs2/ |
D | devextras.h | 93 static __inline__ void list_add(struct list_head *new, struct list_head *head) in list_add() 107 struct list_head *head) in list_add_tail() 151 static __inline__ int list_empty(struct list_head *head) in list_empty() 162 struct list_head *head) in list_splice() 192 #define list_for_each(pos, head) \ argument 203 #define list_for_each_safe(pos, n, head) \ argument
|
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
D | WebInspectorShims.js | 45 profileReady: function(head) { argument 46 this._callback({ head: head }); property
|