| /linux/tools/perf/util/ |
| H A D | pmu.c | 71 char *terms; member 443 zfree(&alias->terms); in perf_pmu_free_alias() 557 zfree(&data->alias->terms); in update_alias() 558 data->alias->terms = strdup(pe->event); in update_alias() 636 alias->terms = strdup(val); in perf_pmu__new_alias() 643 ret = io__getline(&io, &alias->terms, &line_len) < 0 ? -errno : 0; in perf_pmu__new_alias() 648 if (line_len >= 1 && alias->terms[line_len - 1] == '\n') in perf_pmu__new_alias() 649 alias->terms[line_len - 1] = '\0'; in perf_pmu__new_alias() 804 static int pmu_alias_terms(struct perf_pmu_alias *alias, struct list_head *terms) in pmu_alias_terms() argument 811 ret = parse_events_terms(&alias_terms, alias->terms); in pmu_alias_terms() [all …]
|
| H A D | parse-events.h | 144 struct list_head terms; member 155 struct parse_events_terms *terms; member 193 void parse_events_terms__delete(struct parse_events_terms *terms); 194 void parse_events_terms__init(struct parse_events_terms *terms); 195 void parse_events_terms__exit(struct parse_events_terms *terms); 196 int parse_events_terms(struct parse_events_terms *terms, const char *str);
|
| H A D | parse-events.c | 44 static int parse_events_terms__to_strbuf(const struct parse_events_terms *terms, struct strbuf *sb); 71 list_for_each_entry(term, &head_terms->terms, list) in get_config_str() 97 list_for_each_entry(term, &head_terms->terms, list) { in get_config_cpu() 145 list_for_each_entry(term, &config_terms->terms, list) { in fix_raw() 1112 list_for_each_entry(term, &head->terms, list) in config_attr() 1153 list_for_each_entry(term, &head_config->terms, list) { in get_config_terms() 1249 list_for_each_entry(term, &head_config->terms, list) { in get_config_chgs() 1427 list_empty(&const_parsed_terms->terms)) { in parse_events_add_pmu() 1444 if (!const_parsed_terms || list_empty(&const_parsed_terms->terms)) { in parse_events_add_pmu() 1579 list_add_tail(&term->list, &parsed_terms.terms); in parse_events_multi_pmu_add() [all …]
|
| H A D | drm_pmu.h | 23 struct parse_events_terms *terms, 25 int drm_pmu__check_alias(const struct perf_pmu *pmu, struct parse_events_terms *terms,
|
| H A D | hwmon_pmu.h | 154 struct parse_events_terms *terms, 156 int hwmon_pmu__check_alias(struct parse_events_terms *terms, struct perf_pmu_info *info,
|
| H A D | drm_pmu.c | 349 struct parse_events_terms *terms, in drm_pmu__config_terms() argument 355 list_for_each_entry(term, &terms->terms, list) { in drm_pmu__config_terms() 363 int drm_pmu__check_alias(const struct perf_pmu *pmu, struct parse_events_terms *terms, in drm_pmu__check_alias() argument 368 list_first_entry(&terms->terms, struct parse_events_term, list); in drm_pmu__check_alias()
|
| H A D | hwmon_pmu.c | 648 struct parse_events_terms *terms, in hwmon_pmu__config_terms() argument 659 list_for_each_entry(term, &terms->terms, list) { in hwmon_pmu__config_terms() 668 int hwmon_pmu__check_alias(struct parse_events_terms *terms, struct perf_pmu_info *info, in hwmon_pmu__check_alias() argument 672 list_first_entry(&terms->terms, struct parse_events_term, list); in hwmon_pmu__check_alias()
|
| H A D | parse-events.y | 478 if (parse_state->terms) { 482 parse_state->terms = $1; 495 list_add_tail(&term->list, &head->terms); 507 list_add_tail(&term->list, &head->terms);
|
| /linux/LICENSES/dual/ |
| H A D | CDDL-1.0 | 39 portions thereof with code not governed by the terms of this 59 under the terms of this License. 75 exercising rights under, and complying with all of the terms 108 third party under the terms of this License. 163 the terms of this License. You must include a copy of this License 174 governed by the terms of this License. You represent that You 190 You may not offer or impose any terms on any Covered Software in 201 as a result of warranty, support, indemnity or liability terms You 207 under the terms of this License or under the terms of a license of 208 Your choice, which may contain terms different from this License, [all …]
|
| H A D | MPL-1.1 | 47 portions thereof with code not governed by the terms of this License. 85 exercising rights under, and complying with all of the terms of, this 114 Original Code under the terms of this License. 160 governed by the terms of this License, including without limitation 162 distributed only under the terms of this License or a future version 165 distribute. You may not offer or impose any terms on any Source Code 173 made available in Source Code form under the terms of this License 241 support, indemnity or liability terms You offer. 247 the Covered Code is available under the terms of this License, 254 contain terms different from this License, provided that You are in [all …]
|
| H A D | CC-BY-4.0 | 25 terms and conditions, or any related information. Creative Commons 31 Creative Commons public licenses provide a standard set of terms and 42 irrevocable. Licensors should read and understand the terms 54 licensed material under specified terms and conditions. If 74 to be bound by the terms and conditions of this Creative Commons 78 these terms and conditions, and the Licensor grants You such rights in 80 Licensed Material available under these terms and conditions. 97 accordance with the terms and conditions of this Public License. 122 terms and conditions of this Public License, which are limited to 151 1. Subject to the terms and conditions of this Public License, [all …]
|
| H A D | Apache-2.0 | 24 "License" shall mean the terms and conditions for use, reproduction, and 80 2. Grant of Copyright License. Subject to the terms and conditions of this 87 3. Grant of Patent License. Subject to the terms and conditions of this 135 provide additional or different license terms and conditions for use, 143 the Licensor shall be under the terms and conditions of this License, 144 without any additional terms or conditions. Notwithstanding the above, 145 nothing herein shall supersede or modify the terms of any separate
|
| /linux/tools/perf/tests/ |
| H A D | pmu.c | 162 struct parse_events_terms terms; in test__pmu_format() local 169 parse_events_terms__init(&terms); in test__pmu_format() 170 if (parse_events_terms(&terms, in test__pmu_format() 178 ret = perf_pmu__config_terms(pmu, &attr, &terms, /*zero=*/false, in test__pmu_format() 200 parse_events_terms__exit(&terms); in test__pmu_format()
|
| /linux/LICENSES/deprecated/ |
| H A D | GPL-1.0 | 60 The precise terms and conditions for copying, distribution and 68 distributed under the terms of this General Public License. The 84 it, and copy and distribute such modifications under the terms of Paragraph 93 third parties under the terms of this General Public License (except 112 the other work under the scope of these terms. 115 it, under Paragraph 2) in object code or executable form under the terms of 119 source code, which must be distributed under the terms of 125 corresponding source code, to be distributed under the terms of 152 and all its terms and conditions. 157 terms and conditions. You may not impose any further restrictions on the [all …]
|
| /linux/Documentation/gpu/ |
| H A D | xen-front.rst | 9 Driver modes of operation in terms of display buffers used 13 :doc: Driver modes of operation in terms of display buffers used
|
| /linux/drivers/scsi/arm/ |
| H A D | cumana_2.c | 81 unsigned int terms; /* Terminator state */ member 128 info->terms = 1; in cumanascsi_2_terminator_ctl() 131 info->terms = 0; in cumanascsi_2_terminator_ctl() 306 VERSION, info->terms ? "n" : "ff"); in cumanascsi_2_info() 352 info->terms ? "n" : "ff"); in cumanascsi_2_show_info()
|
| /linux/LICENSES/preferred/ |
| H A D | LGPL-2.0 | 56 terms so they know their rights. 107 The precise terms and conditions for copying, distribution and modification 120 it may be distributed under the terms of this Library General Public 129 has been distributed under these terms. A "work based on the Library" 162 modifications or work under the terms of Section 1 above, provided that 171 all third parties under the terms of this License. 191 themselves, then this License, and its terms, do not apply to those 194 the Library, the distribution of the whole must be on the terms of this 208 3. You may opt to apply the terms of the ordinary GNU General Public 225 it, under Section 2) in object code or executable form under the terms [all …]
|
| H A D | LGPL-2.1 | 66 terms so they know their rights. 126 The precise terms and conditions for copying, distribution and modification 136 authorized party saying it may be distributed under the terms of this 145 has been distributed under these terms. A "work based on the Library" 178 modifications or work under the terms of Section 1 above, provided that 187 all third parties under the terms of this License. 207 themselves, then this License, and its terms, do not apply to those 210 the Library, the distribution of the whole must be on the terms of this 224 3. You may opt to apply the terms of the ordinary GNU General Public 241 it, under Section 2) in object code or executable form under the terms [all …]
|
| H A D | GPL-2.0 | 55 source code. And you must show them these terms so they know their 75 The precise terms and conditions for copying, distribution and 83 under the terms of this General Public License. The "Program", below, 111 distribute such modifications or work under the terms of Section 1 120 parties under the terms of this License. 136 themselves, then this License, and its terms, do not apply to those 139 on the Program, the distribution of the whole must be on the terms of 154 under Section 2) in object code or executable form under the terms of 158 source code, which must be distributed under the terms of Sections 165 distributed under the terms of Sections 1 and 2 above on a medium [all …]
|
| /linux/tools/usb/usbip/ |
| H A D | COPYING | 36 source code. And you must show them these terms so they know their 56 The precise terms and conditions for copying, distribution and 64 under the terms of this General Public License. The "Program", below, 92 distribute such modifications or work under the terms of Section 1 101 parties under the terms of this License. 117 themselves, then this License, and its terms, do not apply to those 120 on the Program, the distribution of the whole must be on the terms of 135 under Section 2) in object code or executable form under the terms of 139 source code, which must be distributed under the terms of Sections 146 distributed under the terms of Sections 1 and 2 above on a medium [all …]
|
| /linux/Documentation/i2c/ |
| H A D | summary.rst | 68 As mentioned above, the Linux I2C implementation historically uses the terms 71 you should be aware of these terms as well. The official wording is preferred, 78 named "slave". These terms have been obsoleted with v7 of the specification and 81 general attitude, however, is to use the inclusive terms: controller and
|
| /linux/tools/memory-model/Documentation/ |
| H A D | README | 12 If LKMM-specific terms lost you, glossary.txt might help you. 79 Brief definitions of LKMM-related terms. 83 primitives in terms of events.
|
| /linux/Documentation/userspace-api/media/ |
| H A D | index.rst | 47 under the terms of the GNU Free Documentation License, Version 1.1 or 58 under the terms of the GNU General Public License as published by the Free
|
| /linux/Documentation/filesystems/ext4/ |
| H A D | about.rst | 20 This book is licensed under the terms of the GNU Public License, v2. 30 Throughout this document, disk locations are given in terms of these
|
| /linux/arch/arm/boot/dts/nxp/imx/ |
| H A D | imx6dl-sabrelite.dts | 5 * This file is dual-licensed: you can use it either under the terms 11 * modify it under the terms of the GNU General Public License
|