Home
last modified time | relevance | path

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

12345678910>>...59

/linux-6.12.1/drivers/s390/char/
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-6.12.1/Documentation/sphinx-static/
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-6.12.1/Documentation/userspace-api/media/v4l/
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-6.12.1/drivers/gpu/drm/display/
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-6.12.1/drivers/net/ethernet/hisilicon/hns3/
Dhns3_debugfs.c443 static void hns3_dbg_fill_content(char *content, u16 len, in hns3_dbg_fill_content() argument
448 char *pos = content; in hns3_dbg_fill_content()
459 memset(content, ' ', len); in hns3_dbg_fill_content()
538 char content[HNS3_DBG_INFO_LEN]; in hns3_dump_coal_info() local
547 hns3_dbg_fill_content(content, sizeof(content), coal_info_items, in hns3_dump_coal_info()
549 *pos += scnprintf(buf + *pos, len - *pos, "%s", content); in hns3_dump_coal_info()
554 hns3_dbg_fill_content(content, sizeof(content), coal_info_items, in hns3_dump_coal_info()
557 *pos += scnprintf(buf + *pos, len - *pos, "%s", content); in hns3_dump_coal_info()
588 char content[HNS3_DBG_INFO_LEN]; in hns3_dbg_tx_spare_info() local
601 hns3_dbg_fill_content(content, sizeof(content), tx_spare_info_items, in hns3_dbg_tx_spare_info()
[all …]
/linux-6.12.1/tools/testing/ktest/examples/bootconfigs/
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
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
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-6.12.1/Documentation/sphinx/
Dkernel_abi.py96 content = ViewList()
118 if new_f != f and content:
119 self.do_parse(content, node)
120 content = ViewList()
130 content.append(line, f, ln)
134 if content:
135 self.do_parse(content, node)
139 def do_parse(self, content, node): argument
140 with switch_source_input(self.state, content):
141 self.state.nested_parse(content, 0, node, match_titles=1)
DrstFlatTable.py71 def c_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument
76 content = content if content is not None else []
82 def r_span(name, rawtext, text, lineno, inliner, options=None, content=None): argument
87 content = content if content is not None else []
114 if not self.content:
116 'The "%s" directive is empty; content required.' % self.name,
123 self.state.nested_parse(self.content, self.content_offset, node)
219 'Error parsing content block for the "%s" directive: '
288 cspan, rspan, content = row[-1]
289 row[-1] = (cspan + x, rspan, content)
[all …]
/linux-6.12.1/tools/testing/selftests/damon/
D_debugfs_common.sh6 content=$2
11 echo "$content" > "$file"
14 echo "writing $content to $file doesn't return $expected"
35 content=$(cat "$file")
36 if [ "$content" != "$expected" ]
38 echo "reading $file expected $expected but $content"
D_damon_sysfs.py29 '''Returns the read content and error string. The read content is None if
151 content, err = read_file(nr_goals_file)
154 if int(content) != len(self.goals):
348 content, err = read_file(nr_targets_file)
351 if int(content) != len(self.targets):
362 content, err = read_file(nr_schemes_file)
365 if int(content) != len(self.schemes):
394 content, err = read_file(nr_contexts_file)
397 if int(content) != len(self.contexts):
430 content, err = read_file(
[all …]
/linux-6.12.1/scripts/
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 …]
Dget_abi.pl131 my $content = $3;
151 $content =~ s/[,.;]$//;
153 push @{$symbols{$content}->{file}}, " $file:" . ($ln - 1);
156 $what .= "\xac" . $content;
166 $what = $content;
167 $label = $content;
170 push @labels, [($content, $label)];
173 push @{$data{$nametag}->{symbols}}, $content if ($data{$nametag}->{what});
209 $content = ' ' x length($new_tag) . $sep . $content;
210 while ($content =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {}
[all …]
/linux-6.12.1/fs/exfat/
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
97 err = __exfat_ent_get(sb, loc, content); in exfat_ent_get()
105 if (*content == EXFAT_FREE_CLUSTER) { in exfat_ent_get()
112 if (*content == EXFAT_BAD_CLUSTER) { in exfat_ent_get()
[all …]
/linux-6.12.1/rust/macros/
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", field = field, content = content) 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-6.12.1/crypto/asymmetric_keys/
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-6.12.1/Documentation/filesystems/nfs/
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-6.12.1/drivers/net/wireless/realtek/rtw88/
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-6.12.1/net/batman-adv/
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-6.12.1/arch/riscv/include/asm/
Dalternative-macros.h144 * old_content: The old content which is probably replaced with new content.
145 * new_content: The new content.
149 * content will always be executed.
156 * ALTERNATIVE() to patch its customized content at the same location. In
159 * ALTERNATIVE_2() to append its customized content.
/linux-6.12.1/fs/cachefiles/
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()
80 buf->content, in cachefiles_set_object_xattr()
88 buf->content, in cachefiles_set_object_xattr()
135 } else if (buf->content == CACHEFILES_CONTENT_DIRTY) { in cachefiles_check_auxdata()
145 buf->content, why); in cachefiles_check_auxdata()
/linux-6.12.1/tools/testing/selftests/tc-testing/plugin-lib/
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-6.12.1/include/linux/
Darm-smccc.h379 * v1.2 or above. The content of the supplied param are copied from the
381 * are updated with the content from registers on return from the HVC
393 * v1.2 or above. The content of the supplied param are copied from the
395 * are updated with the content from registers on return from the SMC
422 * The content of the supplied param are copied to registers 0 to 7 prior
423 * to the SMC instruction. The return values are updated with the content
449 * Convention. The content of the supplied param are copied to registers 0
451 * the content from register 0 to 3 on return from the HVC instruction. An
571 * The content of the supplied param are copied to registers 0 to 7 prior
572 * to the SMC instruction. The return values are updated with the content
[all …]
/linux-6.12.1/Documentation/ABI/testing/
Dsysfs-bus-coresight-devices-etm4x336 Description: (Read) Print the content of the OS Lock Status Register (0x304).
343 Description: (Read) Print the content of the Power Down Control Register
350 Description: (Read) Print the content of the Power Down Status Register
357 Description: (Read) Print the content of the SW Lock Status Register
364 Description: (Read) Print the content of the Authentication Status Register
371 Description: (Read) Print the content of the Device ID Register
378 Description: (Read) Print the content of the Device Architecture Register
386 Description: (Read) Print the content of the Device Type Register
393 Description: (Read) Print the content of the Peripheral ID0 Register
400 Description: (Read) Print the content of the Peripheral ID1 Register
[all …]

12345678910>>...59