Home
last modified time | relevance | path

Searched refs:collection (Results 1 - 25 of 35) sorted by relevance

12

/kernel/linux/linux-5.10/arch/arm64/kvm/vgic/
H A Dvgic-its.c144 struct its_collection *collection; member
158 * @cte_esz: collection table entry size
256 * Finds and returns a collection in the ITS collection table.
261 struct its_collection *collection; in find_collection() local
263 list_for_each_entry(collection, &its->collection_list, coll_list) { in find_collection()
264 if (coll_id == collection->collection_id) in find_collection()
265 return collection; in find_collection()
384 * Needs to be called whenever either the collection for a LPIs has
385 * changed or the collection itsel
881 struct its_collection *collection; vgic_its_cmd_handle_movi() local
988 struct its_collection *collection; vgic_its_alloc_collection() local
1008 struct its_collection *collection; vgic_its_free_collection() local
1031 vgic_its_alloc_ite(struct its_device *device, struct its_collection *collection, u32 event_id) vgic_its_alloc_ite() argument
1061 struct its_collection *collection, *new_coll = NULL; vgic_its_cmd_handle_mapi() local
1222 struct its_collection *collection; vgic_its_cmd_handle_mapc() local
1311 struct its_collection *collection; vgic_its_cmd_handle_invall() local
2155 struct its_collection *collection; vgic_its_restore_ite() local
2459 vgic_its_save_cte(struct vgic_its *its, struct its_collection *collection, gpa_t gpa, int esz) vgic_its_save_cte() argument
2474 struct its_collection *collection; vgic_its_restore_cte() local
2514 struct its_collection *collection; vgic_its_save_collection_table() local
[all...]
/kernel/linux/linux-6.6/arch/arm64/kvm/vgic/
H A Dvgic-its.c144 struct its_collection *collection; member
158 * @cte_esz: collection table entry size
256 * Finds and returns a collection in the ITS collection table.
261 struct its_collection *collection; in find_collection() local
263 list_for_each_entry(collection, &its->collection_list, coll_list) { in find_collection()
264 if (coll_id == collection->collection_id) in find_collection()
265 return collection; in find_collection()
384 * Needs to be called whenever either the collection for a LPIs has
385 * changed or the collection itsel
884 struct its_collection *collection; vgic_its_cmd_handle_movi() local
1018 struct its_collection *collection; vgic_its_alloc_collection() local
1035 struct its_collection *collection; vgic_its_free_collection() local
1058 vgic_its_alloc_ite(struct its_device *device, struct its_collection *collection, u32 event_id) vgic_its_alloc_ite() argument
1088 struct its_collection *collection, *new_coll = NULL; vgic_its_cmd_handle_mapi() local
1254 struct its_collection *collection; vgic_its_cmd_handle_mapc() local
1386 struct its_collection *collection; vgic_its_cmd_handle_invall() local
2232 struct its_collection *collection; vgic_its_restore_ite() local
2548 vgic_its_save_cte(struct vgic_its *its, struct its_collection *collection, gpa_t gpa, int esz) vgic_its_save_cte() argument
2568 struct its_collection *collection; vgic_its_restore_cte() local
2612 struct its_collection *collection; vgic_its_save_collection_table() local
[all...]
/kernel/linux/linux-5.10/tools/perf/
H A Dbuiltin-bench.c11 * Available benchmark collection list:
95 struct collection { struct
101 static struct collection collections[] = {
121 /* Iterate over all benchmarks within a collection: */
125 static void dump_benchmarks(struct collection *coll) in dump_benchmarks()
129 printf("\n # List of available benchmarks for collection '%s':\n\n", coll->name); in dump_benchmarks()
150 "perf bench [<common options>] <collection> <benchmark> [<options>]",
156 struct collection *coll; in print_usage()
212 static void run_collection(struct collection *coll) in run_collection()
238 struct collection *col in run_all_collections()
[all...]
/kernel/linux/linux-6.6/tools/perf/
H A Dbuiltin-bench.c11 * Available benchmark collection list:
115 struct collection { struct
121 static struct collection collections[] = {
143 /* Iterate over all benchmarks within a collection: */
147 static void dump_benchmarks(struct collection *coll) in dump_benchmarks()
151 printf("\n # List of available benchmarks for collection '%s':\n\n", coll->name); in dump_benchmarks()
172 "perf bench [<common options>] <collection> <benchmark> [<options>]",
178 struct collection *coll; in print_usage()
234 static void run_collection(struct collection *coll) in run_collection()
260 struct collection *col in run_all_collections()
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/
H A Drun_kselftest.sh25 -c | --collection COLLECTION Run all tests from COLLECTION
26 -l | --list List the available collection:test entries
45 -c | --collection)
65 for collection in $COLLECTIONS ; do
66 found="$(echo "$available" | grep "^$collection:")"
68 echo "No such collection '$collection'" >&2
89 for collection in $collections ; do
90 [ -w /dev/kmsg ] && echo "kselftest: Running tests in $collection" >> /dev/kmsg
91 tests=$(echo "$available" | grep "^$collection
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/
H A Drun_kselftest.sh25 -c | --collection COLLECTION Run all tests from COLLECTION
26 -l | --list List the available collection:test entries
47 -c | --collection)
70 for collection in $COLLECTIONS ; do
71 found="$(echo "$available" | grep "^$collection:")"
73 echo "No such collection '$collection'" >&2
94 for collection in $collections ; do
95 [ -w /dev/kmsg ] && echo "kselftest: Running tests in $collection" >> /dev/kmsg
96 tests=$(echo "$available" | grep "^$collection
[all...]
/kernel/linux/linux-5.10/drivers/hid/
H A Dhid-core.c118 * Open a collection. The type/usage is pushed on the stack.
123 struct hid_collection *collection; in open_collection() local
145 collection = kmalloc( in open_collection()
150 if (collection == NULL) { in open_collection()
151 hid_err(parser->device, "failed to reallocate collection array\n"); in open_collection()
154 memcpy(collection, parser->device->collection, in open_collection()
157 memset(collection + parser->device->collection_size, 0, in open_collection()
160 kfree(parser->device->collection); in open_collection()
161 parser->device->collection in open_collection()
203 struct hid_collection *collection = parser->device->collection; hid_lookup_collection() local
1070 struct hid_collection *collection; hid_apply_multiplier_to_field() local
[all...]
H A Dhid-sensor-hub.c76 struct hid_collection *collection = &hdev->collection[i]; in sensor_hub_get_physical_device_count() local
77 if (collection->type == HID_COLLECTION_PHYSICAL || in sensor_hub_get_physical_device_count()
78 collection->type == HID_COLLECTION_APPLICATION) in sensor_hub_get_physical_device_count()
153 * If there is a handler registered for the collection type, then in sensor_hub_register_callback()
154 * it will handle all reports for sensors in this collection. If in sensor_hub_register_callback()
156 * we want to make sure that the reports are directed to collection in sensor_hub_register_callback()
157 * handler, as this may be a fusion sensor. So add collection handlers in sensor_hub_register_callback()
480 struct hid_collection *collection = NULL; in sensor_hub_raw_event() local
504 collection in sensor_hub_raw_event()
660 struct hid_collection *collection = &hdev->collection[i]; sensor_hub_probe() local
[all...]
H A Dhid-plantronics.c155 col_page = hdev->collection[i].usage & HID_USAGE_PAGE; in plantronics_device_type()
157 plt_type = hdev->collection[i].usage; in plantronics_device_type()
161 plt_type = hdev->collection[i].usage; in plantronics_device_type()
H A Dhid-cougar.c213 if (hdev->collection->usage == COUGAR_VENDOR_USAGE) { in cougar_probe()
233 if (hdev->collection->usage == HID_GD_KEYBOARD) { in cougar_probe()
241 } else if (hdev->collection->usage == COUGAR_VENDOR_USAGE) { in cougar_probe()
/kernel/linux/linux-6.6/drivers/hid/
H A Dhid-sensor-hub.c75 struct hid_collection *collection = &hdev->collection[i]; in sensor_hub_get_physical_device_count() local
76 if (collection->type == HID_COLLECTION_PHYSICAL || in sensor_hub_get_physical_device_count()
77 collection->type == HID_COLLECTION_APPLICATION) in sensor_hub_get_physical_device_count()
152 * If there is a handler registered for the collection type, then in sensor_hub_register_callback()
153 * it will handle all reports for sensors in this collection. If in sensor_hub_register_callback()
155 * we want to make sure that the reports are directed to collection in sensor_hub_register_callback()
156 * handler, as this may be a fusion sensor. So add collection handlers in sensor_hub_register_callback()
480 struct hid_collection *collection = NULL; in sensor_hub_raw_event() local
504 collection in sensor_hub_raw_event()
660 struct hid_collection *collection = &hdev->collection[i]; sensor_hub_probe() local
[all...]
H A Dhid-core.c116 * Open a collection. The type/usage is pushed on the stack.
121 struct hid_collection *collection; in open_collection() local
143 collection = kmalloc( in open_collection()
148 if (collection == NULL) { in open_collection()
149 hid_err(parser->device, "failed to reallocate collection array\n"); in open_collection()
152 memcpy(collection, parser->device->collection, in open_collection()
155 memset(collection + parser->device->collection_size, 0, in open_collection()
158 kfree(parser->device->collection); in open_collection()
159 parser->device->collection in open_collection()
201 struct hid_collection *collection = parser->device->collection; hid_lookup_collection() local
1071 struct hid_collection *collection; hid_apply_multiplier_to_field() local
[all...]
H A Dhid-plantronics.c155 col_page = hdev->collection[i].usage & HID_USAGE_PAGE; in plantronics_device_type()
157 plt_type = hdev->collection[i].usage; in plantronics_device_type()
161 plt_type = hdev->collection[i].usage; in plantronics_device_type()
H A Dhid-cougar.c212 if (hdev->collection->usage == COUGAR_VENDOR_USAGE) { in cougar_probe()
232 if (hdev->collection->usage == HID_GD_KEYBOARD) { in cougar_probe()
240 } else if (hdev->collection->usage == COUGAR_VENDOR_USAGE) { in cougar_probe()
H A Dhid-input.c680 struct hid_collection *collection; in hidinput_field_in_collection() local
682 collection = &device->collection[field->usage->collection_index]; in hidinput_field_in_collection()
684 return collection->type == type && collection->usage == usage; in hidinput_field_in_collection()
2220 * a slot needs to have one Contact ID in the collection in hidinput_configure_usages()
2238 * if we already found a Contact ID in the collection, in hidinput_configure_usages()
2254 * current collection to be slotted. in hidinput_configure_usages()
2291 struct hid_collection *col = &hid->collection[i]; in hidinput_connect()
/kernel/linux/linux-5.10/drivers/hid/usbhid/
H A Dhiddev.c630 if (hid->collection[i].type == in hiddev_ioctl()
635 r = hid->collection[i].usage; in hiddev_ioctl()
811 cinfo.type = hid->collection[cinfo.index].type; in hiddev_ioctl()
812 cinfo.usage = hid->collection[cinfo.index].usage; in hiddev_ioctl()
813 cinfo.level = hid->collection[cinfo.index].level; in hiddev_ioctl()
884 if (hid->collection[i].type == in hiddev_connect()
886 !IS_INPUT_APPLICATION(hid->collection[i].usage)) in hiddev_connect()
H A Dhid-pidff.c839 hid->collection[i - 1].type != HID_COLLECTION_LOGICAL) in pidff_find_reports()
841 ret = pidff_check_usage(hid->collection[i - 1].usage); in pidff_find_reports()
844 "found usage 0x%02x from collection array\n", in pidff_find_reports()
/kernel/linux/linux-6.6/drivers/hid/usbhid/
H A Dhiddev.c630 if (hid->collection[i].type == in hiddev_ioctl()
635 r = hid->collection[i].usage; in hiddev_ioctl()
811 cinfo.type = hid->collection[cinfo.index].type; in hiddev_ioctl()
812 cinfo.usage = hid->collection[cinfo.index].usage; in hiddev_ioctl()
813 cinfo.level = hid->collection[cinfo.index].level; in hiddev_ioctl()
884 if (hid->collection[i].type == in hiddev_connect()
886 !IS_INPUT_APPLICATION(hid->collection[i].usage)) in hiddev_connect()
/kernel/linux/linux-5.10/scripts/
H A Dsphinx-pre-install411 "texlive-collection-fontsrecommended",
412 "texlive-collection-latex",
533 $map{"latexmk"} = "texlive-collection-basic";
540 @tex_pkgs = ( "texlive-collection-fontsextra" );
/kernel/linux/linux-5.10/tools/perf/scripts/python/
H A Dexported-sql-viewer.py1269 def __init__(self, collection, xbase=Decimal(0), ybase=Decimal(0)):
1270 self.collection = collection
1294 def __init__(self, db, collection, cpu, xbase):
1295 super(SwitchGraphData, self).__init__(collection, xbase)
1306 " AND exec_flag = " + self.collection.glb.dbref.TRUE +
1325 " WHERE machine_id = " + str(self.collection.machine_id) +
1337 start_time = self.collection.glb.StartTime(self.collection.machine_id)
1369 hregion = self.collection
[all...]
/kernel/linux/linux-6.6/tools/perf/scripts/python/
H A Dexported-sql-viewer.py1270 def __init__(self, collection, xbase=Decimal(0), ybase=Decimal(0)):
1271 self.collection = collection
1295 def __init__(self, db, collection, cpu, xbase):
1296 super(SwitchGraphData, self).__init__(collection, xbase)
1307 " AND exec_flag = " + self.collection.glb.dbref.TRUE +
1326 " WHERE machine_id = " + str(self.collection.machine_id) +
1338 start_time = self.collection.glb.StartTime(self.collection.machine_id)
1370 hregion = self.collection
[all...]
/kernel/linux/linux-6.6/scripts/
H A Dsphinx-pre-install412 "texlive-collection-fontsrecommended",
413 "texlive-collection-latex",
535 $map{"latexmk"} = "texlive-collection-basic";
542 @tex_pkgs = ( "texlive-collection-fontsextra" );
/kernel/linux/linux-5.10/include/rdma/
H A Duverbs_std_types.h132 struct ib_flow_action **collection; member
/kernel/linux/linux-6.6/include/rdma/
H A Duverbs_std_types.h132 struct ib_flow_action **collection; member
/kernel/linux/linux-6.6/drivers/gpu/drm/
H A Ddrm_edid.c4914 const u8 *collection; member
4916 /* Current Data Block index in current collection. */
4919 /* End index in current collection. */
4977 if (!iter->collection) in __cea_db_iter_current_block()
4980 db = (const struct cea_db *)&iter->collection[iter->index]; in __cea_db_iter_current_block()
5065 if (iter->collection) { in __cea_db_iter_next()
5066 /* Current collection should always be valid. */ in __cea_db_iter_next()
5069 iter->collection = NULL; in __cea_db_iter_next()
5090 iter->collection = __cea_db_iter_edid_next(iter); in __cea_db_iter_next()
5091 if (!iter->collection) in __cea_db_iter_next()
[all...]

Completed in 57 milliseconds

12