Home
last modified time | relevance | path

Searched refs:list (Results 1451 - 1475 of 16570) sorted by relevance

1...<<51525354555657585960>>...663

/foundation/deviceprofile/device_info_manager/old/interfaces/innerkits/core/include/
H A Dsync_options.h19 #include <list>
37 const std::list<std::string>& GetDeviceList() const;
48 std::list<std::string> syncDevIds_;
/foundation/distributeddatamgr/data_object/frameworks/jskitsimpl/include/common/
H A Duv_queue.h18 #include <list>
27 typedef void (*Process)(napi_env env, std::list<void *> &);
44 // key is callback,value is list of args
45 std::map<Process, std::list<void *>> args_;
/kernel/linux/linux-5.10/arch/um/drivers/
H A Dmconsole_kern.h9 #include <linux/list.h>
13 struct list_head list; member
19 struct list_head list; member
/kernel/linux/linux-5.10/drivers/crypto/qat/qat_common/
H A Dadf_cfg.h6 #include <linux/list.h>
17 struct list_head list; member
22 struct list_head list; member
/kernel/linux/linux-6.6/arch/um/drivers/
H A Dmconsole_kern.h9 #include <linux/list.h>
13 struct list_head list; member
19 struct list_head list; member
/kernel/linux/linux-5.10/drivers/md/
H A Ddm-stats.h7 #include <linux/list.h>
14 struct list_head list; /* list of struct dm_stat */ member
40 return !list_empty(&st->list); in dm_stats_used()
/kernel/linux/linux-5.10/include/linux/
H A Dparman.h10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
38 #include <linux/list.h>
45 struct list_head list; member
50 struct list_head list; member
H A Dsignal_types.h9 #include <linux/list.h>
21 struct list_head list; member
31 struct list_head list; member
H A Dkcore.h19 struct list_head list; member
27 struct list_head list; member
34 struct list_head list; /* List of dumps */ member
/kernel/linux/linux-6.6/include/linux/
H A Dparman.h10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
38 #include <linux/list.h>
45 struct list_head list; member
50 struct list_head list; member
H A Dkcore.h17 struct list_head list; member
24 struct list_head list; member
31 struct list_head list; /* List of dumps */ member
/third_party/ffmpeg/libavcodec/
H A Dpacket_internal.h36 * Append an AVPacket to the list.
38 * @param list A PacketList
41 * @param copy A callback to copy the contents of the packet to the list.
43 moved to the list.
45 the packet and the list are unchanged.
47 int avpriv_packet_list_put(PacketList *list, AVPacket *pkt,
52 * Remove the oldest AVPacket in the list and return it.
60 * the list was empty.
62 int avpriv_packet_list_get(PacketList *list, AVPacket *pkt);
65 * Wipe the list an
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DUnicodeSetBoilerplateTest.java47 protected boolean _addTestObject(List<UnicodeSet> list) { in _addTestObject() argument
48 if (list.size() > 32) return false; in _addTestObject()
53 list.add(result); in _addTestObject()
H A DStringBoilerplateTest.java45 protected boolean _addTestObject(List<String> list) { in _addTestObject() argument
46 if (list.size() > 31) return false; in _addTestObject()
51 list.add(result.toString()); in _addTestObject()
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DUnicodeSetBoilerplateTest.java44 protected boolean _addTestObject(List<UnicodeSet> list) { in _addTestObject() argument
45 if (list.size() > 32) return false; in _addTestObject()
50 list.add(result); in _addTestObject()
H A DStringBoilerplateTest.java42 protected boolean _addTestObject(List<String> list) { in _addTestObject() argument
43 if (list.size() > 31) return false; in _addTestObject()
48 list.add(result.toString()); in _addTestObject()
/third_party/protobuf/csharp/src/Google.Protobuf/Collections/
H A DLists.cs11 // notice, this list of conditions and the following disclaimer.
13 // copyright notice, this list of conditions and the following disclaimer
73 /// Gets the list's hash code.
75 public static int GetHashCode<T>(List<T> list) in GetHashCode() argument
77 if (list == null) in GetHashCode()
82 foreach (T element in list) in GetHashCode()
/third_party/selinux/libselinux/include/selinux/
H A Dget_context_list.h12 /* Get an ordered list of authorized security contexts for a user session
14 NULL-terminated array of contexts. Every entry in the list will
21 char *** list);
28 char *** list);
65 /* Given a list of authorized security contexts for the user,
69 extern int query_user_context(char ** list,
73 if a list of authorized contexts could not be obtained.
/device/soc/rockchip/common/sdk_linux/kernel/power/
H A Dsnapshot.c29 #include <linux/list.h>
160 * During image restoration, for storing the PBE list and the image data, we can
249 static inline void free_list_of_pages(struct linked_page *list, int clear_page_nosave) in free_list_of_pages() argument
251 while (list) { in free_list_of_pages()
252 struct linked_page *lp = list->next; in free_list_of_pages()
254 free_image_page(list, clear_page_nosave); in free_list_of_pages()
255 list = lp; in free_list_of_pages()
261 * a linked list of pages called 'the chain'.
312 * objects. The main list's elements are of type struct zone_bitmap
314 * object there is a list o
361 struct list_head list; global() member
370 struct list_head list; /* Link Zones together */ global() member
414 alloc_rtree_node(gfp_t gfp_mask, int safe_needed, struct chain_allocator *ca, struct list_head *list) alloc_rtree_node() argument
575 free_mem_extents(struct list_head *list) free_mem_extents() argument
593 create_mem_extents(struct list_head *list, gfp_t gfp_mask) create_mem_extents() argument
916 struct list_head list; global() member
[all...]
/kernel/linux/linux-5.10/kernel/power/
H A Dsnapshot.c29 #include <linux/list.h>
147 * During image restoration, for storing the PBE list and the image data, we can
234 static inline void free_list_of_pages(struct linked_page *list, in free_list_of_pages() argument
237 while (list) { in free_list_of_pages()
238 struct linked_page *lp = list->next; in free_list_of_pages()
240 free_image_page(list, clear_page_nosave); in free_list_of_pages()
241 list = lp; in free_list_of_pages()
247 * a linked list of pages called 'the chain'.
299 * objects. The main list's elements are of type struct zone_bitmap
301 * object there is a list o
348 struct list_head list; global() member
357 struct list_head list; /* Link Zones together */ global() member
401 alloc_rtree_node(gfp_t gfp_mask, int safe_needed, struct chain_allocator *ca, struct list_head *list) alloc_rtree_node() argument
569 free_mem_extents(struct list_head *list) free_mem_extents() argument
586 create_mem_extents(struct list_head *list, gfp_t gfp_mask) create_mem_extents() argument
906 struct list_head list; global() member
[all...]
/kernel/linux/linux-6.6/drivers/misc/mei/
H A Dclient.c27 INIT_LIST_HEAD(&me_cl->list); in mei_me_cl_init()
77 * __mei_me_cl_del - delete me client from the list and decrease
90 list_del_init(&me_cl->list); in __mei_me_cl_del()
95 * mei_me_cl_del - delete me client from the list and decrease
109 * mei_me_cl_add - add me client to the list
117 list_add(&me_cl->list, &dev->me_clients); in mei_me_cl_add()
140 list_for_each_entry(me_cl, &dev->me_clients, list) { in __mei_me_cl_by_uuid()
189 list_for_each_entry(__me_cl, &dev->me_clients, list) { in mei_me_cl_by_id()
220 list_for_each_entry(me_cl, &dev->me_clients, list) { in __mei_me_cl_by_uuid_id()
308 list_for_each_entry_safe(me_cl, next, &dev->me_clients, list) in mei_me_cl_rm_all()
[all...]
/kernel/linux/linux-6.6/kernel/power/
H A Dsnapshot.c29 #include <linux/list.h>
181 * During image restoration, for storing the PBE list and the image data, we can
268 static inline void free_list_of_pages(struct linked_page *list, in free_list_of_pages() argument
271 while (list) { in free_list_of_pages()
272 struct linked_page *lp = list->next; in free_list_of_pages()
274 free_image_page(list, clear_page_nosave); in free_list_of_pages()
275 list = lp; in free_list_of_pages()
281 * a linked list of pages called 'the chain'.
333 * objects. The main list's elements are of type struct zone_bitmap
335 * object there is a list o
382 struct list_head list; global() member
391 struct list_head list; /* Link Zones together */ global() member
440 alloc_rtree_node(gfp_t gfp_mask, int safe_needed, struct chain_allocator *ca, struct list_head *list) alloc_rtree_node() argument
609 free_mem_extents(struct list_head *list) free_mem_extents() argument
626 create_mem_extents(struct list_head *list, gfp_t gfp_mask) create_mem_extents() argument
954 struct list_head list; global() member
[all...]
/kernel/linux/linux-5.10/virt/kvm/
H A Deventfd.c20 #include <linux/list.h>
80 list_for_each_entry_rcu(irqfd, &resampler->list, resampler_link) in irqfd_resampler_ack()
97 if (list_empty(&resampler->list)) { in irqfd_resampler_shutdown()
154 return list_empty(&irqfd->list) ? false : true; in irqfd_is_active()
167 list_del_init(&irqfd->list); in irqfd_deactivate()
303 INIT_LIST_HEAD(&irqfd->list); in kvm_irqfd_assign()
354 INIT_LIST_HEAD(&resampler->list); in kvm_irqfd_assign()
365 list_add_rcu(&irqfd->resampler_link, &irqfd->resampler->list); in kvm_irqfd_assign()
381 list_for_each_entry(tmp, &kvm->irqfds.items, list) { in kvm_irqfd_assign()
393 list_add_tail(&irqfd->list, in kvm_irqfd_assign()
658 struct list_head list; global() member
[all...]
/kernel/linux/linux-5.10/scripts/genksyms/
H A Dgenksyms.c57 static void print_list(FILE * f, struct string_list *list);
492 static void print_node(FILE * f, struct string_list *list) in print_node() argument
494 if (symbol_types[list->tag].n) { in print_node()
495 putc(symbol_types[list->tag].n, f); in print_node()
498 fputs(list->string, f); in print_node()
501 static void print_list(FILE * f, struct string_list *list) in print_list() argument
507 if (list == NULL) { in print_list()
512 tmp = list; in print_list()
520 (*tmp2--) = list; in print_list()
521 while ((list in print_list()
532 struct string_list *list = sym->defn; expand_and_crc_sym() local
[all...]
/kernel/linux/linux-6.6/scripts/genksyms/
H A Dgenksyms.c57 static void print_list(FILE * f, struct string_list *list);
492 static void print_node(FILE * f, struct string_list *list) in print_node() argument
494 if (symbol_types[list->tag].n) { in print_node()
495 putc(symbol_types[list->tag].n, f); in print_node()
498 fputs(list->string, f); in print_node()
501 static void print_list(FILE * f, struct string_list *list) in print_list() argument
507 if (list == NULL) { in print_list()
512 tmp = list; in print_list()
520 (*tmp2--) = list; in print_list()
521 while ((list in print_list()
532 struct string_list *list = sym->defn; expand_and_crc_sym() local
[all...]

Completed in 16 milliseconds

1...<<51525354555657585960>>...663