/openbmc/linux/tools/testing/selftests/powerpc/syscalls/ |
H A D | rtas_filter.c | 165 printf("Test a permitted call, no parameters... "); in test() 187 // Test a permitted call, user-supplied size, buffer inside RMO in test() 189 printf("Test a permitted call, user-supplied size, buffer inside RMO... "); in test() 195 // Test a permitted call, user-supplied size, buffer start outside RMO in test() 197 printf("Test a permitted call, user-supplied size, buffer start outside RMO... "); in test() 203 // Test a permitted call, user-supplied size, buffer end outside RMO in test() 205 printf("Test a permitted call, user-supplied size, buffer end outside RMO... "); in test() 211 // Test a permitted call, fixed size, buffer end outside RMO in test() 213 printf("Test a permitted call, fixed size, buffer end outside RMO... "); in test()
|
/openbmc/linux/security/ |
H A D | commoncap.c | 168 * Determine whether the nominated task is permitted to trace the current 195 * @permitted: The place to record the permitted set 201 kernel_cap_t *inheritable, kernel_cap_t *permitted) in cap_capget() argument 210 *permitted = cred->cap_permitted; in cap_capget() 217 * permitted set. Returns 1 if they are limited, 0 if they are not. 236 * @permitted: A pointer to the proposed new permitted capabilities set 246 const kernel_cap_t *permitted) in cap_capset() argument 261 /* verify restrictions on target's new Permitted set */ in cap_capset() 262 if (!cap_issubset(*permitted, old->cap_permitted)) in cap_capset() 266 if (!cap_issubset(*effective, *permitted)) in cap_capset() [all …]
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | PolyForm-Noncommercial-1.0.0 | 16 in it for any permitted purpose. However, you may 27 changes and new works permitted by [Changes and New Works 44 permitted purpose. 54 Any noncommercial purpose is a permitted purpose. 62 is use for a permitted purpose. 69 or government institution is use for a permitted purpose
|
H A D | Artistic-2.0 | 6 Everyone is permitted to copy and distribute verbatim copies 17 You are always permitted to make arrangements wholly outside of this 70 (1) You are permitted to use the Standard Version and create and use 147 Package. Distributor Fees are permitted, and licensing fees for other 148 components in the aggregation are permitted. The terms of this license 152 (8) You are permitted to link Modified and Standard Versions with 198 NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL
|
H A D | GCR-docs | 4 redistribution is permitted and encouraged, but you may not 16 WARRANTY FOR THE WORK, TO THE EXTENT PERMITTED BY APPLICABLE LAW. 26 AND/OR REDISTRIBUTE THE WORK AS PERMITTED ABOVE, BE LIABLE TO YOU
|
H A D | Net-SNMP | 15 …n and use in source and binary forms, with or without modification, are permitted provided that th… 25 …n and use in source and binary forms, with or without modification, are permitted provided that th… 43 Redistribution and use in source and binary forms, with or without modification, are permitted prov… 55 …n and use in source and binary forms, with or without modification, are permitted provided that th… 65 …n and use in source and binary forms, with or without modification, are permitted provided that th… 77 Redistribution and use in source and binary forms, with or without modification, are permitted prov… 91 Redistribution and use in source and binary forms, with or without modification, are permitted prov… 101 …n and use in source and binary forms, with or without modification, are permitted provided that th…
|
H A D | PolyForm-Small-Business-1.0.0 | 16 in it for any permitted purpose. However, you may 27 changes and new works permitted by [Changes and New Works 44 permitted purpose. 60 a permitted purpose if your company has fewer than 100 total
|
H A D | Knuth-CTAN | 2 of this package and/or its individual files are permitted 4 redistribution of modifications, are also permitted, but
|
H A D | NICTA-1.0 | 26 PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS-IS" AND 35 TO THE FULL EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL 49 NICTA's liability is limited, to the full extent permitted by the
|
H A D | Wsuipa | 3 …of the files is permitted as long as the file is not modified. Modifications, and redistribution o…
|
H A D | CC-BY-3.0-AU | 79 …r otherwise agreed to by the parties in writing, and to the full extent permitted by applicable la… 89 …a. To the full extent permitted by applicable law, and except for any liability arising from contr… 93 …ed or modified, the Licensor’s liability is limited, to the full extent permitted by the applicabl… 126 This Licence constitutes the entire agreement between the parties. To the full extent permitted by … 134 …permitted by applicable law, makes no representation or warranty whatsoever in connection with the…
|
H A D | libutil-David-Nugent | 5 Redistribution and use in source and binary forms, with or without modification, is permitted provi… 11 3. This work was done expressly for inclusion into FreeBSD. Other use is permitted provided this no…
|
H A D | OpenPBS-2.3 | 20 are permitted provided that all of the following conditions are met. 23 1. Commercial and/or non-commercial use of the Software is permitted 28 2. Redistribution in any form is only permitted for non-commercial,
|
/openbmc/linux/tools/testing/selftests/bpf/verifier/ |
H A D | perf_event_sample_period.c | 2 "check bpf_perf_event_data->sample_period byte load permitted", 18 "check bpf_perf_event_data->sample_period half load permitted", 34 "check bpf_perf_event_data->sample_period word load permitted", 50 "check bpf_perf_event_data->sample_period dword load permitted",
|
H A D | ctx_skb.c | 480 "__sk_buff->hash, offset 0, byte store not permitted", 491 "__sk_buff->tc_index, offset 3, byte store not permitted", 502 "check skb->hash byte load permitted", 517 "check skb->hash byte load permitted 1", 527 "check skb->hash byte load permitted 2", 537 "check skb->hash byte load permitted 3", 624 "check __sk_buff->hash, offset 0, half store not permitted", 635 "check __sk_buff->tc_index, offset 2, half store not permitted", 646 "check skb->hash half load permitted", 661 "check skb->hash half load permitted 2", [all …]
|
/openbmc/linux/kernel/ |
H A D | capability.c | 136 * @dataptr: pointer to struct that contains the effective, permitted, 169 kdata[0].permitted = pP.val; kdata[1].permitted = pP.val >> 32; in SYSCALL_DEFINE2() 206 * @data: pointer to struct that contains the effective, permitted, 214 * I: any raised capabilities must be a subset of the old permitted 215 * P: any raised capabilities must be a subset of the old permitted 216 * E: must be set to a subset of new permitted 224 kernel_cap_t inheritable, permitted, effective; in SYSCALL_DEFINE2() local 248 permitted = mk_kernel_cap(kdata[0].permitted, kdata[1].permitted); in SYSCALL_DEFINE2() 256 &effective, &inheritable, &permitted); in SYSCALL_DEFINE2()
|
/openbmc/linux/drivers/mtd/ |
H A D | Kconfig | 87 legal - in the USA you are only permitted to use this on PCMCIA 89 permitted to copy, modify and distribute the code as you wish. Just 104 legal - in the USA you are only permitted to use this on DiskOnChip 106 permitted to copy, modify and distribute the code as you wish. Just 129 legal - in the USA you are only permitted to use this on DiskOnChip 131 permitted to copy, modify and distribute the code as you wish. Just
|
/openbmc/openbmc/meta-arm/meta-arm-bsp/custom-licenses/ |
H A D | STM-SLA0044-Rev5 | 5 … of the software or any part thereof, with or without modification, are permitted provided that th… 14 9. Redistribution and use of this software or any part thereof other than as permitted under this l… 15 …NTELLECTUAL PROPERTY RIGHTS, WHICH ARE DISCLAIMED TO THE FULLEST EXTENT PERMITTED BY LAW. IN NO EV… 16 11. EXCEPT AS EXPRESSLY PERMITTED HEREUNDER, NO LICENSE OR OTHER RIGHTS, WHETHER EXPRESS OR IMPLIED…
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-driver-hid-picolcd | 10 Writing: causes operation mode switch. Permitted values are 24 Reading/Writing: It is expressed in ms and permitted range is 37 within permitted rates.
|
H A D | sysfs-bus-event_source-devices-hv_gpci | 107 * "-EPERM" : Partition is not permitted to retrieve performance information, 139 * "-EPERM" : Partition is not permitted to retrieve performance information, 171 * "-EPERM" : Partition is not permitted to retrieve performance information, 203 * "-EPERM" : Partition is not permitted to retrieve performance information, 235 * "-EPERM" : Partition is not permitted to retrieve performance information,
|
/openbmc/linux/include/linux/ |
H A D | capability.h | 30 kernel_cap_t permitted; member 125 const kernel_cap_t permitted) in cap_raise_fs_set() argument 127 return cap_combine(a, cap_intersect(permitted, CAP_FS_SET)); in cap_raise_fs_set() 136 const kernel_cap_t permitted) in cap_raise_nfsd_set() argument 138 return cap_combine(a, cap_intersect(permitted, CAP_NFSD_SET)); in cap_raise_nfsd_set()
|
/openbmc/linux/drivers/scsi/isci/ |
H A D | remote_device.h | 30 * modification, are permitted provided that the following conditions 198 * permitted. This state is entered from the INITIAL state. This state 203 * IO operations are permitted. This state is entered from the STOPPED 249 * permitted, but existing IO operations are allowed to complete. This 254 * failed. In this state no new IO operations are permitted. This 259 * In this state no new IO operations are permitted. This state is
|
/openbmc/linux/Documentation/admin-guide/LSM/ |
H A D | Smack.rst | 95 label does not allow all of the access permitted to a process 102 the Smack rule (more below) that permitted the write access 138 would be permitted. The text will be either "1" indicating 146 would be permitted. The text will be either "1" indicating 250 otherwise be permitted, and are intended to provide additional 257 otherwise be permitted, and are intended to provide additional 313 the access permitted if it wouldn't be otherwise. Note that this 334 kind of access permitted a subject with subjectlabel on an 484 is permitted. 486 is permitted. [all …]
|
/openbmc/linux/arch/m68k/fpsp040/ |
H A D | README | 10 To the maximum extent permitted by applicable law, 17 To the maximum extent permitted by applicable law,
|
/openbmc/u-boot/Licenses/ |
H A D | r8a779x_usb3.txt | 4 Redistribution and use in binary form, without modification, are permitted 14 not permitted.
|