Home
last modified time | relevance | path

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

1234567

/linux/tools/testing/selftests/net/tcp_ao/
H A Dkey-management.c430 static struct key_collection collection; variable
454 struct test_key *key = &collection.keys[index]; in init_key_in_collection()
485 size_t key_sz = sizeof(collection.keys[0]); in init_default_key_collection()
488 free(collection.keys); in init_default_key_collection()
489 collection.keys = NULL; in init_default_key_collection()
501 collection.keys = reallocarray(collection.keys, nr_keys, key_sz); in init_default_key_collection()
502 if (!collection.keys) in init_default_key_collection()
505 memset(collection.keys, 0, nr_keys * key_sz); in init_default_key_collection()
506 collection in init_default_key_collection()
[all...]
/linux/tools/perf/
H A Dbuiltin-bench.c11 * Available benchmark collection list:
117 struct collection { struct
123 static struct collection collections[] = { argument
145 /* Iterate over all benchmarks within a collection: */
149 static void dump_benchmarks(struct collection *coll) in dump_benchmarks()
153 printf("\n # List of available benchmarks for collection '%s':\n\n", coll->name); in dump_benchmarks()
174 "perf bench [<common options>] <collection> <benchmark> [<options>]",
180 struct collection *coll; in print_usage()
236 static void run_collection(struct collection *coll) in run_collection()
262 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()
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.c148 * Open a collection. The type/usage is pushed on the stack.
153 struct hid_collection *collection; in open_collection() local
175 collection = kmalloc( in open_collection()
180 if (collection == NULL) { in open_collection()
181 hid_err(parser->device, "failed to reallocate collection array\n"); in open_collection()
184 memcpy(collection, parser->device->collection, in open_collection()
187 memset(collection + parser->device->collection_size, 0, in open_collection()
190 kfree(parser->device->collection); in open_collection()
191 parser->device->collection in open_collection()
233 struct hid_collection *collection = parser->device->collection; hid_lookup_collection() local
1117 struct hid_collection *collection; hid_apply_multiplier_to_field() local
[all...]
H A Dhid-plantronics.c169 col_page = hdev->collection[i].usage & HID_USAGE_PAGE; in plantronics_device_type()
171 plt_type = hdev->collection[i].usage; in plantronics_device_type()
175 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()
/linux/tools/testing/selftests/
H A Drun_kselftest.sh33 -c | --collection COLLECTION Run all tests from COLLECTION
34 -l | --list List the available collection:test entries
59 -c | --collection)
85 for collection in $COLLECTIONS ; do
86 found="$(echo "$available" | grep "^$collection:")"
88 echo "No such collection '$collection'" >&2
109 for collection in $collections ; do
110 [ -w /dev/kmsg ] && echo "kselftest: Running tests in $collection" >> /dev/kmsg
111 tests=$(echo "$available" | grep "^$collection
[all...]
/linux/Documentation/dev-tools/
H A Dkcov.rst6 the ``kcov`` debugfs file. Coverage collection is enabled on a task basis, and
12 (unless remove coverage collection is enabled, see below) and from some
16 See the "Comparison operands collection" section for details.
20 tasks or soft interrupts. See the "Remote coverage collection" section for
35 To enable comparison operands collection, set::
43 Coverage collection
76 /* A single fd descriptor allows coverage collection on a single
90 /* Enable coverage collection on the current thread. */
101 /* Disable coverage collection for the current thread. After this call
140 Comparison operands collection
[all...]
/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
12 SYNOPSISScheduler monitors collection global() argument
21 DESCRIPTIONScheduler monitors collection global() argument
40 OPTIONSScheduler monitors collection global() argument
45 NESTED MONITORScheduler monitors collection global() argument
56 SEE ALSOScheduler monitors collection global() argument
64 AUTHORScheduler monitors collection global() argument
H A Dindex.rst7 **rv** tool provides the interface for a collection of runtime verification
/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 DKconfig59 Enable ath12k coredump collection
62 dump collection not required choose N.
/linux/Documentation/virt/kvm/devices/
H A Darm-vgic-its.rst155 respectively. The collection table is not indexed by CollectionID, and the
156 entries in the collection are listed in no particular order.
186 - ICID is the collection ID
199 - ICID is the collection ID
211 - No collection or device table are used
/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
1682 __init__(self, collection, data, attrs, event_handler, first, parent=None) global() argument
1798 __init__(self, collection, attrs, event_handler, child_class, parent=None) global() argument
1925 __init__(self, collection, region_attributes, parent=None) global() argument
1999 __init__(self, collection, region_attributes, parent=None) global() argument
2193 __init__(self, glb, collection, parent=None) global() argument
[all...]
/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/snroc/
H A DKconfig11 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/arch/arm64/kvm/vgic/
H A Dvgic-debug.c504 if (ite->irq && ite->collection) { in vgic_its_debug_show()
507 ite->collection->target_addr, in vgic_its_debug_show()
508 ite->collection->collection_id, ite->irq->hw); in vgic_its_debug_show()

1234567