Home
last modified time | relevance | path

Searched full:content (Results 1 – 25 of 1127) sorted by relevance

12345678910>>...46

/linux/drivers/s390/char/
H A Dhmcdrv_cache.c25 * @content: kernel-space buffer, 4k aligned
26 * @len: size of @content cache (0 if caching disabled)
27 * @ofs: start of content within file (-1 if no cached content)
33 * read/dir requests. But content is cached only under some preconditions.
34 * Uncached content is signalled by a negative value of @ofs.
42 void *content; member
56 * hmcdrv_cache_get() - looks for file data/content in read cache
60 * in content cache (for the file/cmd specified in @ftp)
74 if ((hmcdrv_cache_file.ofs < 0) || /* has content? */ in hmcdrv_cache_get()
78 /* there seems to be cached content - calculate the maximum number in hmcdrv_cache_get()
[all …]
/linux/Documentation/sphinx-static/
H A Dtheme_overrides.css15 h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend {
43 .rst-content .highlight > pre {
48 .rst-content table.field-list th.field-name {
52 .rst-content table.field-list td.field-body {
59 /* content column
61 * RTD theme's default is 800px as max width for the content, but we have
65 .wy-nav-content{max-width: none; }
76 .rst-content table.docutils caption { text-align: left; font-size: 100%; }
84 caption, .wy-table caption, .rst-content table.field-list caption {
103 .rst-content .section ul li:last-child, .rst-content .section ul li p:last-child {
[all …]
/linux/tools/testing/selftests/filesystems/fuse/
H A Dfuse_mnt.c19 static char *content; variable
70 if (!content || content_size == 0) in test_read()
79 memcpy(buf, content + offset, size); in test_read()
98 content = realloc(content, new_size); in test_write()
102 if (!content) in test_write()
105 memcpy(content + offset, buf, size); in test_write()
116 free(content); in test_truncate()
117 content = NULL; in test_truncate()
122 content = realloc(content, size); in test_truncate()
124 if (!content) in test_truncate()
[all …]
/linux/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-dv.rst24 Content Protection System, :ref:`hdcp`) processing, allowing the
95 Configures the IT Content Type of the transmitted video. This
97 the AVI InfoFrame. The term 'IT Content' is used for content that
98 originates from a computer as opposed to content from a TV broadcast
100 the possible content types:
109 - Graphics content. Pixel data should be passed unfiltered and
112 - Photo content. The content is derived from digital still pictures.
113 The content should be passed through with minimal scaling and
116 - Cinema content.
118 - Game content. Audio and video latency should be minimized.
[all …]
/linux/drivers/gpu/drm/display/
H A Ddrm_hdcp_helper.c326 * drm_connector_attach_content_protection_property - attach content protection in DRM_ENUM_NAME_FN()
330 * @hdcp_content_type: is HDCP Content Type property needed for connector in DRM_ENUM_NAME_FN()
332 * This is used to add support for content protection on select connectors. in DRM_ENUM_NAME_FN()
333 * Content Protection is intentionally vague to allow for different underlying in DRM_ENUM_NAME_FN()
336 * When hdcp_content_type is true enum property called HDCP Content Type is in DRM_ENUM_NAME_FN()
339 * This property is used for sending the protected content's stream type in DRM_ENUM_NAME_FN()
340 * from userspace to kernel on selected connectors. Protected content provider in DRM_ENUM_NAME_FN()
341 * will decide their type of their content and declare the same to kernel. in DRM_ENUM_NAME_FN()
343 * Content type will be used during the HDCP 2.2 authentication. in DRM_ENUM_NAME_FN()
344 * Content type will be set to &drm_connector_state.hdcp_content_type. in DRM_ENUM_NAME_FN()
[all …]
/linux/tools/testing/ktest/examples/bootconfigs/
H A Dverify-functiongraph.sh8 content=`cat $file`
9 if [ "$content" != "$val" ]; then
10 echo "FAILED: $file has '$content', expected '$val'"
18 content=`cat $file | sed -ne "/^$val/p"`
19 if [ -z "$content" ]; then
41 content=`cat $file | sed -ne "/^[0 ]*$val/p"`
42 if [ -z "$content" ]; then
H A Dverify-tracing.sh8 content=`cat $file`
9 if [ "$content" != "$val" ]; then
10 echo "FAILED: $file has '$content', expected '$val'"
18 content=`cat $file | sed -ne "/^$val/p"`
19 if [ -z "$content" ]; then
41 content=`cat $file | sed -ne "/^[0 ]*$val/p"`
42 if [ -z "$content" ]; then
H A Dverify-boottrace.sh8 content=`cat $file`
9 if [ "$content" != "$val" ]; then
10 echo "FAILED: $file has '$content', expected '$val'"
18 content=`cat $file | sed -ne "/^$val/p"`
19 if [ -z "$content" ]; then
41 content=`cat $file | sed -ne "/^[0 ]*$val/p"`
42 if [ -z "$content" ]; then
/linux/tools/testing/selftests/damon/
H A D_damon_sysfs.py33 '''Returns the read content and error string. The read content is None if
183 content, err = read_file(nr_goals_file)
186 if int(content) != len(self.goals):
627 content, err = read_file(nr_targets_file)
630 if int(content) != len(self.targets):
641 content, err = read_file(nr_schemes_file)
644 if int(content) != len(self.schemes):
673 content, err = read_file(nr_contexts_file)
676 if int(content) !
[all...]
H A Dsysfs.sh12 content=$2
15 if ! echo "$content" > "$file"
17 echo "writing $content to $file failed"
26 content=$2
29 if (echo "$content" > "$file") 2> /dev/null
31 echo "writing $content to $file succeed ($fail_reason)"
/linux/scripts/
H A Dasn1_compiler.c305 char *content; member
327 //debug("cmp(%s,%s) = ", token->content, dir); in directive_compare()
329 val = memcmp(token->content, dir, clen); in directive_compare()
423 tokens[tix].content = malloc(tokens[tix].size + 1); in tokenise()
424 if (!tokens[tix].content) { in tokenise()
428 memcpy(tokens[tix].content, start, tokens[tix].size); in tokenise()
429 tokens[tix].content[tokens[tix].size] = 0; in tokenise()
434 if (islower(tokens[tix].content[0])) { in tokenise()
463 tokens[tix].content = malloc(tokens[tix].size + 1); in tokenise()
464 if (!tokens[tix].content) { in tokenise()
[all …]
H A Dinsert-sys-cert.c64 void *content; member
130 s->content = (void *)hdr + s->offset; in get_symbol_from_map()
181 s->content = (void *)hdr + s->offset; in get_symbol_from_table()
380 lsize = (unsigned long *)lsize_sym.content; in main()
381 used = (int *)used_sym.content; in main()
390 strncmp(cert_sym.content, cert, cert_size) == 0) { in main()
398 memcpy(cert_sym.content, cert, cert_size); in main()
400 memset(cert_sym.content + cert_size, in main()
/linux/Documentation/admin-guide/hw-vuln/
H A Drsb.rst226 … `Retpoline: A Branch Target Injection Mitigation <https://www.intel.com/content/www/us/en/develop…
228 …3" in `Software Techniques for Managing Speculation <https://www.amd.com/content/dam/amd/en/docume…
234 …l Volume 3: General-Purpose and System Instructions <https://www.amd.com/content/dam/amd/en/docume…
236 …tre Attacks: Exploiting Speculative Execution <https://comsec.ethz.ch/wp-content/files/ibpb_sp25.p…
238 …fer Predictions / CVE-2022-26373 / INTEL-SA-00706 <https://www.intel.com/content/www/us/en/develop…
240 …nical Guidance for Mitigating Branch Type Confusion <https://www.amd.com/content/dam/amd/en/docume…
242 … IBRS" in `Indirect Branch Restricted Speculation <https://www.intel.com/content/www/us/en/develop…
244 …re Programmer's Manual Volume 2: System Programming <https://www.amd.com/content/dam/amd/en/docume…
246 … IBRS" in `Indirect Branch Restricted Speculation <https://www.intel.com/content/www/us/en/develop…
248 …fer Predictions / CVE-2022-26373 / INTEL-SA-00706 <https://www.intel.com/content/www/us/en/develop…
[all …]
/linux/fs/exfat/
H A Dfatent.c39 unsigned int *content) in __exfat_ent_get() argument
52 *content = le32_to_cpu(*(__le32 *)(&bh->b_data[off])); in __exfat_ent_get()
55 if (*content > EXFAT_BAD_CLUSTER) in __exfat_ent_get()
56 *content = EXFAT_EOF_CLUSTER; in __exfat_ent_get()
63 unsigned int content) in exfat_ent_set() argument
78 *fat_entry = cpu_to_le32(content); in exfat_ent_set()
86 unsigned int *content) in exfat_ent_get() argument
98 err = __exfat_ent_get(sb, loc, content); in exfat_ent_get()
106 if (*content == EXFAT_FREE_CLUSTER) { in exfat_ent_get()
113 if (*content == EXFAT_BAD_CLUSTER) { in exfat_ent_get()
[all …]
/linux/crypto/asymmetric_keys/
H A Dpkcs7_parser.h24 /* Message digest - the digest of the Content Data (or NULL) */
42 * This contains the generated digest of _either_ the Content Data or
44 * the attributes contains the digest of the Content Data within it.
59 /* Content Data (or NULL) */
63 const void *data; /* Content Data (or 0) */
/linux/tools/verification/rvgen/rvgen/
H A Dgenerator.py59 content = fd.read()
62 return content
143 content = self._read_file(file_to_patch)
144 content = content.replace(marker, line + "\n" + marker)
145 self.__write_file(file_to_patch, content)
207 def __write_file(self, file_name, content): argument
213 file.write(content)
217 def _create_file(self, file_name, content): argument
221 self.__write_file(path, content)
/linux/Documentation/filesystems/nfs/
H A Drpc-cache.rst16 quite possibly very different in content and use. There is a corpus
48 It will also contain a key and some content.
81 Set the 'content' fields in 'new' from 'orig'.
133 sunrpc_cache_update to set the content for the item. A second item is
134 passed which should hold the content. If the item found by _lookup
136 saves any user of an item from worrying about content changing while
138 valid data, then the content is copied across and CACHE_VALID is set.
158 - a content.
161 should be create or updated to have the given content, and the
/linux/rust/macros/
H A Dmodule.rs40 fn emit_base(&mut self, field: &str, content: &str, builtin: bool) { in emit_base()
44 "{module}.{field}={content}\0", in emit_base()
47 content = content in emit_base()
51 format!("{field}={content}\0") in emit_base()
78 fn emit_only_builtin(&mut self, field: &str, content: &str) { in emit_only_builtin()
79 self.emit_base(field, content, true) in emit_only_builtin()
82 fn emit_only_loadable(&mut self, field: &str, content: &str) { in emit_only_loadable()
83 self.emit_base(field, content, false) in emit_only_loadable()
86 fn emit(&mut self, field: &str, content: &str) { in emit()
87 self.emit_only_builtin(field, content); in emit()
[all …]
/linux/drivers/net/wireless/realtek/rtw88/
H A Dsec.c31 u32 content; in rtw_sec_write_cam() local
50 content = ((key->keyidx & 0x3)) | in rtw_sec_write_cam()
58 content = (cam->addr[2]) | in rtw_sec_write_cam()
65 content = 0; in rtw_sec_write_cam()
69 content = (key->key[j]) | in rtw_sec_write_cam()
77 rtw_write32(rtwdev, RTW_SEC_WRITE_REG, content); in rtw_sec_write_cam()
/linux/net/batman-adv/
H A Dtvlv.c220 * batadv_tvlv_container_register() - register tvlv type, version and content
225 * @tvlv_value: tvlv container content
226 * @tvlv_value_len: tvlv container content length
229 * content is going to replace the old one.
298 * batadv_tvlv_container_ogm_append() - append tvlv container content to given
303 * content
354 * @tvlv_handler: tvlv callback function handling the tvlv content
358 * @tvlv_value: tvlv content
359 * @tvlv_value_len: tvlv content length
428 * @tvlv_value: tvlv content
[all …]
/linux/arch/riscv/include/asm/
H A Dalternative-macros.h139 * old_content: The old content which is probably replaced with new content.
140 * new_content: The new content.
144 * content will always be executed.
151 * ALTERNATIVE() to patch its customized content at the same location. In
154 * ALTERNATIVE_2() to append its customized content.
/linux/fs/cachefiles/
H A Dxattr.c24 __u8 content; /* Content presence (enum cachefiles_content) */ member
60 buf->content = object->content_info; in cachefiles_set_object_xattr()
62 buf->content = CACHEFILES_CONTENT_DIRTY; in cachefiles_set_object_xattr()
81 buf->content, in cachefiles_set_object_xattr()
90 buf->content, in cachefiles_set_object_xattr()
140 } else if (buf->content == CACHEFILES_CONTENT_DIRTY) { in cachefiles_check_auxdata()
152 buf->content, why); in cachefiles_check_auxdata()
/linux/drivers/net/wireless/realtek/rtw89/
H A Dacpi.c559 const void *content, in rtw89_acpi_sar_load_std_legacy() argument
562 const struct rtw89_acpi_sar_std_legacy *ptr = content; in rtw89_acpi_sar_load_std_legacy()
582 const void *content, in rtw89_acpi_sar_load_std_has_6ghz() argument
585 const struct rtw89_acpi_sar_std_has_6ghz *ptr = content; in rtw89_acpi_sar_load_std_has_6ghz()
603 const void *content, in rtw89_acpi_sar_load_sml_legacy() argument
606 const struct rtw89_acpi_sar_sml_legacy *ptr = content; in rtw89_acpi_sar_load_sml_legacy()
626 const void *content, in rtw89_acpi_sar_load_sml_has_6ghz() argument
629 const struct rtw89_acpi_sar_sml_has_6ghz *ptr = content; in rtw89_acpi_sar_load_sml_has_6ghz()
725 const void *content, in rtw89_acpi_geo_sar_load_hp_legacy() argument
729 const struct rtw89_acpi_geo_sar_hp_legacy *ptr = content; in rtw89_acpi_geo_sar_load_hp_legacy()
[all …]
/linux/tools/testing/selftests/tc-testing/plugin-lib/
H A DvalgrindPlugin.py130 content = vfd.read()
131 def_mo = self.definitely_lost_re.search(content)
132 ind_mo = self.indirectly_lost_re.search(content)
133 pos_mo = self.possibly_lost_re.search(content)
134 nle_mo = self.non_leak_error_re.search(content)
150 res.append_failmsg(content)
/linux/fs/afs/
H A Dmntpt.c123 const char *content; in afs_mntpt_set_params() local
132 content = afs_get_link(mntpt, d_inode(mntpt), &cleanup); in afs_mntpt_set_params()
133 if (IS_ERR(content)) { in afs_mntpt_set_params()
135 return PTR_ERR(content); in afs_mntpt_set_params()
139 if (content[size - 1] == '.') in afs_mntpt_set_params()
141 &QSTR_LEN(content, size - 1)); in afs_mntpt_set_params()

12345678910>>...46