Home
last modified time | relevance | path

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

12345

/linux/tools/testing/selftests/
H A Drun_kselftest.sh28 -c | --collection COLLECTION Run all tests from COLLECTION
29 -l | --list List the available collection:test entries
86 -c | --collection)
115 for collection in $COLLECTIONS ; do
116 found="$(echo "$available" | grep "^$collection:")"
118 echo "No such collection '$collection'" >&2
151 for collection in $collections ; do
152 [ -w /dev/kmsg ] && echo "kselftest: Running tests in $collection" >> /dev/kmsg
153 tests=$(echo "$available" | grep "^$collection
[all...]
/linux/tools/testing/selftests/net/tcp_ao/
H A Dkey-management.c405 static struct key_collection collection; in is_fips_enabled()
422 struct test_key *key = &collection.keys[index];
450 size_t key_sz = sizeof(collection.keys[0]); in make_mask()
453 free(collection.keys); in init_key_in_collection()
454 collection.keys = NULL; in init_key_in_collection()
466 collection.keys = reallocarray(collection.keys, nr_keys, key_sz); in init_key_in_collection()
467 if (!collection.keys) in init_key_in_collection()
470 memset(collection.keys, 0, nr_keys * key_sz); in init_key_in_collection()
471 collection in init_key_in_collection()
430 static struct key_collection collection; global() variable
[all...]
/linux/arch/arm64/kvm/vgic/
H A Dvgic-its.c270 struct its_collection *collection; in find_collection() local
272 list_for_each_entry(collection, &its->collection_list, coll_list) { in find_collection()
273 if (coll_id == collection->collection_id) in find_collection()
274 return collection; in find_collection()
361 if (!its_is_collection_mapped(ite->collection)) in update_affinity_ite()
364 vcpu = collection_to_vcpu(kvm, ite->collection); in update_affinity_ite()
379 if (ite->collection != coll) in update_affinity_collection()
647 if (!ite || !its_is_collection_mapped(ite->collection)) in vgic_its_resolve_lpi()
650 vcpu = collection_to_vcpu(kvm, ite->collection); in vgic_its_resolve_lpi()
810 if (ite && its_is_collection_mapped(ite->collection)) { in vgic_its_cmd_handle_discard()
[all …]
H A Dvgic-debug.c468 if (ite->irq && ite->collection) { in vgic_its_debug_show()
471 ite->collection->target_addr, in vgic_its_debug_show()
472 ite->collection->collection_id, ite->irq->hw); in vgic_its_debug_show()
/linux/tools/perf/
H A Dbuiltin-bench.c11 * Available benchmark collection list:
118 struct collection { struct
124 static const struct collection collections[] = { argument
146 /* Iterate over all benchmarks within a collection: */
150 static void dump_benchmarks(const struct collection *coll) in dump_benchmarks()
154 printf("\n # List of available benchmarks for collection '%s':\n\n", coll->name); in dump_benchmarks()
175 "perf bench [<common options>] <collection> <benchmark> [<options>]",
181 const struct collection *coll; in print_usage()
237 static void run_collection(const struct collection *coll) in run_collection()
263 const struct collection *col in run_all_collections()
[all...]
/linux/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()
534 struct hid_collection *collection = NULL; in sensor_hub_raw_event() local
560 collection = &hdev->collection[ in sensor_hub_raw_event()
563 collection->usage); in sensor_hub_raw_event()
613 if (callback && collection && callback->send_event) in sensor_hub_raw_event()
614 callback->send_event(hsdev, collection->usage, in sensor_hub_raw_event()
731 struct hid_collection *collection = &hdev->collection[i]; in sensor_hub_probe() local
733 if (collection->type == HID_COLLECTION_PHYSICAL || in sensor_hub_probe()
[all …]
H A Dhid-core.c156 struct hid_collection *collection; in open_collection() local
178 collection = kmalloc( in open_collection()
183 if (collection == NULL) { in open_collection()
187 memcpy(collection, parser->device->collection, in open_collection()
190 memset(collection + parser->device->collection_size, 0, in open_collection()
193 kfree(parser->device->collection); in open_collection()
194 parser->device->collection = collection; in open_collection()
202 collection = parser->device->collection + collection_index; in open_collection()
203 collection->type = type; in open_collection()
204 collection->usage = usage; in open_collection()
[all …]
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()
/linux/Documentation/tools/rv/
H A Drv-mon-sched.rst7 Scheduler monitors collection
24 The scheduler monitor collection is a container for several monitors to model
/linux/fs/jffs2/
H A 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/drivers/net/wireless/ath/ath12k/
H A DKconfig58 Enable ath12k coredump collection
61 dump collection not required choose N.
/linux/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()
/linux/kernel/trace/rv/monitors/sco/
H A DKconfig11 This monitor is part of the sched monitors collection.
/linux/tools/perf/scripts/python/
H A Dexported-sql-viewer.py1273 def __init__(self, collection, xbase=Decimal(0), ybase=Decimal(0)): argument
1274 self.collection = collection
1298 def __init__(self, db, collection, cpu, xbase): argument
1299 super(SwitchGraphData, self).__init__(collection, xbase)
1310 " AND exec_flag = " + self.collection.glb.dbref.TRUE +
1329 " WHERE machine_id = " + str(self.collection.machine_id) +
1341 start_time = self.collection.glb.StartTime(self.collection.machine_id)
1373 hregion = self.collection.LookupHRegion(key)
1376 self.collection.AddHRegion(key, hregion)
1682 def __init__(self, collection, data, attrs, event_handler, first, parent=None): argument
[all …]
/linux/kernel/trace/rv/monitors/snroc/
H A DKconfig11 This monitor is part of the sched monitors collection.
/linux/kernel/trace/rv/monitors/snep/
H A DKconfig12 This monitor is part of the sched monitors collection.
/linux/kernel/trace/rv/monitors/scpd/
H A DKconfig12 This monitor is part of the sched monitors collection.
/linux/kernel/trace/rv/monitors/sssw/
H A DKconfig12 This monitor is part of the sched monitors collection.
/linux/kernel/trace/rv/monitors/nrp/
H A DKconfig11 This monitor is part of the sched monitors collection.
/linux/Documentation/hid/
H A 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/kernel/trace/rv/monitors/sts/
H A DKconfig16 This monitor is part of the sched monitors collection.
/linux/Documentation/ABI/testing/
H A Dsysfs-devices-system-xen_cpu5 A collection of global/individual Xen physical cpu attributes
/linux/Documentation/admin-guide/perf/
H A Ddwc_pcie_pmu.rst13 debugging, AER error injection, and collection of statistics. To facilitate
14 collection of statistics, Synopsys DesignWare Cores PCIe controller
/linux/Documentation/dev-tools/
H A Dindex.rst5 This document is a collection of documents about development tools that can
/linux/Documentation/trace/coresight/
H A Dcoresight-tpdm.rst13 short serves as data collection component for various dataset types.

12345