/linux/tools/testing/selftests/net/tcp_ao/ |
H A D | key-management.c | 430 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.nr_keys = nr_keys; in init_default_key_collection() 592 for (i = 0; i < collection.nr_keys; i++) { in key_collection_socket() [all …]
|
/linux/arch/arm64/kvm/vgic/ |
H A D | vgic-its.c | 183 struct its_collection *collection; member 294 struct its_collection *collection; in find_collection() local 296 list_for_each_entry(collection, &its->collection_list, coll_list) { in find_collection() 297 if (coll_id == collection->collection_id) in find_collection() 298 return collection; in find_collection() 390 if (!its_is_collection_mapped(ite->collection)) in update_affinity_ite() 393 vcpu = collection_to_vcpu(kvm, ite->collection); in update_affinity_ite() 408 if (ite->collection != coll) in update_affinity_collection() 671 if (!ite || !its_is_collection_mapped(ite->collection)) in vgic_its_resolve_lpi() 674 vcpu = collection_to_vcpu(kvm, ite->collection); in vgic_its_resolve_lpi() [all …]
|
/linux/tools/perf/ |
H A D | builtin-bench.c | 11 * Available benchmark collection list: 117 struct collection { 123 static struct collection collections[] = { 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() 115 struct collection { global() struct 121 benchmarkscollection global() argument [all...] |
/linux/Documentation/dev-tools/ |
H A D | kcov.rst | 6 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 …]
|
H A D | autofdo.rst | 46 production environment for profile collection. 48 In a profile collection based on a load test, the AutoFDO collection
|
/linux/drivers/hid/ |
H A D | hid-core.c | 149 struct hid_collection *collection; in open_collection() local 171 collection = kmalloc( in open_collection() 176 if (collection == NULL) { in open_collection() 180 memcpy(collection, parser->device->collection, in open_collection() 183 memset(collection + parser->device->collection_size, 0, in open_collection() 186 kfree(parser->device->collection); in open_collection() 187 parser->device->collection = collection; in open_collection() 195 collection = parser->device->collection + collection_index; in open_collection() 196 collection->type = type; in open_collection() 197 collection->usage = usage; in open_collection() [all …]
|
H A D | hid-plantronics.c | 172 col_page = hdev->collection[i].usage & HID_USAGE_PAGE; in plantronics_device_type() 174 plt_type = hdev->collection[i].usage; in plantronics_device_type() 178 plt_type = hdev->collection[i].usage; in plantronics_device_type()
|
H A D | hid-cougar.c | 212 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/fs/jffs2/ |
H A D | README.Locking | 49 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/Documentation/virt/kvm/devices/ |
H A D | arm-vgic-its.rst | 152 respectively. The collection table is not indexed by CollectionID, and the 153 entries in the collection are listed in no particular order. 183 - ICID is the collection ID 196 - ICID is the collection ID 208 - No collection or device table are used
|
/linux/drivers/hid/usbhid/ |
H A D | hiddev.c | 630 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/tools/perf/scripts/python/ |
H A D | exported-sql-viewer.py | 1270 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/Documentation/tools/rv/ |
H A D | index.rst | 7 **rv** tool provides the interface for a collection of runtime verification
|
H A D | rv.rst | 27 The **rv** tool provides the interface for a collection of runtime
|
/linux/Documentation/hid/ |
H A D | hiddev.rst | 118 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/Documentation/ABI/testing/ |
H A D | sysfs-devices-system-xen_cpu | 5 A collection of global/individual Xen physical cpu attributes
|
H A D | sysfs-kernel-mm-memory-tiers | 4 Description: A collection of all the memory tiers allocated.
|
H A D | debugfs-driver-qat_telemetry | 21 Writing '3' to this file starts the collection of 30 Writing '0' to this file stops the collection of telemetry 143 collection of telemetry metrics for ring pair 32::
|
/linux/Documentation/trace/coresight/ |
H A D | coresight-tpdm.rst | 13 short serves as data collection component for various dataset types.
|
/linux/Documentation/driver-api/dmaengine/ |
H A D | provider.rst | 58 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 655 - Chunk: A contiguous collection of bursts 657 - Transfer: A collection of chunks (be it contiguous or not)
|
/linux/Documentation/arch/arc/ |
H A D | arc.rst | 71 - Linux kernel compilers collection: 74 - Bootlin's toolchain collection: `<https://toolchains.bootlin.com>`_
|
/linux/net/dcb/ |
H A D | Kconfig | 11 DCB is a collection of Ethernet enhancements which allow DCB capable
|
/linux/drivers/platform/x86/x86-android-tablets/ |
H A D | Kconfig | 19 With the DSDT containing a random collection of devices which may or
|
/linux/tools/verification/rv/ |
H A D | README.txt | 8 The rv tool is the interface for a collection of monitors that aim
|
/linux/Documentation/mm/ |
H A D | index.rst | 30 This is a collection of unsorted documents about the Linux memory management
|