Home
last modified time | relevance | path

Searched refs:esc (Results 1 – 25 of 105) sorted by relevance

12345

/openbmc/linux/arch/um/drivers/
H A Dslip_common.h17 int *esc) in slip_unesc() argument
23 *esc = 0; in slip_unesc()
28 *esc = 1; in slip_unesc()
31 if(*esc){ in slip_unesc()
32 *esc = 0; in slip_unesc()
37 if(*esc){ in slip_unesc()
38 *esc = 0; in slip_unesc()
89 int esc; member
98 slip->esc = 0; in slip_proto_init()
H A Dslip_common.c14 &slip->pos, &slip->esc); in slip_proto_read()
34 &slip->esc); in slip_proto_read()
/openbmc/qemu/qga/
H A Dservice-win32.c105 GString *esc; in ga_install_service() local
114 esc = g_string_new(""); in ga_install_service()
118 win_escape_arg(module_fname, esc)); in ga_install_service()
121 g_string_append_printf(cmdline, " -p %s", win_escape_arg(path, esc)); in ga_install_service()
125 win_escape_arg(logfile, esc)); in ga_install_service()
129 win_escape_arg(state_dir, esc)); in ga_install_service()
158 g_string_free(esc, TRUE); in ga_install_service()
/openbmc/u-boot/cmd/
H A Dbootmenu.c103 *esc = 1; in bootmenu_autoboot_loop()
132 enum bootmenu_key *key, int *esc) in bootmenu_loop() argument
143 switch (*esc) { in bootmenu_loop()
147 *esc = 1; in bootmenu_loop()
154 *esc = 2; in bootmenu_loop()
157 *esc = 0; in bootmenu_loop()
163 if (*esc == 2 && c == '1') { in bootmenu_loop()
164 *esc = 3; in bootmenu_loop()
169 *esc = 0; in bootmenu_loop()
194 int esc = 0; in bootmenu_choice_entry() local
[all …]
/openbmc/linux/include/linux/
H A Dseq_file.h108 char *mangle_path(char *s, const char *p, const char *esc);
131 unsigned int flags, const char *esc);
134 unsigned int flags, const char *esc) in seq_escape_str() argument
136 seq_escape_mem(m, src, strlen(src), flags, esc); in seq_escape_str()
150 static inline void seq_escape(struct seq_file *m, const char *s, const char *esc) in seq_escape() argument
152 seq_escape_str(m, s, ESCAPE_OCTAL, esc); in seq_escape()
163 const struct path *root, const char *esc);
/openbmc/obmc-console/
H A Dconsole-client.c275 const uint8_t *esc = NULL; in main() local
301 esc = (const uint8_t *)optarg; in main()
329 if (!esc) { in main()
330 esc = (const uint8_t *)config_get_value( in main()
335 if (esc) { in main()
337 client->esc_state.str.str = esc; in main()
/openbmc/linux/drivers/auxdisplay/
H A Dhd44780_common.c299 int hd44780_common_redefine_char(struct charlcd *lcd, char *esc) in hd44780_common_redefine_char() argument
317 if (!strchr(esc, ';')) in hd44780_common_redefine_char()
320 esc++; in hd44780_common_redefine_char()
322 cgaddr = *(esc++) - '0'; in hd44780_common_redefine_char()
329 while (*esc && cgoffset < 8) { in hd44780_common_redefine_char()
333 half = hex_to_bin(*esc++); in hd44780_common_redefine_char()
H A Dlcd2s.c226 static int lcd2s_redefine_char(struct charlcd *lcd, char *esc) in lcd2s_redefine_char() argument
233 if (!strchr(esc, ';')) in lcd2s_redefine_char()
236 esc++; in lcd2s_redefine_char()
238 buf[1] = *(esc++) - '0'; in lcd2s_redefine_char()
245 while (*esc && i < LCD2S_CHARACTER_SIZE + 2) { in lcd2s_redefine_char()
249 half = hex_to_bin(*esc++); in lcd2s_redefine_char()
H A Dhd44780_common.h32 int hd44780_common_redefine_char(struct charlcd *lcd, char *esc);
H A Dcharlcd.c203 char *esc = priv->esc_seq.buf + 2; in handle_lcd_special_code() local
207 switch (*esc) { in handle_lcd_special_code()
343 processed = lcd->ops->redefine_char(lcd, esc); in handle_lcd_special_code()
354 if (parse_xy(esc, &lcd->addr.x, &lcd->addr.y)) in handle_lcd_special_code()
H A Dcharlcd.h92 int (*redefine_char)(struct charlcd *lcd, char *esc);
/openbmc/u-boot/lib/
H A Dslre.c245 int esc, old_data_size = r->data_size, op = ANYOF; in anyof() local
263 esc = get_escape_char(re); in anyof()
264 if ((esc & 0xff) == 0) { in anyof()
266 store_char_in_data(r, esc >> 8); in anyof()
268 store_char_in_data(r, esc); in anyof()
323 int op, esc, branch_start, last_op, fixup, cap_no, level; in compile() local
352 esc = get_escape_char(re); in compile()
353 if (esc & 0xff00) in compile()
354 emit(r, esc >> 8); in compile()
356 exact_one_char(r, esc); in compile()
/openbmc/linux/fs/
H A Dseq_file.c375 unsigned int flags, const char *esc) in seq_escape_mem() argument
381 ret = string_escape_mem(src, len, buf, size, flags, esc); in seq_escape_mem()
440 char *mangle_path(char *s, const char *p, const char *esc) in mangle_path() argument
446 } else if (!strchr(esc, c)) { in mangle_path()
470 int seq_path(struct seq_file *m, const struct path *path, const char *esc) in seq_path() argument
479 char *end = mangle_path(buf, p, esc); in seq_path()
498 int seq_file_path(struct seq_file *m, struct file *file, const char *esc) in seq_file_path() argument
500 return seq_path(m, &file->f_path, esc); in seq_file_path()
508 const struct path *root, const char *esc) in seq_path_root() argument
522 char *end = mangle_path(buf, p, esc); in seq_path_root()
[all …]
/openbmc/linux/lib/
H A Dtest-string_helpers.c406 test_string_escape_overflow(const char *in, int p, unsigned int flags, const char *esc, in test_string_escape_overflow() argument
411 q_real = string_escape_mem(in, p, NULL, 0, flags, esc); in test_string_escape_overflow()
419 unsigned int flags, const char *esc) in test_string_escape() argument
439 if (flags & ESCAPE_NA && !(flags & ESCAPE_APPEND && esc)) { in test_string_escape()
463 q_real = string_escape_mem(in, p, out_real, out_size, flags, esc); in test_string_escape()
468 test_string_escape_overflow(in, p, flags, esc, q_test, name); in test_string_escape()
H A Dseq_buf.c302 int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc) argument
313 char *end = mangle_path(buf, p, esc);
/openbmc/linux/Documentation/devicetree/bindings/display/bridge/
H A Dnwl-dsi.yaml76 - description: dsi esc reset line
83 - const: esc
165 reset-names = "byte", "dpi", "esc", "pclk";
H A Dsamsung,mipi-dsim.yaml77 samsung,esc-clock-frequency:
141 - samsung,esc-clock-frequency
263 samsung,esc-clock-frequency = <16000000>;
/openbmc/linux/Documentation/devicetree/bindings/media/
H A Dnxp,imx8mq-mipi-csi2.yaml30 - description: esc is the Rx Escape Clock. This must be the same escape
38 - const: esc
133 clock-names = "core", "esc", "ui";
/openbmc/linux/drivers/platform/x86/
H A Dasus-tf103c-dock.c281 u8 *esc, *buf = dock->kbd_buf; in tf103c_dock_report_toprow_kbd_hook() local
299 esc = memchr(buf, 0x29, size); in tf103c_dock_report_toprow_kbd_hook()
300 if (!dock->esc_pressed && esc) { in tf103c_dock_report_toprow_kbd_hook()
306 if (esc && dock->filter_esc) in tf103c_dock_report_toprow_kbd_hook()
307 *esc = 0; in tf103c_dock_report_toprow_kbd_hook()
311 dock->esc_pressed = esc != NULL; in tf103c_dock_report_toprow_kbd_hook()
/openbmc/linux/tools/arch/x86/include/asm/
H A Dinat.h82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS) argument
/openbmc/linux/arch/x86/include/asm/
H A Dinat.h82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS) argument
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libteam/libteam/
H A D0001-team_basic_test.py-check-the-return-value.patch27 + except Exception as esc:
/openbmc/linux/arch/arm64/boot/dts/freescale/
H A Dimx8mp-venice-gw74xx-rpidsi.dtso41 samsung,esc-clock-frequency = <54000000>;
H A Dimx8mm-venice-gw73xx-0x-rpidsi.dtso45 samsung,esc-clock-frequency = <54000000>;
H A Dimx8mm-venice-gw72xx-0x-rpidsi.dtso45 samsung,esc-clock-frequency = <54000000>;

12345