Home
last modified time | relevance | path

Searched refs:list (Results 826 - 850 of 16352) sorted by relevance

1...<<31323334353637383940>>...655

/third_party/libwebsockets/lib/system/async-dns/
H A Dasync-dns.c41 lws_dll2_remove(&q->list); in lws_adns_q_destroy()
51 lws_adns_q_t *q = lws_container_of(d, lws_adns_q_t, list); in lws_adns_get_query()
65 lws_dll2_remove(&q->list); in lws_adns_get_query()
66 lws_dll2_add_head(&q->list, &dns->cached); in lws_adns_get_query()
176 if (lws_dll2_is_detached(&q->sul.list) && in lws_async_dns_writeable()
314 list); in callback_async_dns()
316 if (//lws_dll2_is_detached(&q->sul.list) && in callback_async_dns()
399 c = lws_container_of(d, lws_adns_cache_t, list); in lws_adns_get_cache()
405 lws_dll2_remove(&c->list); in lws_adns_get_cache()
406 lws_dll2_add_head(&c->list, in lws_adns_get_cache()
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Drepeated_scalar_container.cc10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
65 RepeatedScalarContainer* self, PyObject* list) { in InternalAssignRepeatedField()
68 for (Py_ssize_t i = 0; i < PyList_GET_SIZE(list); ++i) { in InternalAssignRepeatedField()
69 PyObject* value = PyList_GET_ITEM(list, i); in InternalAssignRepeatedField()
100 "list assignment index (%d) out of range", in AssignItem()
205 "list index (%zd) out of range", in Item()
305 PyErr_SetString(PyExc_TypeError, "list indices must be integers"); in Subscript()
313 PyObject* list = PyList_New(0); in Subscript() local
314 if (list in Subscript()
64 InternalAssignRepeatedField( RepeatedScalarContainer* self, PyObject* list) InternalAssignRepeatedField() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dedit.c14 #include "list.h"
28 struct dl_list list; member
184 dl_list_for_each(h, &history_list, struct edit_history, list) { in history_add()
194 dl_list_del(&h->list); in history_add()
195 dl_list_add(&history_list, &h->list); in history_add()
201 dl_list_del(&last->list); in history_add()
209 dl_list_add(&history_list, &h->list); in history_add()
230 dl_list_first(&history_list, struct edit_history, list)) { in history_prev()
241 dl_list_last(&history_list, struct edit_history, list)) in history_prev()
244 history_curr = dl_list_entry(history_curr->list in history_prev()
426 complete(int list) complete() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dedit.c14 #include "list.h"
28 struct dl_list list; member
184 dl_list_for_each(h, &history_list, struct edit_history, list) { in history_add()
194 dl_list_del(&h->list); in history_add()
195 dl_list_add(&history_list, &h->list); in history_add()
201 dl_list_del(&last->list); in history_add()
209 dl_list_add(&history_list, &h->list); in history_add()
230 dl_list_first(&history_list, struct edit_history, list)) { in history_prev()
241 dl_list_last(&history_list, struct edit_history, list)) in history_prev()
244 history_curr = dl_list_entry(history_curr->list in history_prev()
426 complete(int list) complete() argument
[all...]
/kernel/linux/linux-6.6/drivers/s390/char/
H A Draw3270.c15 #include <linux/list.h>
37 struct list_head list; member
158 INIT_LIST_HEAD(&rq->list); in raw3270_request_alloc()
185 if (WARN_ON_ONCE(!list_empty(&rq->list))) in raw3270_request_reset()
259 list_add_tail(&rq->list, &rp->req_queue); in __raw3270_start()
328 list_add_tail(&rq->list, &rp->req_queue); in raw3270_start_irq()
372 if (rq && !list_empty(&rq->list)) { in raw3270_irq()
374 list_del_init(&rq->list); in raw3270_irq()
386 rq = list_entry(rp->req_queue.next, struct raw3270_request, list); in raw3270_irq()
392 list_del_init(&rq->list); in raw3270_irq()
[all...]
/third_party/python/Lib/
H A Dcgi.py209 value is a list of values for that field. For non-file fields, the value
210 is a list of strings.
268 list = None variable in MiniFieldStorage
294 The items are either a Python list (if there's multiple values) or
486 self.list = self.file = None
522 elif self.list is not None:
523 value = self.list
530 if self.list is None:
533 for item in self.list:
546 if isinstance(value, list)
[all...]
/kernel/linux/linux-5.10/drivers/char/agp/
H A Disoch.c6 #include <linux/list.h>
17 struct list_head list; member
25 struct agp_3_5_dev *cur, *n = list_entry(new, struct agp_3_5_dev, list); in agp_3_5_dev_list_insert()
29 cur = list_entry(pos, struct agp_3_5_dev, list); in agp_3_5_dev_list_insert()
36 static void agp_3_5_dev_list_sort(struct agp_3_5_dev *list, unsigned int ndevs) in agp_3_5_dev_list_sort() argument
40 struct list_head *pos, *tmp, *head = &list->list, *start = head->next; in agp_3_5_dev_list_sort()
46 cur = list_entry(pos, struct agp_3_5_dev, list); in agp_3_5_dev_list_sort()
81 struct list_head *head = &dev_list->list, *pos; in agp_3_5_isochronous_node_enable()
102 * Sort the device list b in agp_3_5_isochronous_node_enable()
[all...]
/kernel/linux/linux-5.10/drivers/s390/char/
H A Dmonwriter.c37 struct list_head list; member
47 struct list_head list; member
93 list_for_each_entry_safe(entry, next, &monpriv->list, list) in monwrite_find_hdr()
124 list_del(&monbuf->list); in monwrite_new_hdr()
143 list_add_tail(&monbuf->list, &monpriv->list); in monwrite_new_hdr()
175 list_del(&monpriv->current_buf->list); in monwrite_new_data()
198 INIT_LIST_HEAD(&monpriv->list); in monwrite_open()
211 list_for_each_entry_safe(entry, next, &monpriv->list, lis in monwrite_close()
[all...]
/kernel/linux/linux-5.10/fs/ext4/
H A Dpage-io.c63 INIT_LIST_HEAD(&io_end_vec->list); in ext4_alloc_io_end_vec()
64 list_add_tail(&io_end_vec->list, &io_end->list_vec); in ext4_alloc_io_end_vec()
74 list_for_each_entry_safe(io_end_vec, tmp, &io_end->list_vec, list) { in ext4_free_io_end_vec()
75 list_del(&io_end_vec->list); in ext4_free_io_end_vec()
83 return list_last_entry(&io_end->list_vec, struct ext4_io_end_vec, list); in ext4_last_io_end_vec()
157 BUG_ON(!list_empty(&io_end->list)); in ext4_release_io_end()
184 ext4_debug("ext4_end_io_nolock: io_end 0x%p from inode %lu,list->next 0x%p," in ext4_end_io_end()
185 "list->prev 0x%p\n", in ext4_end_io_end()
186 io_end, inode->i_ino, io_end->list.next, io_end->list in ext4_end_io_end()
[all...]
/kernel/linux/linux-5.10/kernel/time/
H A Dclockevents.c349 struct clock_event_device, list); in clockevents_notify_released()
350 list_del(&dev->list); in clockevents_notify_released()
351 list_add(&dev->list, &clockevent_devices); in clockevents_notify_released()
363 list_for_each_entry(dev, &clockevent_devices, list) { in clockevents_replace()
379 list_del_init(&ced->list); in clockevents_replace()
391 list_del_init(&ced->list); in __clockevents_try_unbind()
464 list_add(&dev->list, &clockevent_devices); in clockevents_register_device()
574 * released list and do a notify add later. in clockevents_exchange_device()
579 list_del(&old->list); in clockevents_exchange_device()
580 list_add(&old->list, in clockevents_exchange_device()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/microchip/lan966x/
H A Dlan966x_mac.c20 struct list_head list; member
228 list_for_each_entry(mac_entry, &lan966x->mac_entries, list) { in lan966x_mac_find_entry()
302 list_add_tail(&mac_entry->list, &lan966x->mac_entries); in lan966x_mac_add_entry()
321 list) { in lan966x_mac_del_entry()
328 list_del(&mac_entry->list); in lan966x_mac_del_entry()
344 list_for_each_entry(mac_entry, &lan966x->mac_entries, list) { in lan966x_mac_lag_replace_port_entry()
367 list) { in lan966x_mac_lag_remove_port_entry()
374 list_del(&mac_entry->list); in lan966x_mac_lag_remove_port_entry()
387 list) { in lan966x_mac_purge_entries()
391 list_del(&mac_entry->list); in lan966x_mac_purge_entries()
[all...]
/kernel/linux/linux-6.6/fs/ext4/
H A Dpage-io.c63 INIT_LIST_HEAD(&io_end_vec->list); in ext4_alloc_io_end_vec()
64 list_add_tail(&io_end_vec->list, &io_end->list_vec); in ext4_alloc_io_end_vec()
74 list_for_each_entry_safe(io_end_vec, tmp, &io_end->list_vec, list) { in ext4_free_io_end_vec()
75 list_del(&io_end_vec->list); in ext4_free_io_end_vec()
83 return list_last_entry(&io_end->list_vec, struct ext4_io_end_vec, list); in ext4_last_io_end_vec()
154 BUG_ON(!list_empty(&io_end->list)); in ext4_release_io_end()
181 ext4_debug("ext4_end_io_nolock: io_end 0x%p from inode %lu,list->next 0x%p," in ext4_end_io_end()
182 "list->prev 0x%p\n", in ext4_end_io_end()
183 io_end, inode->i_ino, io_end->list.next, io_end->list in ext4_end_io_end()
[all...]
/kernel/linux/linux-6.6/drivers/char/agp/
H A Disoch.c6 #include <linux/list.h>
17 struct list_head list; member
25 struct agp_3_5_dev *cur, *n = list_entry(new, struct agp_3_5_dev, list); in agp_3_5_dev_list_insert()
29 cur = list_entry(pos, struct agp_3_5_dev, list); in agp_3_5_dev_list_insert()
36 static void agp_3_5_dev_list_sort(struct agp_3_5_dev *list, unsigned int ndevs) in agp_3_5_dev_list_sort() argument
40 struct list_head *pos, *tmp, *head = &list->list, *start = head->next; in agp_3_5_dev_list_sort()
46 cur = list_entry(pos, struct agp_3_5_dev, list); in agp_3_5_dev_list_sort()
81 struct list_head *head = &dev_list->list, *pos; in agp_3_5_isochronous_node_enable()
102 * Sort the device list b in agp_3_5_isochronous_node_enable()
[all...]
/kernel/linux/linux-6.6/sound/soc/sof/
H A Dsof-client.c11 #include <linux/list.h>
27 * @list: item in SOF core client event list
33 struct list_head list; member
40 * @list: item in SOF core client event list
45 struct list_head list; member
247 /* add to list of SOF client devices */ in sof_client_dev_register()
249 list_add(&cdev->list, &sdev->ipc_client_list); in sof_client_dev_register()
274 list_for_each_entry(cdev, &sdev->ipc_client_list, list) { in sof_client_dev_unregister()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dh264_mb_template.c75 int list; in hl_decode_mb() local
76 for (list = 0; list < sl->list_count; list++) { in hl_decode_mb()
77 if (!USES_LIST(mb_type, list)) in hl_decode_mb()
80 int8_t *ref = &sl->ref_cache[list][scan8[0]]; in hl_decode_mb()
84 int ref = sl->ref_cache[list][scan8[i]]; in hl_decode_mb()
86 fill_rectangle(&sl->ref_cache[list][scan8[i]], 2, 2, in hl_decode_mb()
285 int list; in hl_decode_mb_444() local
286 for (list in hl_decode_mb_444()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DMessagePatternUtil.java83 * @return the list of MessageContentsNode nodes that this message contains
87 return list; in getContents()
95 return list.toString(); in toString()
102 if (node instanceof TextNode && !list.isEmpty()) { in addContentsNode()
104 MessageContentsNode lastNode = list.get(list.size() - 1); in addContentsNode()
111 list.add(node); in addContentsNode()
114 list = Collections.unmodifiableList(list); in freeze()
118 private volatile List<MessageContentsNode> list field in MessagePatternUtil.MessageNode
396 private volatile List<VariantNode> list = new ArrayList<VariantNode>(); global() field in MessagePatternUtil.ComplexArgStyleNode
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DMessagePatternUtil.java82 * @return the list of MessageContentsNode nodes that this message contains
85 return list; in getContents()
92 return list.toString(); in toString()
99 if (node instanceof TextNode && !list.isEmpty()) { in addContentsNode()
101 MessageContentsNode lastNode = list.get(list.size() - 1); in addContentsNode()
108 list.add(node); in addContentsNode()
111 list = Collections.unmodifiableList(list); in freeze()
115 private volatile List<MessageContentsNode> list field in MessagePatternUtil.MessageNode
373 private volatile List<VariantNode> list = new ArrayList<VariantNode>(); global() field in MessagePatternUtil.ComplexArgStyleNode
[all...]
/third_party/node/lib/internal/
H A Dtimers.js13 // linked list implementation, since timers depend on it extensively. It can be
57 // is possible in the JavaScript layer. Any one list of timers is able to be
61 // Removal from an object-property linked list is also virtually constant-time
64 // always be at the beginning of the list for reasons stated above. Any timers
71 // Timeout lists and the object map lookup of a specific list by the duration of
72 // timers within (or creation of a new list). However, these operations combined
149 // individual IDs to determine which list was created first.
156 // - value = linked list
201 // Make sure the linked list only shows the minimal necessary information.
246 this._idleNext = this; // Create the list wit
[all...]
/third_party/node/deps/openssl/openssl/crypto/ts/
H A Dts_conf.c316 STACK_OF(CONF_VALUE) *list = NULL; in TS_CONF_set_policies()
320 if (policies && (list = X509V3_parse_list(policies)) == NULL) { in TS_CONF_set_policies()
324 for (i = 0; i < sk_CONF_VALUE_num(list); ++i) { in TS_CONF_set_policies()
325 CONF_VALUE *val = sk_CONF_VALUE_value(list, i); in TS_CONF_set_policies()
340 sk_CONF_VALUE_pop_free(list, X509V3_conf_free); in TS_CONF_set_policies()
348 STACK_OF(CONF_VALUE) *list = NULL; in TS_CONF_set_digests()
355 if ((list = X509V3_parse_list(digests)) == NULL) { in TS_CONF_set_digests()
359 if (sk_CONF_VALUE_num(list) == 0) { in TS_CONF_set_digests()
363 for (i = 0; i < sk_CONF_VALUE_num(list); ++i) { in TS_CONF_set_digests()
364 CONF_VALUE *val = sk_CONF_VALUE_value(list, in TS_CONF_set_digests()
[all...]
/third_party/openssl/crypto/ts/
H A Dts_conf.c316 STACK_OF(CONF_VALUE) *list = NULL; in TS_CONF_set_policies()
320 if (policies && (list = X509V3_parse_list(policies)) == NULL) { in TS_CONF_set_policies()
324 for (i = 0; i < sk_CONF_VALUE_num(list); ++i) { in TS_CONF_set_policies()
325 CONF_VALUE *val = sk_CONF_VALUE_value(list, i); in TS_CONF_set_policies()
340 sk_CONF_VALUE_pop_free(list, X509V3_conf_free); in TS_CONF_set_policies()
348 STACK_OF(CONF_VALUE) *list = NULL; in TS_CONF_set_digests()
355 if ((list = X509V3_parse_list(digests)) == NULL) { in TS_CONF_set_digests()
359 if (sk_CONF_VALUE_num(list) == 0) { in TS_CONF_set_digests()
363 for (i = 0; i < sk_CONF_VALUE_num(list); ++i) { in TS_CONF_set_digests()
364 CONF_VALUE *val = sk_CONF_VALUE_value(list, in TS_CONF_set_digests()
[all...]
/foundation/resourceschedule/device_standby/services/common/src/
H A Dbackground_task_helper.cpp36 std::vector<std::shared_ptr<ContinuousTaskCallbackInfo>> &list) in GetContinuousTaskApps()
39 if (BackgroundTaskMgrHelper::GetContinuousTaskApps(list) != OHOS::ERR_OK) { in GetContinuousTaskApps()
47 bool WEAK_FUNC BackgroundTaskHelper::GetTransientTaskApps(std::vector<std::shared_ptr<TransientTaskAppInfo>> &list) in GetTransientTaskApps() argument
50 if (BackgroundTaskMgrHelper::GetTransientTaskApps(list) != OHOS::ERR_OK) { in GetTransientTaskApps()
35 GetContinuousTaskApps( std::vector<std::shared_ptr<ContinuousTaskCallbackInfo>> &list) GetContinuousTaskApps() argument
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/mock/
H A Ddb_change_data_mock.h32 const std::list<DBEntry> &GetEntriesInserted() const override;
33 const std::list<DBEntry> &GetEntriesUpdated() const override;
34 const std::list<DBEntry> &GetEntriesDeleted() const override;
40 std::list<DBEntry> entries_[BUTT];
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/
H A Dkvdb_commit_notify_filterable_data.h31 const std::list<Entry> GetInsertedEntries(int &errCode) const override;
34 const std::list<Entry> GetUpdatedEntries(int &errCode) const override;
37 const std::list<Entry> GetDeletedEntries(int &errCode) const override;
40 const std::list<KvDBConflictEntry> GetCommitConflicts(int &errCode) const override;
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/list/
H A Dlist_blur_test.cpp22 NAPI_START(list, ARKUI_NODE_LIST); in TestListBlur001()
26 auto ret = nodeAPI->setAttribute(list, NODE_BLUR, &valueItem); in TestListBlur001()
28 ASSERT_EQ(nodeAPI->getAttribute(list, NODE_BLUR)->value[PARAM_0].f32, blur); in TestListBlur001()
34 NAPI_START(list, ARKUI_NODE_LIST); in TestListBlur002()
/third_party/NuttX/fs/vfs/
H A Dfs_getfilep.c15 * notice, this list of conditions and the following disclaimer.
17 * notice, this list of conditions and the following disclaimer in
75 struct filelist *list; in fs_getfilep_normal() local
90 * thread-specific file list. in fs_getfilep_normal()
93 list = sched_getfiles(); in fs_getfilep_normal()
95 /* The file list can be NULL under two cases: (1) One is an obscure in fs_getfilep_normal()
102 if (list == NULL) in fs_getfilep_normal()
107 /* And return the file pointer from the list */ in fs_getfilep_normal()
109 *filep = &list->fl_files[fd]; in fs_getfilep_normal()

Completed in 18 milliseconds

1...<<31323334353637383940>>...655