Home
last modified time | relevance | path

Searched defs:node (Results 1 – 25 of 34) sorted by relevance

12

/system/bt/osi/src/
Dlist.c55 for (const list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node)) { in list_contains() local
87 list_node_t *node = (list_node_t *)list->allocator->alloc(sizeof(list_node_t)); in list_insert_after() local
104 list_node_t *node = (list_node_t *)list->allocator->alloc(sizeof(list_node_t)); in list_prepend() local
120 list_node_t *node = (list_node_t *)list->allocator->alloc(sizeof(list_node_t)); in list_append() local
151 …for (list_node_t *prev = list->head, *node = list->head->next; node; prev = node, node = node->nex… in list_remove() local
164 for (list_node_t *node = list->head; node; ) in list_clear() local
175 for (list_node_t *node = list->head; node; ) { in list_foreach() local
192 list_node_t *list_next(const list_node_t *node) { in list_next()
197 void *list_node(const list_node_t *node) { in list_node()
202 static list_node_t *list_free_node_(list_t *list, list_node_t *node) { in list_free_node_()
Dconfig.c109 for (const list_node_t *node = list_begin(src->sections); in config_new_clone() local
217 …for (const list_node_t *node = list_begin(sec->entries); node != list_end(sec->entries); node = li… in config_set_string() local
264 const config_section_node_t *config_section_next(const config_section_node_t *node) { in config_section_next()
269 const char *config_section_name(const config_section_node_t *node) { in config_section_name()
319 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in config_save() local
466 …for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); n… in section_find() local
500 …for (const list_node_t *node = list_begin(sec->entries); node != list_end(sec->entries); node = li… in entry_find() local
Dfixed_queue.c78 …for (const list_node_t *node = list_begin(queue->list); node != list_end(queue->list); node = list… in fixed_queue_free() local
/system/core/libcutils/
Dconfig_utils.c28 cnode *node; in config_node() local
41 cnode *node, *match = NULL; in config_find() local
53 cnode *node; in _config_create() local
69 cnode *node; in config_bool() local
87 cnode *node; in config_str() local
97 cnode *node; in config_set() local
245 static int parse_block(cstate *cs, cnode *node) in parse_block()
264 cnode *node; in parse_expr() local
/system/core/include/cutils/
Dlist.h32 #define node_to_item(node, container, member) \ argument
41 #define list_for_each(node, list) \ argument
44 #define list_for_each_reverse(node, list) \ argument
47 #define list_for_each_safe(node, n, list) \ argument
52 static inline void list_init(struct listnode *node) in list_init()
/system/core/sdcard/
Dsdcard.c140 struct node { struct
145 * The inode number for this FUSE node. Note that this isn't stable across argument
156 struct node *next; /* per-dir sibling list */ argument
157 struct node *child; /* first contained file by this dir */ argument
158 struct node *parent; /* containing directory */ argument
160 size_t namelen;
161 char *name;
167 char *actual_name;
171 char* graft_path;
172 size_t graft_pathlen;
[all …]
/system/core/init/
Dinit_parser.cpp80 struct listnode* node; in dump_parser_state() local
388 struct listnode *node; in parse_config() local
473 struct listnode *node; in service_find_by_name() local
486 struct listnode *node; in service_find_by_pid() local
499 struct listnode *node; in service_find_by_keychord() local
512 struct listnode *node; in service_for_each() local
523 struct listnode *node; in service_for_each_class() local
536 struct listnode *node; in service_for_each_flags() local
549 struct listnode *node, *node2; in action_for_each_trigger() local
567 struct listnode *node, *node2; in queue_property_triggers() local
[all …]
Dsignal_handler.cpp136 struct listnode* node; in wait_for_one_process() local
Ddevices.cpp102 struct perm_node *node = (perm_node*) calloc(1, sizeof(*node)); in add_dev_perms() local
133 struct listnode *node; in fixup_sys_perms() local
192 struct listnode *node; in get_device_perm() local
295 struct listnode *node; in find_platform_device() local
311 struct listnode *node; in remove_platform_device() local
Dinit.cpp545 struct listnode *node; in get_first_command() local
555 struct listnode *node; in get_next_command() local
572 struct listnode *node; in build_triggers_string() local
Dueventd_parser.cpp86 struct listnode *node; in ueventd_subsystem_find_by_name() local
/system/core/liblog/
Dlog_read_kern.c137 struct listnode node; member
150 struct listnode node; member
155 struct listnode node; member
322 struct listnode *node; in android_logger_open() local
394 static bool low_queue(struct listnode *node) in low_queue()
418 struct listnode *node; in android_logger_list_flush() local
736 struct listnode *node = list_head(&logger_list->node); in android_logger_list_free() local
Dlog_read.c247 struct listnode node; member
256 struct listnode node; member
890 struct listnode *node = list_head(&logger_list->node); in android_logger_list_free() local
/system/bt/btif/src/
Dbtif_profile_queue.c77 …for (const list_node_t *node = list_begin(connect_queue); node != list_end(connect_queue); node = … in queue_int_add() local
121 connect_node_t node; in btif_queue_connect() local
Dbtif_sock_sco.c204 …for (const list_node_t *node = list_begin(sco_sockets); node != list_end(sco_sockets); node = list… in sco_socket_find_locked() local
/system/media/camera/docs/
Dmetadata_helpers.py76 def find_unique_entries(node): argument
106 def path_name(node): argument
130 def has_descendants_with_enums(node): argument
143 def get_children_by_throwing_away_kind(node, member='entries'): argument
756 def javadoc_crossref_filter(node): argument
Dmetadata_helpers_test.py137 def filter_test(node): argument
/system/bt/osi/test/
Dlist_test.cpp116 …for (const list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node), +… in TEST_F() local
130 …for (const list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node), -… in TEST_F() local
/system/core/adb/
Dfdevent.cpp470 static void fdevent_plist_enqueue(fdevent *node) in fdevent_plist_enqueue()
480 static void fdevent_plist_remove(fdevent *node) in fdevent_plist_remove()
491 fdevent *node = list->next; in fdevent_plist_dequeue() local
Dadb_auth_host.cpp63 struct listnode node; member
371 int adb_auth_sign(void *node, const unsigned char* token, size_t token_size, in adb_auth_sign()
Dadb_auth_client.cpp36 struct listnode node; member
/system/bt/stack/l2cap/
Dl2cap_client.c167 …for (const list_node_t *node = list_begin(client->outbound_fragments); node != list_end(client->ou… in l2cap_client_disconnect() local
428 …for (const list_node_t *node = list_begin(l2cap_clients); node != list_end(l2cap_clients); node = … in find() local
Dl2c_main.c824 for (const list_node_t *node = list_begin(l2cb.rcv_pending_q); in l2c_process_held_packets() local
/system/bt/device/src/
Dinterop.c119 const list_node_t *node = list_begin(interop_list); in interop_match_dynamic_() local
/system/bt/test/suite/
Dmain.c149 …for (const config_section_node_t *node = config_section_begin(config); node != config_section_end(… in main() local

12