Home
last modified time | relevance | path

Searched full:escape (Results 1 – 25 of 460) sorted by relevance

12345678910>>...19

/openbmc/linux/tools/scripts/
H A Dutilities.mak8 # nl-escape
10 # Usage: escape = $(call nl-escape[,escape])
16 nl-escape = $(if $(1),$(1),m822df3020w6a44id34bt574ctac44eb9f4n)
18 # escape-nl
20 # Usage: escaped-text = $(call escape-nl,text[,escape])
32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1))
36 # Usage: text = $(call unescape-nl,escaped-text[,escape])
38 # See escape-nl.
40 unescape-nl = $(subst $(call nl-escape,$(2)),$(newline),$(1))
42 # shell-escape-nl
[all …]
/openbmc/obmc-console/test/
H A Dtest-client-escape.c57 /* no escape code */
65 /* no escape code, multiple reads */
73 /* ssh escape in one read */
81 /* ssh escape, partial ~ is not output. */
89 /* ssh escape split into individual reads */
97 /* ssh escape, escaped. */
105 /* ssh escape, escaped ~, and not completed. */
113 /* str escape, no match */
122 /* str escape, one byte, as one read */
131 /* str escape, multiple bytes, as one read */
[all …]
/openbmc/linux/arch/x86/tools/
H A Dgen-insn-attr-x86.awk21 eid = -1 # escape id
130 # escape opcode table
134 eid = escape[ref]
141 # AVX/escape opcode table
269 if ("escape" == $2) {
275 if (ref in escape)
276 semantic_error("Redefine escape (" ref ")")
277 escape[ref] = geid
279 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")"
321 # check coprocessor escape : TODO
[all …]
/openbmc/linux/tools/arch/x86/tools/
H A Dgen-insn-attr-x86.awk21 eid = -1 # escape id
130 # escape opcode table
134 eid = escape[ref]
141 # AVX/escape opcode table
269 if ("escape" == $2) {
275 if (ref in escape)
276 semantic_error("Redefine escape (" ref ")")
277 escape[ref] = geid
279 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")"
321 # check coprocessor escape : TODO
[all …]
/openbmc/qemu/scripts/tracetool/format/
H A Dlog_stap.py39 escape = 0;
42 if escape:
43 escape = 0
45 escape = 1
47 raise Exception("Unexpected escape outside string literal")
49 elif fmt[i] == '"' and not escape:
67 escape = 0
/openbmc/linux/drivers/input/joystick/
H A Dspaceball.c54 int escape; member
132 * and end in 0x0d. It uses '^' as an escape for CR, XOFF and XON characters which
145 spaceball->escape = 0; in spaceball_interrupt()
148 if (!spaceball->escape) { in spaceball_interrupt()
149 spaceball->escape = 1; in spaceball_interrupt()
152 spaceball->escape = 0; in spaceball_interrupt()
157 if (spaceball->escape) { in spaceball_interrupt()
158 spaceball->escape = 0; in spaceball_interrupt()
163 if (spaceball->escape) in spaceball_interrupt()
164 spaceball->escape = 0; in spaceball_interrupt()
/openbmc/fb-ipmi-oem/include/
H A Dusb-dbg.hpp50 #define ESCAPE "\x1B" macro
51 #define ESC_BAT ESCAPE "B"
52 #define ESC_MCU_BL_VER ESCAPE "U"
53 #define ESC_MCU_RUN_VER ESCAPE "R"
54 #define ESC_ALT ESCAPE "[5;7m"
55 #define ESC_RST ESCAPE "[m"
/openbmc/linux/tools/include/nolibc/
H A Dstdio.h219 char escape, lpref, c; in vfprintf() local
226 written = ofs = escape = lpref = 0; in vfprintf()
230 if (escape) { in vfprintf()
231 /* we're in an escape sequence, ofs == 1 */ in vfprintf()
232 escape = 0; in vfprintf()
287 /* long format prefix, maintain the escape */ in vfprintf()
290 escape = 1; in vfprintf()
297 /* not an escape sequence */ in vfprintf()
299 /* flush pending data on escape or end */ in vfprintf()
300 escape = 1; in vfprintf()
/openbmc/linux/tools/testing/selftests/tc-testing/
H A DTdcResults.py110 from xml.sax.saxutils import escape
114 xunit += '\t\t<testcase classname=\"{}\" '.format(escape(t.test_id))
115 xunit += 'name=\"{}\">\n'.format(escape(t.test_name))
121 xunit += '\t{}\n'.format(escape(step))
122 xunit += 'FAILURE: {}\n'.format(escape(t.failmsg))
125 xunit += '\t\t\t<error>\n{}\n'.format(escape(t.errormsg))
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/liburi/liburi-perl/
H A D0001-Skip-TODO-test-cases-that-fail.patch12 t/escape-char.t | 20 ++++++++++----------
17 diff --git a/t/escape-char.t b/t/escape-char.t
19 --- a/t/escape-char.t
20 +++ b/t/escape-char.t
30 - local $TODO = 'URI::Escape::escape_char misunderstands utf8';
40 +# local $TODO = 'URI::Escape::escape_char misunderstands utf8';
/openbmc/openbmc-test-automation/lib/
H A Descape.tcl3 # This file provides many valuable quote and metachar escape processing procedures.
8 # Do a bash-style escape of all single quotes in the buffer and return the result.
10 …ash, if you wish to have a single quote (i.e. apostrophe) inside single quotes, you must escape it.
37 # preserve a bash single quote escape sequence: '\''
117 # Escape every regex metacharacter found in buffer and return the result.
/openbmc/qemu/docs/system/
H A Dmux-chardev.rst.inc3 commands are available via an escape sequence. These key sequences all
4 start with an escape character, which is Ctrl-a by default, but can be
27 Send the escape character to the frontend
/openbmc/u-boot/drivers/video/
H A Dvidconsole-uclass.c206 * Process a character while accumulating an escape string. Chars are
207 * accumulated into escape_buf until the end of escape sequence is
226 priv->escape = 0; in vidconsole_escape_char()
235 priv->escape = 0; in vidconsole_escape_char()
248 * Escape sequences are terminated by a letter, so keep in vidconsole_escape_char()
255 * clear escape mode first, otherwise things will get highly in vidconsole_escape_char()
259 priv->escape = 0; in vidconsole_escape_char()
384 debug("unrecognized escape sequence: %*s\n", in vidconsole_escape_char()
392 priv->escape = 0; in vidconsole_escape_char()
400 if (priv->escape) { in vidconsole_put_char()
[all …]
/openbmc/u-boot/include/
H A Dvideo_console.h57 * @escape: TRUE if currently accumulating an ANSI escape sequence
58 * @escape_len: Length of accumulated escape sequence so far
61 * @escape_buf: Buffer to accumulate escape sequence
76 * ANSI escape sequences are accumulated character by character,
80 int escape; member
/openbmc/u-boot/doc/device-tree-bindings/video/
H A Dexynos_mipi_dsi.txt31 samsung,dsim-config-esc-clk: escape clock frequency for getting
32 the escape clock prescaler value.
40 with respect to Tx escape clock.
43 after RxLpdt asserts with respect to Tx escape clock.
/openbmc/qemu/tests/qapi-schema/
H A Dunknown-escape.err1 unknown-escape.json:3:21: unknown escape \x
H A Dident-with-escape.err1 ident-with-escape.json:3:3: unknown escape \u
/openbmc/docs/designs/
H A Dsol-sysrq.md67 title: SysRq escape state machine
74 Newline --> Escape: [~]
76 Escape --> EmitEscapeCode: [B]
79 Escape --> EmitNewlineTilde: [^B]
/openbmc/openbmc/meta-facebook/recipes-phosphor/console/obmc-console/
H A Dclient.conf1 # Specify the escape sequence <Ctrl+L>x which is usable by
3 escape-sequence = x
/openbmc/linux/drivers/auxdisplay/
H A Dcharlcd.c27 #define LCD_ESCAPE_LEN 24 /* Max chars for LCD escape command */
28 #define LCD_ESCAPE_CHAR 27 /* Use char 27 for escape command */
42 /* Current escape sequence and it's length or -1 if outside */
369 /* first, we'll test if we're in escape mode */ in charlcd_write_char()
375 /* aborts any previous escape sequence */ in charlcd_write_char()
380 /* start of an escape sequence */ in charlcd_write_char()
432 * now we'll see if we're in an escape mode and if the current in charlcd_write_char()
433 * escape sequence can be understood. in charlcd_write_char()
454 /* LCD special escape codes */ in charlcd_write_char()
456 * flush the escape sequence if it's been processed in charlcd_write_char()
[all …]
/openbmc/linux/drivers/input/serio/
H A Dps2mult.c42 bool escape; member
243 if (psm->escape) { in ps2mult_interrupt()
244 psm->escape = false; in ps2mult_interrupt()
253 dev_dbg(&serio->dev, "ESCAPE\n"); in ps2mult_interrupt()
254 psm->escape = true; in ps2mult_interrupt()
/openbmc/u-boot/drivers/video/exynos/
H A Dexynos_mipi_dsi_common.c350 /* Escape mode clock and byte clock source */ in exynos_mipi_dsi_set_clock()
372 /* escape clock divider */ in exynos_mipi_dsi_set_clock()
384 /* enable escape clock. */ in exynos_mipi_dsi_set_clock()
387 /* enable byte clk and escape clock */ in exynos_mipi_dsi_set_clock()
389 /* escape clock on lane */ in exynos_mipi_dsi_set_clock()
395 debug("escape clock that user's need is %lu\n", in exynos_mipi_dsi_set_clock()
397 debug("escape clock divider is %x\n", esc_div); in exynos_mipi_dsi_set_clock()
398 debug("escape clock is %luMHz\n", in exynos_mipi_dsi_set_clock()
417 /* disable escape clock. */ in exynos_mipi_dsi_set_clock()
/openbmc/linux/kernel/debug/kdb/
H A Dkdb_io.c52 * kdb_handle_escape() - validity check on an accumulated escape sequence.
53 * @buf: Accumulated escape characters to be examined. Note that buf
56 * @sz: Number of accumulated escape characters.
58 * Return: -1 if the escape sequence is unwanted, 0 if it is incomplete,
114 * most of the work done in this function is dealing with escape sequences.
116 * An escape key could be the start of a vt100 control sequence such as \e[D
120 * (interrupts are off), by multiple input sources. Escape sequence processing
123 * Return: The key pressed or a control code derived from an escape sequence.
129 char buf[4]; /* longest vt100 escape sequence is 4 bytes */ in kdb_getchar()
167 * input source) we set ourselves up to handle an escape in kdb_getchar()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Dcss.py41 def escape(self, ident): member in CSS
42 """Escape a CSS identifier.
44 This is a simple wrapper around soupselect.escape(). See the
49 "Cannot escape CSS identifiers because the soupsieve package is not installed."
51 return self.api.escape(ident)
/openbmc/openbmc/poky/meta/recipes-graphics/matchbox-wm/matchbox-wm/
H A Dkbdconfig30 #Escape=close
38 <alt>escape=!matchbox-remote -mbmenu

12345678910>>...19