Searched refs:license (Results 1 - 25 of 91) sorted by relevance

1234

/linux-master/include/linux/
H A Dlicense.h5 static inline int license_is_gpl_compatible(const char *license) argument
7 return (strcmp(license, "GPL") == 0
8 || strcmp(license, "GPL v2") == 0
9 || strcmp(license, "GPL and additional rights") == 0
10 || strcmp(license, "Dual BSD/GPL") == 0
11 || strcmp(license, "Dual MIT/GPL") == 0
12 || strcmp(license, "Dual MPL/GPL") == 0);
H A Dexport.h27 #define ___EXPORT_SYMBOL(sym, license, ns) \
30 .asciz license ASM_NL \
42 #define __EXPORT_SYMBOL(sym, license, ns)
46 #define __EXPORT_SYMBOL(sym, license, ns) __GENKSYMS_EXPORT_SYMBOL(sym)
50 #define __EXPORT_SYMBOL(sym, license, ns) \
51 ___EXPORT_SYMBOL(sym, license, ns)
55 #define __EXPORT_SYMBOL(sym, license, ns) \
58 asm(__stringify(___EXPORT_SYMBOL(sym, license, ns)))
63 #define _EXPORT_SYMBOL(sym, license) __EXPORT_SYMBOL(sym, license, __stringif
[all...]
H A Dpm.h377 #define _EXPORT_PM_OPS(name, license, ns) \
379 __EXPORT_SYMBOL(name, license, ns); \
382 #define _DISCARD_PM_OPS(name, license, ns) \
386 #define _EXPORT_DEV_PM_OPS(name, license, ns) _EXPORT_PM_OPS(name, license, ns)
390 #define _EXPORT_DEV_PM_OPS(name, license, ns) _DISCARD_PM_OPS(name, license, ns)
396 #define _EXPORT_DEV_SLEEP_PM_OPS(name, license, ns) _EXPORT_PM_OPS(name, license, ns)
398 #define _EXPORT_DEV_SLEEP_PM_OPS(name, license, n
[all...]
/linux-master/tools/build/feature/
H A Dtest-bpf.c36 attr.license = 0;
/linux-master/tools/testing/selftests/bpf/
H A Dtesting_helpers.h20 size_t insns_cnt, const char *license,
H A Dtesting_helpers.c324 size_t insns_cnt, const char *license,
336 return bpf_prog_load(type, NULL, license, insns, insns_cnt, &opts);
323 bpf_test_load_program(enum bpf_prog_type type, const struct bpf_insn *insns, size_t insns_cnt, const char *license, __u32 kern_version, char *log_buf, size_t log_buf_sz) argument
/linux-master/drivers/media/i2c/ccs/
H A Dccs-data.h200 * @license_length: Lenght of the license data
201 * @license: License data
222 char *license; member in struct:ccs_data_container
H A Dccs-data.c769 char *license; local
776 license = bin_alloc(bin, size);
777 if (!license)
780 memcpy(license, payload, size);
782 *__license = license;
910 rval = ccs_data_parse_license(bin, &ccsdata->license,
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dobj_name.c36 attr.license = ptr_to_u64("");
/linux-master/tools/lib/bpf/
H A Dbpf_gen_internal.h64 const char *license, struct bpf_insn *insns, size_t insn_cnt,
/linux-master/tools/testing/selftests/bpf/progs/
H A Dsyscall.c12 char _license[] SEC("license") = "GPL";
100 static char license[] = "GPL"; local
134 prog_load_attr.license = ptr_to_u64(license);
/linux-master/drivers/net/can/softing/
H A Dsofting.h69 uint16_t fw_version, hw_version, license, serial; member in struct:softing::__anon5300
/linux-master/arch/m68k/fpsp040/
H A Dsacos.S41 | For details on the license for this file, please see the
H A Dsasin.S41 | For details on the license for this file, please see the
H A Dsatanh.S48 | For details on the license for this file, please see the
H A Dsto_res.S22 | For details on the license for this file, please see the
H A Dx_ovfl.S38 | For details on the license for this file, please see the
H A Dx_unimp.S25 | For details on the license for this file, please see the
H A Dscosh.S52 | For details on the license for this file, please see the
H A Dssinh.S52 | For details on the license for this file, please see the
H A Dx_fline.S16 | For details on the license for this file, please see the
/linux-master/tools/perf/util/
H A Dsetup.py112 license='GPLv2',
/linux-master/Documentation/driver-api/media/drivers/ccs/
H A Dmk-ccs-regs74 my $license = "SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause";
78 print $fh "// $license\n$copyright$note\n" if defined $fh;
82 print $fh "/* $license */\n$copyright$note\n";
/linux-master/kernel/module/
H A Dmain.c45 #include <linux/license.h>
88 enum mod_license license; member in struct:symsearch
282 if (!fsa->gplok && syms->license == GPL_ONLY)
293 fsa->license = syms->license;
1131 if (fsa.license == GPL_ONLY)
1300 if (fsa.license != GPL_ONLY) {
1577 static void module_license_taint_check(struct module *mod, const char *license) argument
1579 if (!license)
1580 license
[all...]
/linux-master/tools/testing/selftests/net/
H A Dreuseport_bpf_numa.c91 attr.license = (unsigned long) &bpf_license;

Completed in 235 milliseconds

1234