Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 2386) sorted by relevance

12345678910>>...96

/openbmc/linux/scripts/gdb/linux/
H A Dinterrupts.py24 text = ""
28 return text
32 return text
35 return text
43 return text;
45 text += "%*d: " % (prec, irq)
51 text += "%10u" % (count)
61 text += " %8s" % (name)
64 text += " %*lu" % (prec, desc['irq_data']['hwirq'])
66 text += " %*s" % (prec, "")
[all …]
H A Dtimerlist.py38 text = " #{}: <{}>, {}, ".format(idx, timer, function)
39 text += "S:{:02x}\n".format(int(timer['state']))
40 text += " # expires at {}-{} nsecs [in {} to {} nsecs]\n".format(
42 return text
55 text = " .base: {}\n".format(base.address)
56 text += " .index: {}\n".format(base['index'])
58 text += " .resolution: {} nsecs\n".format(constants.LX_hrtimer_resolution)
60 text += " .get_time: {}\n".format(base['get_time'])
62 text += " .offset: {} nsecs\n".format(base['offset'])
63 text += "active timers:\n"
[all …]
/openbmc/linux/arch/xtensa/kernel/
H A Dvmlinux.lds.S88 .text :
98 SECTION_VECTOR2 (.WindowVectors.text, WINDOW_VECTORS_VADDR) argument
101 SECTION_VECTOR2 (.Level2InterruptVector.text, INTLEVEL2_VECTOR_VADDR)
104 SECTION_VECTOR2 (.Level3InterruptVector.text, INTLEVEL3_VECTOR_VADDR)
107 SECTION_VECTOR2 (.Level4InterruptVector.text, INTLEVEL4_VECTOR_VADDR)
110 SECTION_VECTOR2 (.Level5InterruptVector.text, INTLEVEL5_VECTOR_VADDR)
113 SECTION_VECTOR2 (.Level6InterruptVector.text, INTLEVEL6_VECTOR_VADDR)
115 SECTION_VECTOR2 (.DebugInterruptVector.text, DEBUG_VECTOR_VADDR)
116 SECTION_VECTOR2 (.KernelExceptionVector.text, KERNEL_VECTOR_VADDR)
117 SECTION_VECTOR2 (.UserExceptionVector.text, USER_VECTOR_VADDR)
[all …]
/openbmc/linux/lib/kunit/
H A Dassert.c80 ptr_assert->text); in kunit_ptr_not_err_assert_format()
84 ptr_assert->text, in kunit_ptr_not_err_assert_format()
92 static bool is_literal(struct kunit *test, const char *text, long long value, in is_literal() argument
100 if (strlen(text) != len) in is_literal()
108 ret = strncmp(buffer, text, len) == 0; in is_literal()
125 binary_assert->text->left_text, in kunit_binary_assert_format()
126 binary_assert->text->operation, in kunit_binary_assert_format()
127 binary_assert->text->right_text); in kunit_binary_assert_format()
128 if (!is_literal(stream->test, binary_assert->text->left_text, in kunit_binary_assert_format()
131 binary_assert->text->left_text, in kunit_binary_assert_format()
[all …]
/openbmc/qemu/scripts/
H A Dpython_qmp_updater.py33 def tmatch(template: str, text: str,
35 return re.match(template.format(padding=padding, res=res), text,
39 def find_closing_brace(text: str, start: int) -> int:
43 assert text[start] == '('
47 for i in range(start + 1, len(text)):
48 if text[i] == '(':
50 elif text[i] == ')':
58 def update(text: str) -> str:
62 m = start_reg.search(text)
64 result += text
[all …]
/openbmc/linux/drivers/s390/net/
H A Dctcm_dbug.h69 void ctcm_dbf_longtext(enum ctcm_dbf_names dbf_nix, int level, char *text, ...);
79 #define CTCM_DBF_TEXT(name, level, text) \ argument
81 debug_text_event(ctcm_dbf[CTCM_DBF_##name].id, level, text); \
90 #define CTCM_DBF_TEXT_(name, level, text...) \ argument
91 ctcm_dbf_longtext(CTCM_DBF_##name, level, text)
98 #define CTCM_DBF_DEV_NAME(cat, dev, text) \ argument
101 CTCM_FUNTAIL, dev->name, text); \
104 #define MPC_DBF_DEV_NAME(cat, dev, text) \ argument
107 CTCM_FUNTAIL, dev->name, text); \
110 #define CTCMY_DBF_DEV_NAME(cat, dev, text) \ argument
[all …]
/openbmc/linux/arch/x86/entry/vdso/
H A Dvdso-layout.lds.S39 .hash : { *(.hash) } :text
47 .dynamic : { *(.dynamic) } :text :dynamic
58 } :text
67 .note : { *(.note.*) } :text :note
69 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
70 .eh_frame : { KEEP (*(.eh_frame)) } :text
78 .text : {
79 *(.text*)
80 } :text =0x90909090,
84 .altinstructions : { *(.altinstructions) } :text
[all …]
/openbmc/linux/arch/powerpc/kernel/
H A Dvmlinux.lds.S43 text PT_LOAD FLAGS(7); /* RWX */
72 .head.text : AT(ADDR(.head.text) - LOAD_OFFSET) {
74 KEEP(*(.head.text.first_256B));
77 KEEP(*(.head.text.real_vectors));
78 *(.head.text.real_trampolines);
79 KEEP(*(.head.text.virt_vectors));
80 *(.head.text.virt_trampolines);
88 } :text
98 .text ALIGN(0) : AT(ADDR(.text) - LOAD_OFFSET) {
105 .text : AT(ADDR(.text) - LOAD_OFFSET) {
[all …]
/openbmc/linux/tools/perf/Documentation/
H A Dbuild-docdep.perl6 for my $text (<*.txt>) {
7 open I, '<', $text || die "cannot read: $text";
13 $include{$text}{$_} = 1;
24 while (my ($text, $included) = each %include) {
30 if (!exists $include{$text}{$j}) {
31 $include{$text}{$j} = 1;
41 while (my ($text, $included) = each %include) {
42 if (! exists $included{$text} &&
43 (my $base = $text) =~ s/\.txt$//) {
/openbmc/linux/arch/powerpc/platforms/44x/
H A Dppc476_modules.lds3 .text : ALIGN(4096)
5 *(.text .text.* .fixup)
7 .init.text : ALIGN(4096)
9 *(.init.text .init.text.*)
11 .exit.text : ALIGN(4096)
13 *(.exit.text .exit.text.*)
/openbmc/u-boot/tools/patman/
H A Dterminal.py30 def __init__(self, text, newline, colour): argument
31 self.text = text
37 self.text)
39 def Print(text='', newline=True, colour=None): argument
51 print_test_list.append(PrintLine(text, newline, colour))
55 text = col.Color(colour, text)
56 print(text, end='')
85 print(col.Color(line.colour, line.text), end='')
87 print(line.text, end='')
141 def Color(self, color, text, bright=True): argument
[all …]
/openbmc/linux/arch/mips/vdso/
H A Dvdso.lds.S31 .mips_abiflags : { *(.mips_abiflags) } :text :abiflags
33 .reginfo : { *(.reginfo) } :text :reginfo
35 .hash : { *(.hash) } :text
43 .note : { *(.note.*) } :text :note
45 .text : { *(.text*) } :text
50 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
51 .eh_frame : { KEEP (*(.eh_frame)) } :text
53 .dynamic : { *(.dynamic) } :text :dynamic
55 .rodata : { *(.rodata*) } :text
85 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/openbmc/linux/arch/sparc/vdso/
H A Dvdso-layout.lds.S31 .hash : { *(.hash) } :text
39 .dynamic : { *(.dynamic) } :text :dynamic
58 } :text
60 .fake_shstrtab : { *(.fake_shstrtab) } :text
63 .note : { *(.note.*) } :text :note
65 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
66 .eh_frame : { KEEP (*(.eh_frame)) } :text
74 .text : { *(.text*) } :text =0x90909090,
94 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/openbmc/linux/arch/x86/um/vdso/
H A Dvdso-layout.lds.S12 .hash : { *(.hash) } :text
20 .note : { *(.note.*) } :text :note
22 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
23 .eh_frame : { KEEP (*(.eh_frame)) } :text
25 .dynamic : { *(.dynamic) } :text :dynamic
27 .rodata : { *(.rodata*) } :text
47 .text : { *(.text*) } :text =0x90909090
61 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dctx_rewrite.c392 char *text = text_origin; in print_match_error() local
393 int middle = max_line_len(text) + 2; in print_match_error()
396 while (*pattern || *text) { in print_match_error()
402 while (*text && *text != '\n') { in print_match_error()
403 if (text == text_pos) in print_match_error()
405 fputc(*text, out); in print_match_error()
406 ++text; in print_match_error()
409 if (text == text_pos) in print_match_error()
434 if (*text) in print_match_error()
435 ++text; in print_match_error()
[all …]
/openbmc/u-boot/tools/binman/test/
H A D066_text.dts9 text {
11 text-label = "test-id";
14 type = "text";
15 text-label = "test-id2";
18 type = "text";
19 text-label = "test-id3";
23 type = "text";
24 text-label = "test-id4";
25 test-id4 = "some text";
/openbmc/u-boot/tools/buildman/
H A Dtest.py171 def assertSummary(self, text, arch, plus, boards, outcome=OUTCOME_ERR): argument
181 self.assertEqual(text, expect)
205 if line.text.strip():
217 self.assertEqual(lines[0].text, '01: %s' % commits[0][1])
220 self.assertEqual(lines[1].text, '02: %s' % commits[1][1])
223 self.assertSummary(lines[2].text, 'sandbox', 'w+', ['board4'],
225 self.assertSummary(lines[3].text, 'arm', 'w+', ['board1'],
227 self.assertSummary(lines[4].text, 'powerpc', 'w+', ['board2', 'board3'],
231 self.assertEqual(lines[5].text, 'w+%s' %
236 self.assertEqual(lines[6].text, '03: %s' % commits[2][1])
[all …]
/openbmc/linux/arch/sh/kernel/vsyscall/
H A Dvsyscall.lds.S23 .hash : { *(.hash) } :text
39 .text : { *(.text) } :text =0x90909090
40 .note : { *(.note.*) } :text :note
41 .eh_frame_hdr : { *(.eh_frame_hdr ) } :text :eh_frame_hdr
45 } :text
46 .dynamic : { *(.dynamic) } :text :dynamic
52 } :text
66 text PT_LOAD FILEHDR PHDRS FLAGS(5); /* PF_R|PF_X */
/openbmc/linux/arch/csky/kernel/vdso/
H A Dvdso.lds.S12 .hash : { *(.hash) } :text
20 .note : { *(.note.*) } :text :note
21 .dynamic : { *(.dynamic) } :text :dynamic
23 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
24 .eh_frame : { KEEP (*(.eh_frame)) } :text
29 .text : { *(.text .text.*) } :text
41 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/openbmc/linux/arch/arm/vdso/
H A Dvdso.lds.S26 .hash : { *(.hash) } :text
34 .note : { *(.note.*) } :text :note
37 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
38 .eh_frame : { KEEP (*(.eh_frame)) } :text
40 .dynamic : { *(.dynamic) } :text :dynamic
42 .rodata : { *(.rodata*) } :text
44 .text : { *(.text*) } :text =0xe7f001f2
62 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/
H A Dtest_functional_basic.py46 …m images",self.driver.find_element(By.XPATH, "//div[@class='col-md-10']").text),'Custom images inf…
53 … recipes",self.driver.find_element(By.XPATH, "//div[@class='col-md-10']").text),'The Compatible im…
60 … recipes",self.driver.find_element(By.XPATH, "//div[@class='col-md-10']").text),'The Compatible so…
67 …machines",self.driver.find_element(By.XPATH, "//div[@class='col-md-10']").text),'The Compatible ma…
74 …e layers",self.driver.find_element(By.XPATH, "//div[@class='col-md-10']").text),'The Compatible la…
81 …ariables",self.driver.find_element(By.XPATH, "//div[@class='col-md-10']").text),'The Bitbake varia…
93 …,self.driver.find_element(By.XPATH, "//span[@id='project-machine-name']").text),'The machine type …
110 …self.driver.find_element(By.XPATH, "//span[@id='project-release-title']").text), 'The project rele…
115 …self.assertTrue(re.search("3",self.driver.find_element(By.ID, "project-layers-count").text),'There…
123 if re.match ("openembedded-core", layer.text):
[all …]
/openbmc/linux/arch/loongarch/vdso/
H A Dvdso.lds.S16 .hash : { *(.hash) } :text
24 .note : { *(.note.*) } :text :note
26 .text : { *(.text*) } :text
31 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
32 .eh_frame : { KEEP (*(.eh_frame)) } :text
34 .dynamic : { *(.dynamic) } :text :dynamic
36 .rodata : { *(.rodata*) } :text
51 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/
H A Du-boot-nand.lds17 text PT_LOAD;
23 /* Read-only sections, merged into text segment: */
26 .text :
28 *(.text*)
29 } :text
35 } :text
73 .text.init : { *(.text.init) }
79 .bootpg ADDR(.text) - 0x1000 :
82 } :text = 0xffff
84 . = ADDR(.text) + CONFIG_SYS_MONITOR_LEN;
/openbmc/linux/arch/riscv/kernel/vdso/
H A Dvdso.lds.S18 .hash : { *(.hash) } :text
26 .note : { *(.note.*) } :text :note
27 .dynamic : { *(.dynamic) } :text :dynamic
29 .eh_frame_hdr : { *(.eh_frame_hdr) } :text :eh_frame_hdr
30 .eh_frame : { KEEP (*(.eh_frame)) } :text
41 .text : { *(.text .text.*) } :text
64 text PT_LOAD FLAGS(5) FILEHDR PHDRS; /* PF_R|PF_X */
/openbmc/u-boot/test/dm/
H A Dosd.c19 static void split(u8 *mem, uint size, u8 *text, u8 *colors) in split() argument
26 text[i] = p[i] / 0x100; in split()
34 u8 text[memsize / 2]; in print_mem() local
37 split(mem, memsize / 2, text, colors); in print_mem()
40 printf("%c", text[i]); in print_mem()
59 u8 text[memsize / 2]; in dm_test_osd_basics() local
72 split(mem, memsize / 2, text, colors); in dm_test_osd_basics()
74 ut_assertok(memcmp(text, " " in dm_test_osd_basics()
101 split(mem, memsize / 2, text, colors); in dm_test_osd_basics()
103 ut_assertok(memcmp(text, " " in dm_test_osd_basics()
[all …]

12345678910>>...96