Home
last modified time | relevance | path

Searched refs:text (Results 101 – 125 of 2615) sorted by relevance

12345678910>>...105

/openbmc/linux/arch/x86/kernel/
H A Dvmlinux.lds.S103 text PT_LOAD FLAGS(5); /* R_E */
125 .text : AT(ADDR(.text) - LOAD_OFFSET) {
136 *(.text..__x86.indirect_thunk) argument
137 *(.text..__x86.return_thunk)
142 *(.text..__x86.rethunk_untrain)
151 *(.text..__x86.rethunk_safe)
156 } :text = 0xcccccccc
362 .exit.text : AT(ADDR(.exit.text) - LOAD_OFFSET) {
/openbmc/phosphor-webui/app/common/styles/layout/
H A Dheader.scss44 text-decoration: none;
73 color: $text-02;
128 text-decoration: none;
129 color: $text-02;
158 vertical-align: text-top;
170 text-align: center;
176 color: $text-02;
197 color: $text-02;
210 color: $text-02;
/openbmc/qemu/pc-bios/optionrom/
H A Dflat.lds4 .text : { *(.text) *(.text.$) }
/openbmc/u-boot/Documentation/sphinx/
H A Dkernel_include.py151 text = rawtext.expandtabs(tab_width)
153 text = rawtext
165 if text.endswith('\n'):
166 text = text[:-1]
167 tokens = NumberLines([([], text)], startline, endline)
175 literal_block += nodes.Text(text, text)
/openbmc/linux/arch/um/kernel/
H A Ddyn.lds.S37 .rel.text : { *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*) }
38 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
73 .text : {
81 *(.stub .text.* .gnu.linkonce.t.*)
/openbmc/linux/Documentation/sphinx/
H A Dkernel_include.py153 text = rawtext.expandtabs(tab_width)
155 text = rawtext
167 if text.endswith('\n'):
168 text = text[:-1]
169 tokens = NumberLines([([], text)], startline, endline)
177 literal_block += nodes.Text(text, text)
/openbmc/u-boot/arch/arm/cpu/armv8/
H A Du-boot.lds24 .text :
27 CPUDIR/start.o (.text*)
30 /* This needs to come before *(.text*) */
33 *(.text.efi_runtime*)
41 *(.text*)
60 *(._secure.text)
/openbmc/u-boot/arch/microblaze/cpu/
H A Du-boot-spl.lds15 .text ALIGN(0x4):
18 arch/microblaze/cpu/start.o (.text)
19 *(.text)
20 *(.text.*)
/openbmc/linux/arch/parisc/boot/compressed/
H A Dvmlinux.lds.S21 .head.text : {
56 .text : {
58 *(.text) argument
59 *(.text.*)
/openbmc/u-boot/scripts/kconfig/
H A Dnconf.gui.c176 int get_line_no(const char *text) in get_line_no() argument
181 if (!text) in get_line_no()
184 for (i = 0; text[i] != '\0'; i++) in get_line_no()
185 if (text[i] == '\n') in get_line_no()
195 if (!text) in get_line()
199 if (text[i] == '\n') in get_line()
201 return text+i; in get_line()
218 int total_lines = get_line_no(text); in fill_window()
552 const char *text) in show_scroll_win() argument
570 total_lines = get_line_no(text); in show_scroll_win()
[all …]
/openbmc/u-boot/arch/x86/cpu/
H A Du-boot.lds21 .text.start : { *(.text.start); }
28 *(.text.efi_runtime*)
37 .text : { *(.text*); }
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_delete_project.py57 self.assertTrue(project_name in element.text,
71 modal_header_text = self.find('#delete-project-modal .modal-header').text
76 modal_body_text = self.find('#delete-project-modal .modal-body').text
100 self.assertTrue("You have deleted 1 project:" in delete_notification.text)
101 self.assertTrue(project_name in delete_notification.text)
/openbmc/linux/drivers/thunderbolt/
H A Dproperty.c139 if (!property->value.text) { in tb_property_parse()
146 property->value.text[property->length * 4 - 1] = '\0'; in tb_property_parse()
275 kfree(property->value.text); in tb_property_free()
549 p->value.text = kzalloc(p->length * 4, GFP_KERNEL); in tb_property_copy_dir()
550 if (!p->value.text) in tb_property_copy_dir()
552 strcpy(p->value.text, property->value.text); in tb_property_copy_dir()
647 const char *text) in tb_property_add_text() argument
650 size_t size = round_up(strlen(text) + 1, 4); in tb_property_add_text()
661 property->value.text = kzalloc(size, GFP_KERNEL); in tb_property_add_text()
662 if (!property->value.text) { in tb_property_add_text()
[all …]
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/nginx/files/
H A Dnginx.conf42 …gzip_types text/plain text/css application/json application/javascript text/xml application/xml ap…
/openbmc/linux/arch/s390/boot/
H A Dvmlinux.lds.S21 .head.text : {
30 .text : {
32 *(.text) argument
33 *(.text.*)
/openbmc/linux/arch/sh/kernel/
H A Dvmlinux.lds.S29 .text : AT(ADDR(.text)) {
69 .exit.text : AT(ADDR(.exit.text)) { EXIT_TEXT }
/openbmc/linux/arch/arm64/include/asm/
H A Dmodule.lds.h4 .text.ftrace_trampoline 0 : { BYTE(0) }
16 .text.hot : { *(.text.hot) }
/openbmc/linux/lib/
H A Dts_kmp.c46 const u8 *text; in kmp_find() local
50 text_len = conf->get_next_block(consumed, &text, conf, state); in kmp_find()
57 != (icase ? toupper(text[i]) : text[i])) in kmp_find()
60 == (icase ? toupper(text[i]) : text[i])) in kmp_find()
H A Dts_bm.c59 const u8 *text, bool icase) in matchpat() argument
64 u8 t = *(text-i); in matchpat()
80 const u8 *text; in bm_find() local
87 text_len = conf->get_next_block(consumed, &text, conf, state); in bm_find()
94 shift, text[shift]); in bm_find()
97 &text[shift], icase); in bm_find()
104 bs = bm->bad_shift[text[shift-i]]; in bm_find()
/openbmc/linux/drivers/media/rc/
H A Dnuvoton-cir.h24 #define nvt_dbg(text, ...) \ argument
27 KBUILD_MODNAME ": " text "\n" , ## __VA_ARGS__)
29 #define nvt_dbg_verbose(text, ...) \ argument
32 KBUILD_MODNAME ": " text "\n" , ## __VA_ARGS__)
34 #define nvt_dbg_wake(text, ...) \ argument
37 KBUILD_MODNAME ": " text "\n" , ## __VA_ARGS__)
/openbmc/openbmc-test-automation/gui/gui_test/overview_menu/
H A Dtest_overview_menu.robot20 ${xpath_overview_page_header} //h1[contains(text(), "Overview")]
21 ${xpath_server_information_view_more_button} (//*[text()="View more"])[1]
22 ${xpath_firmware_information_view_more_button} (//*[text()="View more"])[2]
23 ${xpath_network_information_view_more_button} (//*[text()="View more"])[3]
24 ${xpath_power_information_view_more_button} (//*[text()="View more"])[4]
25 ${xpath_event_logs_view_more_button} (//*[text()="View more"])[5]
26 ${xpath_inventory_and_leds_view_more_button} (//*[text()="View more"])[6]
29 ${xpath_dumps_view_more_button} (//*[text()="View more"])[7]
296 [Documentation] Verify text under power information section in overview page.
306 [Documentation] Verify text under event logs section in overview page.
[all …]
/openbmc/linux/fs/afs/
H A Daddr_list.c64 const char *text, size_t len, in afs_parse_text_addrs() argument
71 const char *p, *end = text + len; in afs_parse_text_addrs()
76 _enter("%*.*s,%c", (int)len, (int)len, text, delim); in afs_parse_text_addrs()
83 if (delim == ':' && (memchr(text, ',', len) || !memchr(text, '.', len))) in afs_parse_text_addrs()
87 p = text; in afs_parse_text_addrs()
134 p = text; in afs_parse_text_addrs()
212 problem, p - text, (int)len, (int)len, text); in afs_parse_text_addrs()
216 problem, p - text, (int)len, (int)len, text); in afs_parse_text_addrs()
/openbmc/openbmc-test-automation/gui/test/server_health/
H A Dtest_obmc_gui_hardware_status.robot15 ${xpath_inventory_export} //a[contains(text(), "Export")]
19 ${xpath_bmc_expand} //*[text()="bmc"]//following::button[1]
20 ${xpath_system_expand} //*[text()="system"]//following::button[1]
21 ${xpath_motherboard_expand} //*[text()="motherboard"]//following::button[1]
22 ${xpath_chassis_expand} //*[text()="chassis"]//following::button[1]
45 [Documentation] Verify search text input allowed from "Hardware status"
57 [Documentation] Verify search text allowed to clear from "Hardware status"
/openbmc/qemu/tests/tcg/cris/bare/
H A Dtestutils.inc4 .text
27 .text
40 .text
83 .text
112 .text
/openbmc/u-boot/arch/arm/mach-zynq/
H A Du-boot.lds17 .text :
21 CPUDIR/start.o (.text*)
24 /* This needs to come before *(.text*) */
30 *(.text.efi_runtime*)
41 *(.text*)

12345678910>>...105