Home
last modified time | relevance | path

Searched refs:description (Results 1 – 25 of 858) sorted by relevance

12345678910>>...35

/Linux-v5.4/fs/cifs/
Dcifs_spnego.c104 char *description, *dp; in cifs_get_spnego_key() local
124 description = kzalloc(desc_len, GFP_KERNEL); in cifs_get_spnego_key()
125 if (description == NULL) in cifs_get_spnego_key()
128 dp = description; in cifs_get_spnego_key()
133 dp = description + strlen(description); in cifs_get_spnego_key()
143 dp = description + strlen(description); in cifs_get_spnego_key()
155 dp = description + strlen(description); in cifs_get_spnego_key()
159 dp = description + strlen(description); in cifs_get_spnego_key()
164 dp = description + strlen(description); in cifs_get_spnego_key()
168 dp = description + strlen(description); in cifs_get_spnego_key()
[all …]
/Linux-v5.4/fs/crypto/
Dkeyring.c74 seq_puts(m, key->description); in fscrypt_key_describe()
111 seq_puts(m, key->description); in fscrypt_user_key_describe()
133 const char *description) in search_fscrypt_keyring() argument
141 keyref = keyring_search(keyref, type, description, false); in search_fscrypt_keyring()
164 char description[FSCRYPT_FS_KEYRING_DESCRIPTION_SIZE], in format_fs_keyring_description()
167 sprintf(description, "fscrypt-%s", sb->s_id); in format_fs_keyring_description()
171 char description[FSCRYPT_MK_DESCRIPTION_SIZE], in format_mk_description()
174 sprintf(description, "%*phN", in format_mk_description()
179 char description[FSCRYPT_MK_USERS_DESCRIPTION_SIZE], in format_mk_users_keyring_description()
182 sprintf(description, "fscrypt-%*phN-users", in format_mk_users_keyring_description()
[all …]
Dkeysetup_v1.c97 char *description; in find_and_lock_process_key() local
102 description = kasprintf(GFP_NOFS, "%s%*phN", prefix, in find_and_lock_process_key()
104 if (!description) in find_and_lock_process_key()
107 key = request_key(&key_type_logon, description, NULL); in find_and_lock_process_key()
108 kfree(description); in find_and_lock_process_key()
124 key->description); in find_and_lock_process_key()
131 key->description, payload->size, min_keysize); in find_and_lock_process_key()
/Linux-v5.4/include/linux/
Dkey.h108 const char *description; member
226 char *description; member
296 const char *description,
301 const char *description,
305 const char *description,
320 const char *description, in request_key() argument
323 return request_key_tag(type, description, NULL, callout_info); in request_key()
342 #define request_key_net(type, description, net, callout_info) \ argument
343 request_key_tag(type, description, net->key_domain, callout_info);
354 #define request_key_net_rcu(type, description, net) \ argument
[all …]
/Linux-v5.4/drivers/net/usb/
Dcdc_subset.c91 .description = "ALi M5632",
113 .description = "AnchorChips/Cypress 2720",
136 .description = "Belkin, eTEK, or compatible",
161 .description = "Epson USB Device",
179 .description = "KC Technology KC-190",
206 .description = "Linux Device",
212 .description = "Yopy",
218 .description = "Boot Loader OBject",
/Linux-v5.4/arch/mips/generic/
Dboard-ocelot.its.S5 description = "MSCC Ocelot PCB123 Device Tree"; define
16 description = "MSCC Ocelot PCB120 Device Tree"; define
29 description = "Ocelot Linux kernel"; define
35 description = "Ocelot Linux kernel"; define
Dvmlinux.its.S5 description = KERNEL_NAME; define
10 description = KERNEL_NAME; define
28 description = "Generic Linux kernel"; define
Dboard-boston.its.S4 description = "img,boston Device Tree"; define
17 description = "Boston Linux kernel"; define
Dboard-ni169445.its.S4 description = "NI 169445 device tree"; define
17 description = "NI 169445 Linux Kernel"; define
Dboard-xilfpga.its.S4 description = "MIPSfpga (xilfpga) Device Tree"; define
17 description = "MIPSfpga Linux kernel"; define
/Linux-v5.4/security/keys/
Drequest_key.c379 ctx->index_key.type->name, ctx->index_key.description); in construct_alloc_key()
392 key = key_alloc(ctx->index_key.type, ctx->index_key.description, in construct_alloc_key()
559 const char *description, in request_key_and_link() argument
570 .index_key.description = description, in request_key_and_link()
571 .index_key.desc_len = strlen(description), in request_key_and_link()
574 .match_data.raw_data = description, in request_key_and_link()
585 ctx.index_key.type->name, ctx.index_key.description, in request_key_and_link()
691 const char *description, in request_key_tag() argument
701 key = request_key_and_link(type, description, domain_tag, in request_key_tag()
731 const char *description, in request_key_with_auxdata() argument
[all …]
Dkeyring.c111 if (keyring->description && in keyring_publish_name()
112 keyring->description[0] && in keyring_publish_name()
113 keyring->description[0] != '.') { in keyring_publish_name()
167 const char *description = index_key->description; in hash_key_type_and_desc() local
187 memcpy(&piece, description, n); in hash_key_type_and_desc()
188 description += n; in hash_key_type_and_desc()
219 memcpy(index_key->desc, index_key->description, n); in key_set_index_key()
290 d = index_key->description + sizeof(index_key->desc); in keyring_get_key_chunk()
317 memcmp(key->index_key.description, index_key->description, in keyring_compare_object()
368 seg_a = *(unsigned char *)(a->description + i); in keyring_diff_objects()
[all …]
Dkeyctl.c79 char type[32], *description; in SYSCALL_DEFINE5() local
92 description = NULL; in SYSCALL_DEFINE5()
94 description = strndup_user(_description, KEY_MAX_DESC_SIZE); in SYSCALL_DEFINE5()
95 if (IS_ERR(description)) { in SYSCALL_DEFINE5()
96 ret = PTR_ERR(description); in SYSCALL_DEFINE5()
99 if (!*description) { in SYSCALL_DEFINE5()
100 kfree(description); in SYSCALL_DEFINE5()
101 description = NULL; in SYSCALL_DEFINE5()
102 } else if ((description[0] == '.') && in SYSCALL_DEFINE5()
132 key_ref = key_create_or_update(keyring_ref, type, description, in SYSCALL_DEFINE5()
[all …]
Drequest_key_auth.c73 seq_puts(m, key->description); in request_key_auth_describe()
249 char description[16]; in key_get_instantiation_authkey() local
252 .index_key.description = description, in key_get_instantiation_authkey()
255 .match_data.raw_data = description, in key_get_instantiation_authkey()
263 ctx.index_key.desc_len = sprintf(description, "%x", target_id); in key_get_instantiation_authkey()
/Linux-v5.4/drivers/spi/
Dspi-loopback-test.c77 .description = "tx/rx-transfer - start of page",
91 .description = "tx/rx-transfer - crossing PAGE_SIZE",
105 .description = "tx-transfer - only",
117 .description = "rx-transfer - only",
129 .description = "two tx-transfers - alter both",
146 .description = "two tx-transfers - alter first",
163 .description = "two tx-transfers - alter second",
180 .description = "two transfers tx then rx - alter both",
196 .description = "two transfers tx then rx - alter tx",
213 .description = "two transfers tx then rx - alter rx",
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/display/panel/
Dedt,et-series.txt12 | Identifier | compatbile | description |
21 | Identifier | compatbile | description |
30 | Identifier | compatbile | description |
40 | Identifier | compatbile | description |
/Linux-v5.4/Documentation/doc-guide/
Dkernel-doc.rst64 * function_name() - Brief description of function.
70 * A longer description, with more discussion of the function function_name()
75 * The longer description may have multiple paragraphs.
82 * The return value description can also have multiple paragraphs, and should
86 The brief description following the function name may span multiple lines, and
87 ends with an argument description, a blank comment line, or the end of the
94 the short function description. Do not leave a blank line between the
95 function description and the arguments, nor between the arguments.
97 Each ``@argument:`` description may span multiple lines.
101 If the ``@argument`` description has multiple lines, the continuation
[all …]
/Linux-v5.4/drivers/acpi/acpica/
Dacapps.h57 #define ACPI_USAGE_TEXT(description) \ argument
58 printf (description);
60 #define ACPI_OPTION(name, description) \ argument
61 printf (" %-20s%s\n", name, description);
/Linux-v5.4/drivers/media/usb/pvrusb2/
Dpvrusb2-devattr.c52 .description = "WinTV PVR USB2 Model 29xxx",
86 .description = "WinTV PVR USB2 Model 24xxx",
116 .description = "Gotview USB 2.0 DVD 2",
137 .description = "Gotview USB 2.0 DVD Deluxe",
159 .description = "Terratec Grabster AV400",
215 .description = "OnAir Creator Hybrid USB tuner",
275 .description = "OnAir USB2 Hybrid USB tuner",
369 .description = "WinTV HVR-1900 Model 73xxx",
476 .description = "WinTV HVR-1950 Model 750xx",
499 .description = "WinTV HVR-1950 Model 751xx",
[all …]
/Linux-v5.4/scripts/
Dget_abi.pl107 …le, $ln, "What '$what' doesn't have a description", "") if ($what && !$data{$what}->{description});
157 $data{$nametag}->{description} .= $_;
162 if (!$data{$what}->{description}) {
196 $data{$nametag}->{description} =~ s/^\n+//;
276 my $desc = $data{$what}->{description};
342 my $desc = $data{$what}->{description};
/Linux-v5.4/Documentation/sound/soc/
Dplatform.rst59 1. Digital audio interface (DAI) description
61 3. PCM's description
65 Please see codec.rst for a description of items 1 - 4.
78 Please see DPCM.txt for a description of item 4.
/Linux-v5.4/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
Dmemx.fuc77 // description
121 // description
164 // description
215 // description
232 // description
252 // description
265 // description
360 // description
401 // description
426 // description
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/power/reset/
Dqcom,pon.txt18 qcom,pm8941-pwrkey.txt description.
20 qcom,pm8xxx-pwrkey.txt description.
22 The rest of the properties should follow the generic reboot-mode description
/Linux-v5.4/Documentation/driver-api/
Ddevice_connection.rst28 either endpoint device in the description. If the connections are defined in
32 The connection description consists of the names of the two devices with the
36 After a description exists, the devices in it can request reference to the other
37 endpoint device, or they can request the description itself.
/Linux-v5.4/Documentation/ABI/testing/
Dsysfs-bus-event_source-devices-hv_24x729 Provides the description of a particular event as provided by
30 the firmware. If firmware does not provide a description, no
40 Provides the "long" description of a particular event as
42 description, no file will be created.

12345678910>>...35