Home
last modified time | relevance | path

Searched refs:collection (Results 1 – 25 of 158) sorted by relevance

1234567

/linux-6.1.9/arch/arm64/kvm/vgic/
Dvgic-its.c144 struct its_collection *collection; member
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()
391 if (!its_is_collection_mapped(ite->collection)) in update_affinity_ite()
394 vcpu = kvm_get_vcpu(kvm, ite->collection->target_addr); in update_affinity_ite()
409 if (ite->collection != coll) in update_affinity_collection()
679 if (!ite || !its_is_collection_mapped(ite->collection)) in vgic_its_resolve_lpi()
682 vcpu = kvm_get_vcpu(kvm, ite->collection->target_addr); in vgic_its_resolve_lpi()
[all …]
/linux-6.1.9/tools/perf/
Dbuiltin-bench.c102 struct collection { struct
108 static struct collection collections[] = { argument
133 static void dump_benchmarks(struct collection *coll) in dump_benchmarks()
164 struct collection *coll; in print_usage()
220 static void run_collection(struct collection *coll) in run_collection()
246 struct collection *coll; in run_all_collections()
254 struct collection *coll; in cmd_bench()
/linux-6.1.9/drivers/hid/
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()
479 struct hid_collection *collection = NULL; in sensor_hub_raw_event() local
503 collection = &hdev->collection[ in sensor_hub_raw_event()
506 collection->usage); in sensor_hub_raw_event()
540 if (callback && collection && callback->send_event) in sensor_hub_raw_event()
541 callback->send_event(hsdev, collection->usage, in sensor_hub_raw_event()
658 struct hid_collection *collection = &hdev->collection[i]; in sensor_hub_probe() local
660 if (collection->type == HID_COLLECTION_PHYSICAL || in sensor_hub_probe()
[all …]
Dhid-core.c126 struct hid_collection *collection; in open_collection() local
148 collection = kmalloc( in open_collection()
153 if (collection == NULL) { in open_collection()
157 memcpy(collection, parser->device->collection, in open_collection()
160 memset(collection + parser->device->collection_size, 0, in open_collection()
163 kfree(parser->device->collection); in open_collection()
164 parser->device->collection = collection; in open_collection()
172 collection = parser->device->collection + collection_index; in open_collection()
173 collection->type = type; in open_collection()
174 collection->usage = usage; in open_collection()
[all …]
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()
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()
/linux-6.1.9/tools/testing/selftests/
Drun_kselftest.sh25 -c | --collection COLLECTION Run all tests from COLLECTION
26 -l | --list List the available collection:test entries
68 echo "No such collection '$collection'" >&2
/linux-6.1.9/Documentation/dev-tools/
Dkcov.rst6 exported via the "kcov" debugfs file. Coverage collection is enabled on a task
35 Coverage collection
38 The following program demonstrates coverage collection from within a test
68 /* A single fd descriptor allows coverage collection on a single
82 /* Enable coverage collection on the current thread. */
93 /* Disable coverage collection for the current thread. After this call
131 Comparison operands collection
134 Comparison operands collection is similar to coverage collection:
208 Note that the kcov modes (coverage collection or comparison operands) are
211 Remote coverage collection
[all …]
Dindex.rst5 This document is a collection of documents about development tools that can
/linux-6.1.9/fs/jffs2/
DREADME.Locking49 avoid deadlocks with garbage collection -- the VFS will lock the i_sem
51 allocation may trigger garbage-collection, which may need to move a
53 VFS. If the garbage collection code were to attempt to lock the i_sem
59 mutex, which is obtained by the garbage collection code and also
94 pointer when the garbage collection thread exits. The code to kill the
133 collection code is looking at them.
/linux-6.1.9/Documentation/virt/kvm/devices/
Darm-vgic-its.rst149 respectively. The collection table is not indexed by CollectionID, and the
150 entries in the collection are listed in no particular order.
180 - ICID is the collection ID
193 - ICID is the collection ID
205 - No collection or device table are used
/linux-6.1.9/drivers/hid/usbhid/
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()
/linux-6.1.9/tools/perf/scripts/python/
Dexported-sql-viewer.py1270 def __init__(self, collection, xbase=Decimal(0), ybase=Decimal(0)): argument
1271 self.collection = collection
1295 def __init__(self, db, collection, cpu, xbase): argument
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.LookupHRegion(key)
1373 self.collection.AddHRegion(key, hregion)
1679 def __init__(self, collection, data, attrs, event_handler, first, parent=None): argument
[all …]
/linux-6.1.9/Documentation/devicetree/bindings/iio/imu/
Dadi,adis16480.yaml65 collection and processing. See Fig 14 and 15 in the datasheet.
69 pps: In Pulse Per Second (PPS) Mode, the rate of data collection and
/linux-6.1.9/Documentation/hid/
Dhiddev.rst118 application collection. If the index is invalid (greater or equal to
129 also returns the level the collection lives in the hierarchy.
132 the other fields. If the index is larger than the last collection
226 Returns the collection index associated with this usage. This
227 indicates where in the collection hierarchy this usage sits.
/linux-6.1.9/Documentation/ABI/testing/
Dsysfs-devices-system-xen_cpu5 A collection of global/individual Xen physical cpu attributes
Dsysfs-kernel-mm-memory-tiers4 Description: A collection of all the memory tiers allocated.
Dsysfs-kernel-fadump5 The /sys/kernel/fadump/* is a collection of FADump sysfs
/linux-6.1.9/net/dcb/
DKconfig11 DCB is a collection of Ethernet enhancements which allow DCB capable
/linux-6.1.9/Documentation/devicetree/bindings/soc/amlogic/
Damlogic,canvas.yaml15 A canvas is a collection of metadata that describes a pixel buffer.
/linux-6.1.9/Documentation/mm/
Dindex.rst33 This is a collection of older documents about the Linux memory management
/linux-6.1.9/Documentation/arc/
Darc.rst71 - Linux kernel compilers collection:
74 - Bootlin's toolchain collection: `<https://toolchains.bootlin.com>`_
/linux-6.1.9/Documentation/driver-api/dmaengine/
Dprovider.rst58 The latter are usually programmed using a collection of chunks to
60 over that collection, doing whatever we programmed there.
62 This collection is usually either a table or a linked list. You will
65 and whenever a DRQ will be asserted, it will go through the collection
68 Either way, the format of this collection is completely dependent on
231 deal with a single chunk to copy or a collection of them, here,
242 - A cyclic transfer is a transfer where the chunk collection will
645 - Chunk: A contiguous collection of bursts
647 - Transfer: A collection of chunks (be it contiguous or not)
/linux-6.1.9/tools/testing/selftests/livepatch/
DREADME37 See the common functions.sh file for the existing collection of utility
/linux-6.1.9/Documentation/devicetree/bindings/clock/
Dairoha,en7523-scu.yaml15 a collection of registers configuring many different aspects of the SoC.

1234567