HomeSort by relevance Sort by last modified time
    Searched refs:list_node_t (Results 1 - 25 of 27) sorted by null

1 2

  /system/bt/osi/include/
list.h 6 struct list_node_t;
7 typedef struct list_node_t list_node_t; typedef in typeref:struct:list_node_t
53 list_node_t *list_back_node(const list_t *list);
60 bool list_insert_after(list_t *list, list_node_t *prev_node, void *data);
93 list_node_t *list_foreach(const list_t *list, list_iter_cb callback, void *context);
98 list_node_t *list_begin(const list_t *list);
104 list_node_t *list_end(const list_t *list);
110 list_node_t *list_next(const list_node_t *node)
    [all...]
  /system/bt/osi/src/
list.c 7 struct list_node_t { struct
8 struct list_node_t *next;
13 list_node_t *head;
14 list_node_t *tail;
20 static list_node_t *list_free_node_(list_t *list, list_node_t *node);
55 for (const list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node)) {
82 list_node_t *list_back_node(const list_t *list) {
89 bool list_insert_after(list_t *list, list_node_t *prev_node, void *data) {
94 list_node_t *node = (list_node_t *)list->allocator->alloc(sizeof(list_node_t))
    [all...]
config.c 52 // Empty definition; this type is aliased to list_node_t.
111 for (const list_node_t *node = list_begin(src->sections);
116 for (const list_node_t *node_entry = list_begin(sec->entries);
219 for (const list_node_t *node = list_begin(sec->entries); node != list_end(sec->entries); node = list_next(node)) {
268 return (const config_section_node_t *)list_next((const list_node_t *)node);
273 const list_node_t *lnode = (const list_node_t *)node;
321 for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); node = list_next(node)) {
328 for (const list_node_t *enode = list_begin(section->entries); enode != list_end(section->entries); enode = list_next(enode)) {
467 for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); node = list_next(node))
    [all...]
hash_map.c 205 for (const list_node_t *iter = list_begin(hash_map->bucket[i].list);
233 for (const list_node_t *iter = list_begin(hash_bucket_list);
alarm.c 454 for (list_node_t *node = list_begin(alarms); node != list_end(alarms); node = list_next(node)) {
455 list_node_t *next = list_next(node);
573 for (list_node_t *node = list_begin(alarms); node != list_end(alarms); ) {
747 for (list_node_t *node = list_begin(alarms); node != list_end(alarms);
fixed_queue.c 76 for (const list_node_t *node = list_begin(queue->list); node != list_end(queue->list); node = list_next(node))
  /system/bt/osi/test/
list_test.cpp 116 for (const list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node), ++i)
130 for (const list_node_t *node = list_begin(list); node != list_end(list); node = list_next(node), --i)
176 list_node_t *rc = list_foreach(list, list_callback_sum, &sum);
194 list_node_t *rc = list_foreach(list, list_callback_find_int, &find);
  /system/bt/stack/btm/
btm_dev.c 392 list_node_t *n = list_foreach(btm_cb.sec_dev_rec, is_handle_equal, &handle);
432 list_node_t *n = list_foreach(btm_cb.sec_dev_rec, is_address_equal, bd_addr);
455 list_node_t *end = list_end(btm_cb.sec_dev_rec);
456 for (list_node_t *node = list_begin(btm_cb.sec_dev_rec); node != end; node = list_next(node)) {
544 list_node_t *end = list_end(btm_cb.sec_dev_rec);
545 for (list_node_t *node = list_begin(btm_cb.sec_dev_rec); node != end; node = list_next(node)) {
btm_ble_addr.c 371 list_node_t * n = list_foreach(btm_cb.sec_dev_rec, btm_ble_match_random_bda, NULL);
397 list_node_t *end = list_end(btm_cb.sec_dev_rec);
398 for (list_node_t *node = list_begin(btm_cb.sec_dev_rec); node != end; node = list_next(node)) {
btm_ble_privacy.c 969 list_node_t *n = list_foreach(btm_cb.sec_dev_rec, is_on_resolving_list, NULL);
    [all...]
btm_sec.c     [all...]
  /system/bt/bta/gatt/
bta_gattc_cache.c     [all...]
  /system/bt/btif/src/
btif_profile_queue.c 77 for (const list_node_t *node = list_begin(connect_queue); node != list_end(connect_queue); node = list_next(node)) {
btif_sock_sco.c 206 for (const list_node_t *node = list_begin(sco_sockets); node != list_end(sco_sockets); node = list_next(node)) {
btif_hl.c     [all...]
btif_rc.c     [all...]
  /system/bt/device/src/
interop.c 138 const list_node_t *node = list_begin(interop_list);
  /system/bt/stack/l2cap/
l2cap_client.c 163 for (const list_node_t *node = list_begin(client->outbound_fragments); node != list_end(client->outbound_fragments); node = list_next(node))
426 for (const list_node_t *node = list_begin(l2cap_clients); node != list_end(l2cap_clients); node = list_next(node)) {
l2c_api.c     [all...]
l2c_fcr.c     [all...]
l2c_main.c 772 for (const list_node_t *node = list_begin(l2cb.rcv_pending_q);
    [all...]
  /system/bt/bta/hh/
bta_hh_le.c 154 list_node_t *op_node = list_foreach(gatt_op_queue, find_op_by_conn_id, &conn_id);
663 for (list_node_t *dn = list_begin(p_char->descriptors);
    [all...]
  /system/bt/stack/gatt/
gatt_utils.c 175 for (const list_node_t *node = list_begin(list); node != list_end(list);
209 for (const list_node_t *node = list_begin(list); node != list_end(list);
778 for (const list_node_t *node = list_begin(list);
815 for (const list_node_t *node = list_begin(list); node != list_end(list);
    [all...]
gatt_sr.c 155 const list_node_t *node = NULL;
    [all...]
  /system/bt/hci/src/
hci_layer.c 752 for (const list_node_t *node = list_begin(commands_pending_response);

Completed in 785 milliseconds

1 2