/openbmc/linux/arch/um/drivers/ |
H A D | slip_common.h | 17 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 D | slip_common.c | 14 &slip->pos, &slip->esc); in slip_proto_read() 34 &slip->esc); in slip_proto_read()
|
/openbmc/qemu/qga/ |
H A D | service-win32.c | 105 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 D | bootmenu.c | 81 enum bootmenu_key *key, int *esc) in bootmenu_autoboot_loop() argument 103 *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() [all …]
|
/openbmc/linux/include/linux/ |
H A D | seq_file.h | 108 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 D | console-client.c | 276 const uint8_t *esc = NULL; in main() local 302 esc = (const uint8_t *)optarg; in main() 330 if (!esc) { in main() 331 esc = (const uint8_t *)config_get_value( in main() 336 if (esc) { in main() 338 client->esc_state.str.str = esc; in main()
|
/openbmc/linux/drivers/auxdisplay/ |
H A D | hd44780_common.c | 299 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 D | lcd2s.c | 226 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 D | charlcd.c | 203 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 D | hd44780_common.h | 32 int hd44780_common_redefine_char(struct charlcd *lcd, char *esc);
|
H A D | charlcd.h | 92 int (*redefine_char)(struct charlcd *lcd, char *esc);
|
/openbmc/u-boot/lib/ |
H A D | slre.c | 245 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 D | seq_file.c | 375 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 D | test-string_helpers.c | 406 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 D | seq_buf.c | 300 int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc) argument 311 char *end = mangle_path(buf, p, esc);
|
/openbmc/linux/drivers/platform/x86/ |
H A D | asus-tf103c-dock.c | 281 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/arch/x86/include/asm/ |
H A D | inat.h | 82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS) argument
|
/openbmc/linux/tools/arch/x86/include/asm/ |
H A D | inat.h | 82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS) argument
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libteam/libteam/ |
H A D | 0001-team_basic_test.py-check-the-return-value.patch | 27 + except Exception as esc:
|
/openbmc/linux/arch/arm64/boot/dts/freescale/ |
H A D | imx8mp-venice-gw74xx-rpidsi.dtso | 41 samsung,esc-clock-frequency = <54000000>;
|
H A D | imx8mm-venice-gw72xx-0x-rpidsi.dtso | 45 samsung,esc-clock-frequency = <54000000>;
|
H A D | imx8mm-venice-gw73xx-0x-rpidsi.dtso | 45 samsung,esc-clock-frequency = <54000000>;
|
/openbmc/u-boot/doc/device-tree-bindings/video/ |
H A D | exynos_mipi_dsi.txt | 31 samsung,dsim-config-esc-clk: escape clock frequency for getting 73 samsung,dsim-config-esc-clk = <20000000>;
|
/openbmc/u-boot/drivers/serial/ |
H A D | serial_mxc.c | 130 u32 esc; member 155 writel(0x2b, &base->esc); in _mxc_serial_init()
|
/openbmc/openbmc/poky/bitbake/contrib/ |
H A D | dump_cache.py | 79 except Exception as esc:
|