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

1 2

  /device/google/marlin/power/
list.h 30 struct list_node { struct
31 struct list_node *next;
37 int init_list_head(struct list_node *head);
38 struct list_node * add_list_node(struct list_node *head, void *data);
39 int remove_list_node(struct list_node *head, struct list_node *del_node);
40 void dump_list(struct list_node *head);
41 struct list_node *find_node(struct list_node *head, void *comparison_data)
    [all...]
list.c 37 int init_list_head(struct list_node *head)
47 struct list_node *add_list_node(struct list_node *head, void *data)
49 /* Create a new list_node. And put 'data' into it. */
50 struct list_node *new_node;
56 if (!(new_node = malloc(sizeof(struct list_node)))) {
69 int is_list_empty(struct list_node *head)
77 int remove_list_node(struct list_node *head, struct list_node *del_node)
79 struct list_node *current_node
    [all...]
utils.c 62 static struct list_node active_hint_list_head;
254 struct list_node *found_node = find_node(&active_hint_list_head,
307 struct list_node *found_node;
  /device/google/marlin/dataservices/datatop/src/
datatop_linked_list.c 57 struct dtop_linked_list *list_node; local
58 list_node = malloc(sizeof(struct dtop_linked_list));
60 if (!list_node) {
65 list_node->data = data;
66 list_node->next_ptr = list;
67 list = list_node;
  /external/kmod/libkmod/
libkmod-list.c 30 static inline struct list_node *list_node_init(struct list_node *node)
38 static inline void list_node_append(struct list_node *list,
39 struct list_node *node)
52 static inline struct list_node *list_node_remove(struct list_node *node)
63 static inline void list_node_insert_after(struct list_node *list,
64 struct list_node *node)
77 static inline void list_node_insert_before(struct list_node *list,
78 struct list_node *node
    [all...]
libkmod-internal.h 53 struct list_node { struct
54 struct list_node *next, *prev;
58 struct list_node node;
  /system/bt/osi/test/
list_test.cc 114 EXPECT_EQ(list_node(node), &x[i]);
128 EXPECT_EQ(list_node(node), &x[i]);
191 int* rc_val = (int*)list_node(rc);
197 rc_val = (int*)list_node(rc);
203 rc_val = (int*)list_node(rc);
  /system/bt/osi/include/
list.h 139 void* list_node(const list_node_t* node);
  /system/bt/stack/btm/
btm_dev.cc 341 if (n) return static_cast<tBTM_SEC_DEV_REC*>(list_node(n));
371 if (n) return static_cast<tBTM_SEC_DEV_REC*>(list_node(n));
394 static_cast<tBTM_SEC_DEV_REC*>(list_node(node));
476 static_cast<tBTM_SEC_DEV_REC*>(list_node(node));
btm_ble_addr.cc 319 if (n != nullptr) p_dev_rec = static_cast<tBTM_SEC_DEV_REC*>(list_node(n));
343 static_cast<tBTM_SEC_DEV_REC*>(list_node(node));
btm_ble_bgconn.cc 610 tBTM_BLE_CONN_REQ* p_req = (tBTM_BLE_CONN_REQ*)list_node(node);
  /system/bt/osi/src/
list.cc 57 if (list_node(node) == data) return true;
199 void* list_node(const list_node_t* node) { function
fixed_queue.cc 76 free_cb(list_node(node));
alarm.cc 443 ((alarm_t*)list_node(next))->deadline > alarm->deadline) {
737 alarm_t* alarm = (alarm_t*)list_node(node);
  /system/bt/device/src/
interop.cc 154 static_cast<interop_addr_entry_t*>(list_node(node));
  /hardware/libhardware/modules/usbaudio/
audio_hal.c 107 struct listnode list_node; member in struct:stream_out
143 struct listnode list_node; member in struct:stream_in
664 adev_add_stream_to_list(out->adev, &out->adev->output_stream_list, &out->list_node);
677 adev_remove_stream_from_list(out->adev, &out->list_node);
    [all...]
  /system/bt/stack/l2cap/
l2cap_client.cc 163 osi_free(list_node(node));
455 l2cap_client_t* client = (l2cap_client_t*)list_node(node);
l2c_fcr.cc     [all...]
l2c_api.cc     [all...]
  /system/bt/btif/src/
btif_sock_sco.cc 206 sco_socket_t* sco_socket = (sco_socket_t*)list_node(node);
btif_hl.cc     [all...]
  /system/bt/hci/src/
hci_layer.cc 488 reinterpret_cast<waiting_command_t*>(list_node(node));
683 reinterpret_cast<waiting_command_t*>(list_node(node));
  /external/selinux/libsepol/src/
module_to_cil.c 183 struct list_node { struct
185 struct list_node *next;
189 struct list_node *head;
200 struct list_node *curr = (*list)->head;
201 struct list_node *tmp;
215 struct list_node *curr;
237 struct list_node *curr = (*attr_list)->head;
268 struct list_node *node = calloc(1, sizeof(*node));
891 struct list_node *curr;
908 struct list_node *curr
    [all...]
  /system/bt/stack/gatt/
gatt_utils.cc 145 tGATTS_SRV_CHG* p_buf = (tGATTS_SRV_CHG*)list_node(node);
301 tGATT_VALUE* p_buf = (tGATT_VALUE*)list_node(node);
330 tGATTS_SRV_CHG* p_buf = (tGATTS_SRV_CHG*)list_node(node);
    [all...]
  /external/v8/src/crankshaft/
hydrogen-instructions.cc 525 HUseListNode* list_node = use_list_; local
526 HValue* value = list_node->value();
528 value->InternalSetOperandAt(list_node->index(), other);
529 use_list_ = list_node->tail();
530 list_node->set_tail(other->use_list_);
531 other->use_list_ = list_node;
    [all...]

Completed in 310 milliseconds

1 2