Searched refs:phead (Results 1 – 9 of 9) sorted by relevance
/third_party/musl/src/malloc/mallocng/ |
D | meta.h | 75 static inline void queue(struct meta **phead, struct meta *m) in queue() argument 79 if (*phead) { in queue() 80 struct meta *head = *phead; in queue() 86 *phead = m; in queue() 90 static inline void dequeue(struct meta **phead, struct meta *m) in dequeue() argument 95 if (*phead == m) *phead = m->next; in dequeue() 97 *phead = 0; in dequeue() 102 static inline struct meta *dequeue_head(struct meta **phead) in dequeue_head() argument 104 struct meta *m = *phead; in dequeue_head() 105 if (m) dequeue(phead, m); in dequeue_head()
|
/third_party/musl/porting/linux/user/src/malloc/mallocng/ |
D | meta.h | 85 static inline void queue(struct meta **phead, struct meta *m) in queue() argument 89 if (*phead) { in queue() 90 struct meta *head = *phead; in queue() 101 *phead = m; in queue() 105 static inline void dequeue(struct meta **phead, struct meta *m) in dequeue() argument 110 if (*phead == m) *phead = m->next; in dequeue() 112 *phead = 0; in dequeue() 117 static inline struct meta *dequeue_head(struct meta **phead) in dequeue_head() argument 119 struct meta *m = *phead; in dequeue_head() 120 if (m) dequeue(phead, m); in dequeue_head()
|
/third_party/ntfs-3g/libntfs-3g/ |
D | security.c | 2071 const SECURITY_DESCRIPTOR_RELATIVE *phead; in ntfs_get_perm() local 2097 phead = (const SECURITY_DESCRIPTOR_RELATIVE*) in ntfs_get_perm() 2100 securattr[le32_to_cpu(phead->group)]; in ntfs_get_perm() 2113 securattr[le32_to_cpu(phead->owner)]; in ntfs_get_perm() 2172 const SECURITY_DESCRIPTOR_RELATIVE *phead; in ntfs_get_posix_acl() local 2196 phead = in ntfs_get_posix_acl() 2200 securattr[le32_to_cpu(phead->group)]; in ntfs_get_posix_acl() 2205 securattr[le32_to_cpu(phead->owner)]; in ntfs_get_posix_acl() 2304 const SECURITY_DESCRIPTOR_RELATIVE *phead; in ntfs_get_perm() local 2329 phead = (const SECURITY_DESCRIPTOR_RELATIVE*) in ntfs_get_perm() [all …]
|
D | acls.c | 259 const SECURITY_DESCRIPTOR_RELATIVE *phead; in ntfs_attr_size() local 271 phead = (const SECURITY_DESCRIPTOR_RELATIVE*)attr; in ntfs_attr_size() 277 offgroup = le32_to_cpu(phead->group); in ntfs_attr_size() 284 offowner = le32_to_cpu(phead->owner); in ntfs_attr_size() 291 offsacl = le32_to_cpu(phead->sacl); in ntfs_attr_size() 302 offdacl = le32_to_cpu(phead->dacl); in ntfs_attr_size() 609 const SECURITY_DESCRIPTOR_RELATIVE *phead; in ntfs_valid_descr() local 626 phead = (const SECURITY_DESCRIPTOR_RELATIVE*)securattr; in ntfs_valid_descr() 627 offdacl = le32_to_cpu(phead->dacl); in ntfs_valid_descr() 628 offsacl = le32_to_cpu(phead->sacl); in ntfs_valid_descr() [all …]
|
/third_party/libwebsockets/READMEs/ |
D | README.lws_dll.md | 124 |add entry at head|`void lws_dll_add_head(struct lws_dll *d, struct lws_dll *phead)`|`void lws_dll2… 125 |add entry at tail|`void lws_dll_add_tail(struct lws_dll *d, struct lws_dll *phead);`|`void lws_dll… 126 …g list|`void lws_dll_remove_track_tail(struct lws_dll *d, struct lws_dll *phead)`|`void lws_dll2_a… 128 …hed from any list|`lws_dll_is_detached(struct lws_dll *d, struct lws_dll *phead)|int lws_dll2_is_d… 129 |iterate through items on list|`int lws_dll_foreach_safe(struct lws_dll *phead, void *user, int (*c…
|
/third_party/ntfs-3g/ntfsprogs/ |
D | ntfssecaudit.c | 1625 const SECURITY_DESCRIPTOR_RELATIVE *phead; in linux_permissions_posix() local 1633 phead = (const SECURITY_DESCRIPTOR_RELATIVE*)attr; in linux_permissions_posix() 1634 gsid = (const SID*)&attr[le32_to_cpu(phead->group)]; in linux_permissions_posix() 1636 osid = (const SID*)&attr[le32_to_cpu(phead->owner)]; in linux_permissions_posix() 1646 usid = (const SID*)&attr[le32_to_cpu(phead->owner)]; in linux_permissions_posix() 1666 const SECURITY_DESCRIPTOR_RELATIVE *phead; in linux_permissions() local 1674 phead = (const SECURITY_DESCRIPTOR_RELATIVE*)attr; in linux_permissions() 1675 gsid = (const SID*)&attr[le32_to_cpu(phead->group)]; in linux_permissions() 1677 osid = (const SID*)&attr[le32_to_cpu(phead->owner)]; in linux_permissions() 1687 usid = (const SID*)&attr[le32_to_cpu(phead->owner)]; in linux_permissions() [all …]
|
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-lwsac.h | 80 lws_list_ptr_insert(lws_list_ptr *phead, lws_list_ptr *add,
|
/third_party/musl/porting/linux/user/src/network/ |
D | lookup_name.c | 882 linknode *phead = plist->_phead; in linklist_delete_first() local 885 free_linknodedata(phead); in linklist_delete_first()
|
/third_party/libwebsockets/lib/misc/lwsac/ |
D | README.md | 98 lws_list_ptr_insert(lws_list_ptr *phead, lws_list_ptr *add,
|