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

1 2

  /system/bt/osi/include/
list.h 9 struct list_t;
10 typedef struct list_t list_t; typedef in typeref:struct:list_t
26 list_t *list_new(list_free_cb callback);
30 void list_free(list_t *list);
34 bool list_is_empty(const list_t *list);
38 bool list_contains(const list_t *list, const void *data);
41 size_t list_length(const list_t *list);
45 void *list_front(const list_t *list);
49 void *list_back(const list_t *list)
    [all...]
fixed_queue.h 100 list_t *fixed_queue_get_list(fixed_queue_t *queue);
  /external/libavc/common/
ih264_list.h 78 }list_t; typedef in typeref:struct:__anon14667
86 IH264_ERROR_T ih264_list_free(list_t *ps_list);
87 IH264_ERROR_T ih264_list_reset(list_t *ps_list);
88 IH264_ERROR_T ih264_list_deinit(list_t *ps_list);
89 IH264_ERROR_T ih264_list_terminate(list_t *ps_list);
90 IH264_ERROR_T ih264_list_queue(list_t *ps_list, void *pv_buf, WORD32 blocking);
91 IH264_ERROR_T ih264_list_dequeue(list_t *ps_list, void *pv_buf, WORD32 blocking);
ih264_list.c 87 size = sizeof(list_t);
116 IH264_ERROR_T ih264_list_lock(list_t *ps_list)
146 IH264_ERROR_T ih264_list_unlock(list_t *ps_list)
179 IH264_ERROR_T ih264_list_yield(list_t *ps_list)
217 IH264_ERROR_T ih264_list_free(list_t *ps_list)
256 list_t *ps_list;
261 ps_list = (list_t *)pu1_buf;
262 pu1_buf += sizeof(list_t);
263 buf_size -= sizeof(list_t);
309 IH264_ERROR_T ih264_list_reset(list_t *ps_list
    [all...]
  /system/bt/osi/src/
list.c 12 typedef struct list_t { struct
18 } list_t; typedef in typeref:struct:list_t
20 static list_node_t *list_free_node_(list_t *list, list_node_t *node);
24 list_t *list_new_internal(list_free_cb callback, const allocator_t *zeroed_allocator) {
25 list_t *list = (list_t *)zeroed_allocator->alloc(sizeof(list_t));
34 list_t *list_new(list_free_cb callback) {
38 void list_free(list_t *list) {
46 bool list_is_empty(const list_t *list)
    [all...]
hash_map.c 29 list_t *list;
44 list_t *list_new_internal(list_free_cb callback, const allocator_t *zeroed_allocator);
48 static hash_map_entry_t *find_bucket_entry_(list_t *hash_bucket_list,
119 list_t *hash_bucket_list = hash_map->bucket[hash_key].list;
136 list_t *hash_bucket_list = hash_map->bucket[hash_key].list;
162 list_t *hash_bucket_list = hash_map->bucket[hash_key].list;
178 list_t *hash_bucket_list = hash_map->bucket[hash_key].list;
227 static hash_map_entry_t * find_bucket_entry_(list_t *hash_bucket_list,
fixed_queue.c 31 list_t *list;
216 list_t *fixed_queue_get_list(fixed_queue_t *queue) {
reactor.c 44 list_t *invalidation_list; // reactor objects that have been unregistered.
config.c 45 list_t *entries;
49 list_t *sections;
  /external/jemalloc/test/unit/
ql.c 6 typedef struct list_s list_t; typedef in typeref:struct:list_s
7 typedef ql_head(list_t) list_head_t;
10 ql_elm(list_t) link;
17 list_t *t;
47 init_entries(list_t *entries, unsigned nentries)
58 test_entries_list(list_head_t *head, list_t *entries, unsigned nentries)
60 list_t *t;
97 list_t entries[NENTRIES];
101 init_entries(entries, sizeof(entries)/sizeof(list_t));
112 list_t entries[NENTRIES]
    [all...]
  /system/bt/osi/test/
list_test.cpp 13 list_t *list = list_new(NULL);
24 list_t *list = list_new(NULL);
30 list_t *list = list_new(NULL);
36 list_t *list = list_new(NULL);
44 list_t *list = list_new(NULL);
52 list_t *list = list_new(NULL);
62 list_t *list = list_new(NULL);
72 list_t *list = list_new(NULL);
84 list_t *list = list_new(NULL);
96 list_t *list = list_new(NULL)
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
mtb_unittest.py 607 def _test_get_segments(self, list_t, list_coord, expected_segments, ratio):
617 list_t, list_coord, segment_flag, ratio)
635 list_t = [1000 + 0.012 * i for i in range(len(list_coord))]
638 VAL.WHOLE: (list_t, list_coord),
639 VAL.MIDDLE: (list_t[8:17], list_coord[8:17]),
640 VAL.BEGIN: (list_t[:8], list_coord[:8]),
641 VAL.END: (list_t[17:], list_coord[17:]),
643 self._test_get_segments(list_t, list_coord, expected_segments, ratio)
654 list_t = [1000 + 0.012 * i for i in range(len(list_c))]
656 VAL.WHOLE: (list_t, list_c)
    [all...]
validators_unittest.py 186 list_t = [i * 0.1 for i in range(len(list_y))]
188 list_t, list_y)
207 list_t = range(len(list_y))
218 (max_err, rms_err) = self.validator._calc_errors_single_axis(list_t,
252 list_t = [1.47, 1.50, 1.52, 1.55, 1.57, 1.60, 1.63, 1.65, 1.68, 1.70,
259 list_t, list_y)
    [all...]
  /system/bt/btif/src/
btif_profile_queue.c 60 static list_t *connect_queue;
btif_sock_sco.c 88 static list_t *sco_sockets; // Owns a collection of sco_socket_t objects.
  /external/autotest/client/site_tests/firmware_TouchMTB/
validators.py 265 """Get list_x, list_y, and list_t for the specified finger.
272 list_t = self.packets.get_ordered_finger_path(self.finger, 'syn_time')
273 return (list_x, list_y, list_t)
525 def _calc_residuals(self, line, list_t, list_y):
526 """Calculate the residuals of the points in list_t, list_y against
529 @param line: the regression line of list_t and list_y
530 @param list_t: a list of time instants
535 where t_i is an element in list_t and
539 horizontal axis, list_t, always represent the time instants, and the
542 return [float(line(t) - y) for t, y in zip(list_t, list_y)
    [all...]
mtb.py     [all...]
  /system/bt/bta/include/
bta_gatt_api.h 568 list_t *characteristics; /* list of tBTA_GATTC_CHARACTERISTIC */
569 list_t *included_svc; /* list of tBTA_GATTC_INCLUDED_SVC */
578 list_t *descriptors; /* list of tBTA_GATTC_DESCRIPTOR */
723 ** Returns returns list_t of tBTA_GATTC_SERVICE or NULL.
726 extern const list_t* BTA_GATTC_GetServices(UINT16 conn_id);
    [all...]
  /system/bt/device/src/
interop.c 33 static list_t *interop_list = NULL;
  /system/bt/hci/src/
hci_inject.c 57 static list_t *clients;
  /system/bt/bta/gatt/
bta_gattc_cache.c 51 tBTA_GATTC_SERVICE* bta_gattc_find_matching_service(const list_t *services, UINT16 handle);
117 static void bta_gattc_display_cache_server(list_t *p_cache)
    [all...]
bta_gattc_int.h 280 list_t *p_srvc_cache; /* list of tBTA_GATTC_SERVICE */
482 extern const list_t* bta_gattc_get_services(UINT16 conn_id);
  /system/bt/stack/l2cap/
l2cap_client.c 43 list_t *outbound_fragments;
74 static list_t *l2cap_clients; // A list of l2cap_client_t. Container does not own objects.
l2c_int.h 408 list_t *link_xmit_data_q; /* Link transmit data buffer queue */
480 list_t *rcv_pending_q; /* Recv pending queue */
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 154 template <typename object_t, typename list_t>
155 object_t *createCOFFEntity(StringRef Name, list_t &List);
258 template <typename object_t, typename list_t>
259 object_t *WinCOFFObjectWriter::createCOFFEntity(StringRef Name, list_t &List) {
    [all...]

Completed in 189 milliseconds

1 2