/Linux-v6.1/tools/testing/selftests/ |
D | run_kselftest.sh | 24 -t | --test COLLECTION:TEST Run TEST from COLLECTION 25 -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:" | cut -d: -f2) [all …]
|
/Linux-v6.1/drivers/hid/ |
D | hid-uclogic-rdesc.c | 25 0xA1, 0x01, /* Collection (Application), */ 28 0xA0, /* Collection (Physical), */ 59 0xC0, /* End Collection, */ 60 0xC0 /* End Collection */ 70 0xA1, 0x01, /* Collection (Application), */ 73 0xA0, /* Collection (Physical), */ 104 0xC0, /* End Collection, */ 105 0xC0, /* End Collection, */ 108 0xA1, 0x01, /* Collection (Application), */ 111 0xA0, /* Collection (Physical), */ [all …]
|
D | hid-kye.c | 26 0xA1, 0x01, /* Collection (Application), */ 34 0xC0, /* End Collection, */ 37 0xA1, 0x01, /* Collection (Application), */ 40 0xA0, /* Collection (Physical), */ 73 0xC0, /* End Collection, */ 74 0xC0 /* End Collection */ 84 0xA1, 0x01, /* Collection (Application), */ 92 0xC0, /* End Collection, */ 95 0xA1, 0x01, /* Collection (Application), */ 98 0xA0, /* Collection (Physical), */ [all …]
|
D | hid-waltop.c | 49 0xA1, 0x01, /* Collection (Application), */ 52 0xA0, /* Collection (Physical), */ 89 0xC0, /* End Collection, */ 90 0xC0 /* End Collection */ 100 0xA1, 0x01, /* Collection (Application), */ 103 0xA0, /* Collection (Physical), */ 140 0xC0, /* End Collection, */ 141 0xC0 /* End Collection */ 151 0xA1, 0x01, /* Collection (Application), */ 154 0xA0, /* Collection (Physical), */ [all …]
|
D | hid-sigmamicro.c | 18 0xa1, 0x01, /* Collection (Application) 4 */ 27 0xc0, /* End Collection 24 */ 30 0xa1, 0x01, /* Collection (Application) 29 */ 40 0xc0, /* End Collection 49 */ 43 0xa1, 0x01, /* Collection (Application) 55 */ 52 0xc0, /* End Collection 75 */ 55 0xa1, 0x01, /* Collection (Application) 80 */ 73 0xc0, /* End Collection 116 */ 76 0xa1, 0x01, /* Collection (Application) 121 */ 86 0xc0, /* End Collection 141 */ [all …]
|
D | hid-sensor-hub.c | 75 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() 479 struct hid_collection *collection = NULL; in sensor_hub_raw_event() local 503 collection = &hdev->collection[ in sensor_hub_raw_event() 505 hid_dbg(hdev, "collection->usage %x\n", in sensor_hub_raw_event() [all …]
|
D | hid-lg.c | 64 0xA1, 0x01, /* Collection (Application), */ 65 0xA1, 0x02, /* Collection (Logical), */ 115 0xC0, /* End Collection, */ 116 0xA1, 0x02, /* Collection (Logical), */ 123 0xC0, /* End Collection, */ 124 0xC0 /* End Collection */ 130 0xA1, 0x01, /* Collection (Application), */ 131 0xA1, 0x02, /* Collection (Logical), */ 166 0xC0, /* End Collection, */ 167 0xA1, 0x02, /* Collection (Logical), */ [all …]
|
D | hid-maltron.c | 28 0xA1, 0x01, /* Collection (Application) */ 42 0xC0, /* End Collection */ 45 0xA1, 0x01, /* Collection (Application) */ 52 0xC0, /* End Collection */ 55 0xA1, 0x01, /* Collection (Application) */ 78 0xC0 /* End Collection */ 85 0xA1, 0x01, /* Collection (Application) */ 99 0xC0, /* End Collection */ 102 0xA1, 0x01, /* Collection (Application) */ 111 0xC0, /* End Collection */ [all …]
|
D | hid-holtek-kbd.c | 34 0xA1, 0x01, /* Collection (Application), */ 46 0xC0, /* End Collection, */ 49 0xA1, 0x01, /* Collection (Application), */ 58 0xC0, /* End Collection, */ 61 0xA1, 0x01, /* Collection (Application), */ 73 0xC0, /* End Collection, */ 76 0xA1, 0x01, /* Collection (Application), */ 86 0xC0, /* End Collection */ 91 0xA1, 0x01, /* Collection (Application), */ 102 0xC0, /* End Collection */
|
D | hid-dr.c | 148 * Usage (Joystick), ; Joystick (04h, application collection) 149 * Collection (Application), 150 * Collection (Logical), 186 * End Collection, 187 * Collection (Logical), 194 * End Collection, 195 * End Collection 205 0xA1, 0x01, /* Collection (Application), */ 206 0xA1, 0x02, /* Collection (Logical), */ 227 0xC0, /* End Collection, */ [all …]
|
D | hid-xiaomi.c | 20 0xA1, 0x01, /* Collection (Application), */ 23 0xA1, 0x00, /* Collection (Physical), */ 49 0xC0, /* End Collection, */ 50 0xC0, /* End Collection, */ 53 0xA1, 0x01, /* Collection (Application), */ 61 0xC0 /* End Collection */
|
D | hid-core.c | 121 * Open a collection. The type/usage is pushed on the stack. 126 struct hid_collection *collection; in open_collection() local 148 collection = kmalloc( in open_collection() 153 if (collection == NULL) { in open_collection() 154 hid_err(parser->device, "failed to reallocate collection array\n"); 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() [all …]
|
D | hid-vrc2.c | 22 0xA1, 0x01, // Collection (Application) 24 0xA1, 0x00, // Collection (Physical) 34 0xC0, // End Collection 38 0xC0, // End Collection
|
D | hid-pxrc.c | 23 0xA1, 0x01, // Collection (Application) 25 0xA1, 0x00, // Collection (Physical) 41 0xC0, // End Collection 42 0xC0, // End Collection
|
D | hid-viewsonic.c | 28 0xA1, 0x01, /* Collection (Application), */ 31 0xA0, /* Collection (Physical), */ 69 0xC0, /* End Collection, */ 70 0xC0 /* End Collection */
|
/Linux-v6.1/arch/arm64/kvm/vgic/ |
D | vgic-its.c | 144 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 itself got retargeted. 391 if (!its_is_collection_mapped(ite->collection)) in update_affinity_ite() [all …]
|
/Linux-v6.1/drivers/hid/amd-sfh-hid/hid_descriptor/ |
D | amd_sfh_hid_report_desc.h | 17 0xA1, 0x00, /* HID Collection (Physical) */ 27 0xA1, 0x02, /* HID collection (logical) */ 32 0xC0, /* HID end collection */ 38 0xA1, 0x02, /* HID collection(logical) */ 46 0xC0, /* HID end collection */ 52 0xA1, 0x02, /* HID collection(logical) */ 60 0xC0, /* HID end collection */ 66 0xA1, 0x02, /* HID collection(logical) */ 75 0xC0, /* HID end collection */ 121 0xA1, 0x02, /* HID end collection (logical) */ [all …]
|
/Linux-v6.1/tools/perf/ |
D | builtin-bench.c | 11 * Available benchmark collection list: 102 struct collection { struct 108 static struct collection collections[] = { argument 129 /* Iterate over all benchmarks within a collection: */ 133 static void dump_benchmarks(struct collection *coll) in dump_benchmarks() 137 printf("\n # List of available benchmarks for collection '%s':\n\n", coll->name); in dump_benchmarks() 158 "perf bench [<common options>] <collection> <benchmark> [<options>]", 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() [all …]
|
/Linux-v6.1/drivers/net/wireless/intel/iwlwifi/fw/ |
D | error-dump.h | 139 * if the dump collection was not initiated by an assert, the value is 0 141 * if the dump collection was not initiated by an assert, the value is 0 366 * @time_point: time point that caused the dump collection 499 * @FW_DBG_TRIGGER_USER: trigger log collection by user 503 * @FW_DBG_TRIGGER_FW_ASSERT: trigger log collection when the firmware asserts 504 * @FW_DBG_TRIGGER_MISSED_BEACONS: trigger log collection when beacons are 506 * @FW_DBG_TRIGGER_CHANNEL_SWITCH: trigger log collection upon channel switch. 507 * @FW_DBG_TRIGGER_FW_NOTIF: trigger log collection when the firmware sends a 509 * @FW_DBG_TRIGGER_MLME: trigger log collection upon MLME event. 510 * @FW_DBG_TRIGGER_STATS: trigger log collection upon statistics threshold. [all …]
|
/Linux-v6.1/drivers/hid/i2c-hid/ |
D | i2c-hid-dmi-quirks.c | 59 0xA1, 0x01, /* Collection (Application), */ 62 0xA1, 0x00, /* Collection (Physical), */ 80 0xC0, /* End Collection, */ 81 0xC0, /* End Collection, */ 84 0xA1, 0x01, /* Collection (Application), */ 88 0xA1, 0x02, /* Collection (Logical), */ 117 0xC0, /* End Collection, */ 120 0xA1, 0x02, /* Collection (Logical), */ 146 0xC0, /* End Collection, */ 149 0xA1, 0x02, /* Collection (Logical), */ [all …]
|
/Linux-v6.1/Documentation/dev-tools/ |
D | kcov.rst | 6 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 …]
|
/Linux-v6.1/drivers/gpu/drm/i915/ |
D | i915_deps.c | 121 * i915_deps_sync - Wait for all the fences in the dependency collection 126 * This function waits for fences in the dependency collection. If it 155 * i915_deps_add_dependency - Add a fence to the dependency collection 161 * Adds a fence to the dependency collection, and takes a reference on it. 164 * dependency collection. If the fence context is not zero and there was 171 * error. If an error was returned, the dependency collection will be 212 * collection.
|
/Linux-v6.1/fs/jffs2/ |
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-v6.1/Documentation/virt/kvm/devices/ |
D | arm-vgic-its.rst | 149 respectively. The collection table is not indexed by CollectionID, and the 150 entries in the collection are listed in no particular order. 169 Collection Table Entry (CTE):: 180 - ICID is the collection ID 193 - ICID is the collection ID 205 - No collection or device table are used
|
/Linux-v6.1/Documentation/hid/ |
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.
|