| /linux/Documentation/driver-api/ |
| H A D | infrastructure.rst | 30 :export: 33 :export: 36 :export: 42 :export: 48 :export: 54 :export: 57 :export: 63 :export: 69 :export: 75 :export: [all …]
|
| H A D | input.rst | 11 :export: 14 :export: 17 :export: 26 :export: 41 :export: 49 :export:
|
| H A D | target.rst | 20 :export: 35 :export: 42 :export: 51 :export:
|
| H A D | miscellaneous.rst | 8 :export: 11 :export: 20 :export: 48 :export:
|
| H A D | w1.rst | 32 :export: 48 :export: 64 :export:
|
| H A D | frame-buffer.rst | 35 :export: 41 :export: 50 :export: 56 :export:
|
| H A D | firewire.rst | 35 :export: 41 :export: 49 :export:
|
| H A D | message-based.rst | 8 :export: 11 :export:
|
| /linux/Documentation/devicetree/ |
| H A D | kernel-api.rst | 12 :export: 18 :export: 24 :export: 27 :export: 30 :export: 39 :export: 45 :export: 51 :export: 54 :export: 57 :export:
|
| /linux/tools/objtool/ |
| H A D | klp-diff.c | 31 struct export { struct 110 struct export *export; in read_exports() local 141 export = calloc(1, sizeof(*export)); in read_exports() 142 if (!export) { in read_exports() 147 export->mod = strdup(mod); in read_exports() 148 if (!export->mod) { in read_exports() 153 export->sym = strdup(sym); in read_exports() 154 if (!export->sym) { in read_exports() 159 hash_add(exports, &export->hash, str_hash(sym)); in read_exports() 760 static struct export *find_export(struct symbol *sym) in find_export() [all …]
|
| /linux/drivers/pwm/ |
| H A D | core.c | 1120 struct pwm_export *export = pwmexport_from_dev(pwm_dev); in pwm_from_dev() local 1122 return export->pwm; in pwm_from_dev() 1141 struct pwm_export *export = pwmexport_from_dev(pwm_dev); in period_store() local 1142 struct pwm_device *pwm = export->pwm; in period_store() 1151 guard(mutex)(&export->lock); in period_store() 1176 struct pwm_export *export = pwmexport_from_dev(pwm_dev); in duty_cycle_store() local 1177 struct pwm_device *pwm = export->pwm; in duty_cycle_store() 1186 guard(mutex)(&export->lock); in duty_cycle_store() 1211 struct pwm_export *export = pwmexport_from_dev(pwm_dev); in enable_store() local 1212 struct pwm_device *pwm = export->pwm; in enable_store() [all …]
|
| /linux/drivers/clk/bcm/ |
| H A D | clk-raspberrypi.c | 67 bool export; member 78 .export = true, 83 .export = true, 104 .export = true, 138 .export = true, 142 .export = true, 147 .export = true, 152 .export = true, 156 .export = true, 161 .export = true, [all …]
|
| /linux/Documentation/driver-api/surface_aggregator/ |
| H A D | client-api.rst | 17 :export: 26 :export: 29 :export: 38 :export:
|
| /linux/tools/perf/Documentation/ |
| H A D | db-export.txt | 10 tools/perf/scripts/python/export-to-sqlite.py 11 tools/perf/scripts/python/export-to-postgresql.py 13 which export data to a SQLite3 or PostgreSQL database. 15 The export process provides records with unique sequential ids which allows the 19 Over time it is possible to continue to expand the export while maintaining 33 4. The export scripts themselves maintain forward compatibility (i.e. an existing
|
| /linux/Documentation/ABI/obsolete/ |
| H A D | sysfs-gpio | 9 "export" operation. If a given GPIO is not claimed for use by 11 Kernel code may export it for complete or partial access. 19 /export ... asks the kernel to export a GPIO to userspace 34 /export ... asks the kernel to export a GPIO at HW offset X to userspace
|
| /linux/rust/macros/ |
| H A D | lib.rs | 15 mod export; 237 pub fn export(attr: TokenStream, input: TokenStream) -> TokenStream { 239 export::export(parse_macro_input!(input)).into() 17 mod export; global() module 232 pub fn export(attr: TokenStream, ts: TokenStream) -> TokenStream { export() function
|
| /linux/arch/um/ |
| H A D | Makefile-skas | 6 export UM_GPROF_OPT += -pg 9 export UM_GCOV_OPT += -fprofile-instr-generate -fcoverage-mapping 11 export UM_GCOV_OPT += -fprofile-arcs -ftest-coverage
|
| /linux/Documentation/livepatch/ |
| H A D | api.rst | 11 :export: 18 :export: 24 :export:
|
| /linux/Documentation/arch/sh/ |
| H A D | index.rst | 26 :export: 41 :export: 50 :export:
|
| /linux/include/uapi/ |
| H A D | Kbuild | 3 no-export-headers += linux/a.out.h 7 no-export-headers += linux/kvm.h 12 no-export-headers += linux/kvm_para.h
|
| /linux/Documentation/gpu/ |
| H A D | drm-kms.rst | 160 :export: 192 :export: 298 :export: 307 :export: 322 :export: 328 :export: 346 :export: 361 :export: 384 :export: 390 :export: [all …]
|
| /linux/drivers/crypto/inside-secure/ |
| H A D | safexcel_hash.c | 882 struct safexcel_ahash_export_state *export = out; in safexcel_ahash_export() local 884 export->len = req->len; in safexcel_ahash_export() 885 export->processed = req->processed; in safexcel_ahash_export() 887 export->digest = req->digest; in safexcel_ahash_export() 889 memcpy(export->state, req->state, req->state_sz); in safexcel_ahash_export() 890 memcpy(export->cache, req->cache, HASH_CACHE_SIZE); in safexcel_ahash_export() 898 const struct safexcel_ahash_export_state *export = in; in safexcel_ahash_import() local 905 req->len = export->len; in safexcel_ahash_import() 906 req->processed = export->processed; in safexcel_ahash_import() 908 req->digest = export->digest; in safexcel_ahash_import() [all …]
|
| /linux/Documentation/target/ |
| H A D | scripts.rst | 1 Target export device script 4 .. literalinclude:: target-export-device
|
| /linux/Documentation/driver-api/firmware/ |
| H A D | other_interfaces.rst | 8 :export: 20 :export: 51 :export:
|
| /linux/drivers/crypto/caam/ |
| H A D | caamhash.c | 1546 struct caam_export_state *export = out; in ahash_export() local 1550 memcpy(export->buf, buf, len); in ahash_export() 1551 memcpy(export->caam_ctx, state->caam_ctx, sizeof(export->caam_ctx)); in ahash_export() 1552 export->buflen = len; in ahash_export() 1553 export->update = state->update; in ahash_export() 1554 export->final = state->final; in ahash_export() 1555 export->finup = state->finup; in ahash_export() 1563 const struct caam_export_state *export = in; in ahash_import() local 1566 memcpy(state->buf, export->buf, export->buflen); in ahash_import() 1567 memcpy(state->caam_ctx, export->caam_ctx, sizeof(state->caam_ctx)); in ahash_import() [all …]
|