Home
last modified time | relevance | path

Searched refs:content (Results 1 - 25 of 193) sorted by relevance

12345678

/kernel/linux/linux-6.6/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-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
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
/kernel/linux/linux-5.10/Documentation/sphinx/
H A Dkernel_abi.py141 content = ViewList()
163 if new_f != f and content:
164 self.do_parse(content, node)
165 content = ViewList()
172 content.append(line, f, ln)
176 if content:
177 self.do_parse(content, node)
181 def do_parse(self, content, node):
183 with switch_source_input(self.state, content):
184 self.state.nested_parse(content,
[all...]
H A DrstFlatTable.py81 def c_span(name, rawtext, text, lineno, inliner, options=None, content=None):
86 content = content if content is not None else []
92 def r_span(name, rawtext, text, lineno, inliner, options=None, content=None):
97 content = content if content is not None else []
124 if not self.content:
126 'The "%s" directive is empty; content require
[all...]
/kernel/liteos_a/testsuites/unittest/extended/liteipc/
H A Dsmgr_demo.cpp99 static uint32_t SendCmsCmd(int fd, CmsCmdContent *content) in SendCmsCmd() argument
102 ret = ioctl(fd, IPC_CMS_CMD, content); in SendCmsCmd()
188 CmsCmdContent content; in HandleServiceRegAndGet() local
203 content.cmd = CMS_GEN_HANDLE; in HandleServiceRegAndGet()
204 content.taskID = data->taskID; in HandleServiceRegAndGet()
205 ret = SendCmsCmd(fd, &content); in HandleServiceRegAndGet()
209 if (g_serviceNameMap[content.serviceHandle].serviceName != NULL && g_serviceNameMap[content.serviceHandle].nameLen == info->nameLen) { in HandleServiceRegAndGet()
210 printf("the task has already a service named:%s\n", g_serviceNameMap[content.serviceHandle].serviceName); in HandleServiceRegAndGet()
213 (void)memcpy_s(g_serviceNameMap[content in HandleServiceRegAndGet()
[all...]
/kernel/linux/linux-6.6/Documentation/sphinx/
H A 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):
140 with switch_source_input(self.state, content):
141 self.state.nested_parse(content,
[all...]
H A DrstFlatTable.py71 def c_span(name, rawtext, text, lineno, inliner, options=None, content=None):
76 content = content if content is not None else []
82 def r_span(name, rawtext, text, lineno, inliner, options=None, content=None):
87 content = content if content is not None else []
114 if not self.content:
116 'The "%s" directive is empty; content require
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/damon/
H A 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"
/kernel/liteos_a/kernel/extended/liteipc/
H A Dhm_liteipc.c92 STATIC UINT32 LiteIpcWrite(IpcContent *content);
342 /* Only when kernenl no longer access ipc node content, can user free the ipc node */
557 IpcContent content; in SendDeathMsg() local
571 content.flag = SEND; in SendDeathMsg()
572 content.outMsg = &msg; in SendDeathMsg()
573 (void)memset_s(content.outMsg, sizeof(IpcMsg), 0, sizeof(IpcMsg)); in SendDeathMsg()
574 content.outMsg->type = MT_DEATH_NOTIFY; in SendDeathMsg()
575 content.outMsg->target.handle = ipcTaskID; in SendDeathMsg()
576 content.outMsg->target.token = serviceHandle; in SendDeathMsg()
577 content in SendDeathMsg()
952 IsValidReply(const IpcContent *content) IsValidReply() argument
971 CheckPara(IpcContent *content, UINT32 *dstTid) CheckPara() argument
1042 LiteIpcWrite(IpcContent *content) LiteIpcWrite() argument
1101 CheckReceivedMsg(IpcListNode *node, IpcContent *content, LosTaskCB *tcb) CheckReceivedMsg() argument
1151 LiteIpcRead(IpcContent *content) LiteIpcRead() argument
1211 IpcContent *content = &localContent; LiteIpcMsgHandle() local
1277 HandleCmsCmd(CmsCmdContent *content) HandleCmsCmd() argument
[all...]
/kernel/linux/linux-5.10/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 Dget_abi.pl107 my $content = $3;
127 $content =~ s/[,.;]$//;
129 push @{$symbols{$content}->{file}}, " $file:" . ($ln - 1);
132 $what .= ", " . $content;
142 $what = $content;
143 $label = $content;
146 push @labels, [($content, $label)];
149 push @{$data{$nametag}->{symbols}}, $content if ($data{$nametag}->{what});
184 $content = ' ' x length($new_tag) . $sep . $content;
[all...]
/kernel/linux/linux-6.6/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 Dget_abi.pl130 my $content = $3;
150 $content =~ s/[,.;]$//;
152 push @{$symbols{$content}->{file}}, " $file:" . ($ln - 1);
155 $what .= "\xac" . $content;
165 $what = $content;
166 $label = $content;
169 push @labels, [($content, $label)];
172 push @{$data{$nametag}->{symbols}}, $content if ($data{$nametag}->{what});
208 $content = ' ' x length($new_tag) . $sep . $content;
[all...]
/kernel/linux/linux-5.10/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()
[all...]
/kernel/linux/linux-6.6/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()
[all...]
/kernel/linux/linux-6.6/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", 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
[all...]
/kernel/linux/linux-5.10/fs/exfat/
H A Dfatent.c38 unsigned int *content) in __exfat_ent_get()
51 *content = le32_to_cpu(*(__le32 *)(&bh->b_data[off])); in __exfat_ent_get()
54 if (*content > EXFAT_BAD_CLUSTER) in __exfat_ent_get()
55 *content = EXFAT_EOF_CLUSTER; in __exfat_ent_get()
62 unsigned int content) in exfat_ent_set()
77 *fat_entry = cpu_to_le32(content); in exfat_ent_set()
85 unsigned int *content) in exfat_ent_get()
96 err = __exfat_ent_get(sb, loc, content); in exfat_ent_get()
104 if (*content == EXFAT_FREE_CLUSTER) { in exfat_ent_get()
111 if (*content in exfat_ent_get()
37 __exfat_ent_get(struct super_block *sb, unsigned int loc, unsigned int *content) __exfat_ent_get() argument
61 exfat_ent_set(struct super_block *sb, unsigned int loc, unsigned int content) exfat_ent_set() argument
84 exfat_ent_get(struct super_block *sb, unsigned int loc, unsigned int *content) exfat_ent_get() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/hisilicon/hns3/
H A Dhns3_debugfs.c440 static void hns3_dbg_fill_content(char *content, u16 len, in hns3_dbg_fill_content() argument
445 char *pos = content; in hns3_dbg_fill_content()
456 memset(content, ' ', len); in hns3_dbg_fill_content()
535 char content[HNS3_DBG_INFO_LEN]; in hns3_dump_coal_info() local
544 hns3_dbg_fill_content(content, sizeof(content), coal_info_items, in hns3_dump_coal_info()
546 *pos += scnprintf(buf + *pos, len - *pos, "%s", content); in hns3_dump_coal_info()
551 hns3_dbg_fill_content(content, sizeof(content), coal_info_items, in hns3_dump_coal_info()
554 *pos += scnprintf(buf + *pos, len - *pos, "%s", content); in hns3_dump_coal_info()
585 char content[HNS3_DBG_INFO_LEN]; hns3_dbg_tx_spare_info() local
684 char content[HNS3_DBG_INFO_LEN]; hns3_dbg_rx_queue_info() local
787 char content[HNS3_DBG_INFO_LEN]; hns3_dbg_tx_queue_info() local
838 char content[HNS3_DBG_INFO_LEN]; hns3_dbg_queue_map() local
918 char content[HNS3_DBG_INFO_LEN]; hns3_dbg_rx_bd_info() local
991 char content[HNS3_DBG_INFO_LEN]; hns3_dbg_tx_bd_info() local
1142 char content[HNS3_DBG_INFO_LEN]; hns3_dbg_page_pool_info() local
[all...]
/kernel/linux/common_modules/xpm/core/
H A Dxpm_report.c35 char content[0]; member
41 xpm_log_error("%d: %s", event->event_id, event->content); in xpm_report_security_info()
75 uint8_t *content, uint32_t content_len) in set_init_content()
79 len = snprintf(content, content_len, in set_init_content()
84 xpm_log_error("snprintf init content failed"); in set_init_content()
91 static int set_mmap_content(struct xpm_report_info *info, uint8_t *content, in set_mmap_content() argument
96 len = snprintf(content, content_len, in set_mmap_content()
111 xpm_log_error("snprintf code mmap content failed"); in set_mmap_content()
119 uint8_t *content, uint32_t content_len) in set_file_content()
123 len = snprintf(content, content_le in set_file_content()
74 set_init_content(struct xpm_report_info *info, uint8_t *content, uint32_t content_len) set_init_content() argument
118 set_file_content(struct xpm_report_info *info, uint8_t *content, uint32_t content_len) set_file_content() argument
138 set_integrity_content(struct xpm_report_info *info, uint8_t *content, uint32_t content_len) set_integrity_content() argument
[all...]
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-6.6/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()
/kernel/linux/linux-6.6/fs/exfat/
H A Dfatent.c39 unsigned int *content) in __exfat_ent_get()
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()
78 *fat_entry = cpu_to_le32(content); in exfat_ent_set()
86 unsigned int *content) in exfat_ent_get()
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 in exfat_ent_get()
38 __exfat_ent_get(struct super_block *sb, unsigned int loc, unsigned int *content) __exfat_ent_get() argument
62 exfat_ent_set(struct super_block *sb, unsigned int loc, unsigned int content) exfat_ent_set() argument
85 exfat_ent_get(struct super_block *sb, unsigned int loc, unsigned int *content) exfat_ent_get() argument
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/tc-testing/plugin-lib/
H A DvalgrindPlugin.py129 content = vfd.read()
130 def_mo = self.definitely_lost_re.search(content)
131 ind_mo = self.indirectly_lost_re.search(content)
132 pos_mo = self.possibly_lost_re.search(content)
133 nle_mo = self.non_leak_error_re.search(content)
149 res.append_failmsg(content)
/kernel/linux/linux-6.6/tools/testing/selftests/tc-testing/plugin-lib/
H A DvalgrindPlugin.py129 content = vfd.read()
130 def_mo = self.definitely_lost_re.search(content)
131 ind_mo = self.indirectly_lost_re.search(content)
132 pos_mo = self.possibly_lost_re.search(content)
133 nle_mo = self.non_leak_error_re.search(content)
149 res.append_failmsg(content)

Completed in 12 milliseconds

12345678