Home
last modified time | relevance | path

Searched refs:char_count (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/include/uapi/linux/
H A Dcyclades.h11 unsigned long char_count; member
/openbmc/linux/drivers/s390/char/
H A Dcon3270.c125 unsigned int char_count; member
1814 if (tp->char_count > 0) { in tty3270_write()
1815 tty3270_do_write(tp, tty, tp->char_buf, tp->char_count); in tty3270_write()
1816 tp->char_count = 0; in tty3270_write()
1830 if (!tp || tp->char_count >= TTY3270_CHAR_BUF_SIZE) in tty3270_put_char()
1832 tp->char_buf[tp->char_count++] = ch; in tty3270_put_char()
1847 if (tp->char_count > 0) { in tty3270_flush_chars()
1848 tty3270_do_write(tp, tty, tp->char_buf, tp->char_count); in tty3270_flush_chars()
1849 tp->char_count = 0; in tty3270_flush_chars()
/openbmc/qemu/qga/
H A Dcommands-win32.c1334 DWORD char_count = 0; in qmp_guest_fstrim() local
1339 GetVolumePathNamesForVolumeNameW(guid, NULL, 0, &char_count); in qmp_guest_fstrim()
1348 uc_path = g_new(WCHAR, char_count); in qmp_guest_fstrim()
1349 if (!GetVolumePathNamesForVolumeNameW(guid, uc_path, char_count, in qmp_guest_fstrim()
1350 &char_count) || !*uc_path) { in qmp_guest_fstrim()
1358 path = g_utf16_to_utf8(uc_path, char_count, NULL, NULL, &gerr); in qmp_guest_fstrim()
/openbmc/linux/drivers/xen/xenbus/
H A Dxenbus_probe.c610 static unsigned int char_count(const char *str, char c) in char_count() function
640 if (char_count(node, '/') < 2) in xenbus_dev_changed()