Home
last modified time | relevance | path

Searched refs:tmp_fd (Results 1 – 8 of 8) sorted by relevance

/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dscp.py18 cls.tmp_fd, cls.tmp_path = mkstemp()
19 with os.fdopen(cls.tmp_fd, 'w') as f:
/openbmc/qemu/monitor/
H A Dfds.c77 int tmp_fd; in monitor_add_fd() local
83 tmp_fd = monfd->fd; in monitor_add_fd()
87 close(tmp_fd); in monitor_add_fd()
120 int tmp_fd; in qmp_closefd() local
129 tmp_fd = monfd->fd; in qmp_closefd()
134 close(tmp_fd); in qmp_closefd()
/openbmc/openbmc/meta-security/lib/oeqa/runtime/cases/
H A Dclamav.py16 cls.tmp_fd, cls.tmp_path = mkstemp()
17 with os.fdopen(cls.tmp_fd, 'w') as f:
H A Dsuricata.py15 cls.tmp_fd, cls.tmp_path = mkstemp()
16 with os.fdopen(cls.tmp_fd, 'w') as f:
/openbmc/openbmc/meta-security/meta-parsec/lib/oeqa/runtime/cases/
H A Dparsec.py34 tmp_fd, tmp_path = mkstemp()
35 with os.fdopen(tmp_fd, 'w') as f:
/openbmc/qemu/hw/core/
H A Deif.c158 int tmp_fd; in get_tmp_file() local
161 tmp_fd = g_file_open_tmp(template, tmp_path, NULL); in get_tmp_file()
162 if (tmp_fd < 0 || *tmp_path == NULL) { in get_tmp_file()
168 close(tmp_fd); in get_tmp_file()
/openbmc/u-boot/tools/
H A Dimx8image.c279 int tmp_fd = open(filename, O_RDONLY | O_BINARY); in check_file() local
281 if (tmp_fd < 0) { in check_file()
287 if (fstat(tmp_fd, sbuf) < 0) { in check_file()
293 close(tmp_fd); in check_file()
/openbmc/qemu/tests/qtest/
H A Dvhost-user-blk-test.c840 int tmp_fd; in create_listen_socket() local
846 tmp_fd = mkstemp(path); in create_listen_socket()
847 g_assert_cmpint(tmp_fd, >=, 0); in create_listen_socket()
848 close(tmp_fd); in create_listen_socket()