/linux/drivers/s390/char/ |
H A D | hmcdrv_cache.c | 25 * @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 D | theme_overrides.css | 15 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/Documentation/userspace-api/media/v4l/ |
H A D | ext-ctrls-dv.rst | 24 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/net/ethernet/hisilicon/hns3/ |
H A D | hns3_debugfs.c | 444 static void hns3_dbg_fill_content(char *content, u16 len, in hns3_dbg_fill_content() argument 449 char *pos = content; in hns3_dbg_fill_content() 460 memset(content, ' ', len); in hns3_dbg_fill_content() 539 char content[HNS3_DBG_INFO_LEN]; in hns3_dump_coal_info() local 548 hns3_dbg_fill_content(content, sizeof(content), coal_info_items, in hns3_dump_coal_info() 550 *pos += scnprintf(buf + *pos, len - *pos, "%s", content); in hns3_dump_coal_info() 555 hns3_dbg_fill_content(content, sizeof(content), coal_info_items, in hns3_dump_coal_info() 558 *pos += scnprintf(buf + *pos, len - *pos, "%s", content); in hns3_dump_coal_info() 589 char content[HNS3_DBG_INFO_LEN]; in hns3_dbg_tx_spare_info() local 602 hns3_dbg_fill_content(content, sizeof(content), tx_spare_info_items, in hns3_dbg_tx_spare_info() [all …]
|
/linux/drivers/gpu/drm/display/ |
H A D | drm_hdcp_helper.c | 326 * 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 D | verify-functiongraph.sh | 8 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 D | verify-tracing.sh | 8 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 D | verify-boottrace.sh | 8 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/scripts/ |
H A D | asn1_compiler.c | 305 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 D | insert-sys-cert.c | 64 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/tools/testing/selftests/damon/ |
H A D | _damon_sysfs.py | 33 '''Returns the read content and error string. The read content is None if 155 content, err = read_file(nr_goals_file) 158 if int(content) != len(self.goals): 352 content, err = read_file(nr_targets_file) 355 if int(content) != len(self.targets): 366 content, err = read_file(nr_schemes_file) 369 if int(content) != len(self.schemes): 398 content, err = read_file(nr_contexts_file) 401 if int(content) ! [all...] |
H A D | sysfs.sh | 10 content=$2 13 if ! echo "$content" > "$file" 15 echo "writing $content to $file failed" 24 content=$2 27 if (echo "$content" > "$file") 2> /dev/null 29 echo "writing $content to $file succeed ($fail_reason)"
|
/linux/Documentation/admin-guide/hw-vuln/ |
H A D | rsb.rst | 226 … `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 D | fatent.c | 39 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/rust/macros/ |
H A D | module.rs | 40 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/Documentation/filesystems/nfs/ |
H A D | rpc-cache.rst | 16 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/crypto/asymmetric_keys/ |
H A D | pkcs7_parser.h | 24 /* 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/drivers/net/wireless/realtek/rtw88/ |
H A D | sec.c | 31 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 D | tvlv.c | 220 * 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 D | alternative-macros.h | 139 * 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 D | xattr.c | 24 __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/Documentation/ABI/testing/ |
H A D | sysfs-bus-coresight-devices-etm4x | 336 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 …]
|
/linux/tools/testing/selftests/tc-testing/plugin-lib/ |
H A D | valgrindPlugin.py | 130 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 D | mntpt.c | 123 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() 140 ret = vfs_parse_fs_string(fc, "source", content, size - 1); in afs_mntpt_set_params()
|
/linux/tools/verification/dot2/ |
H A D | dot2k.py | 106 content = fd.read() 109 return content 286 content = self.__read_file(file_to_patch) 287 content = content.replace(marker, line + "\n" + marker) 288 self.__write_file(file_to_patch, content) 345 def __write_file(self, file_name, content): argument 351 file.write(content) 355 def __create_file(self, file_name, content): argument 359 self.__write_file(path, content)
|