Home
last modified time | relevance | path

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

/openbmc/qemu/semihosting/
H A Dguestfd.c142 gf->staticfile.data = data; in staticfile_guestfd()
143 gf->staticfile.len = len; in staticfile_guestfd()
144 gf->staticfile.off = 0; in staticfile_guestfd()
H A Dsyscalls.c551 target_ulong rest = gf->staticfile.len - gf->staticfile.off; in staticfile_read()
562 memcpy(ptr, gf->staticfile.data + gf->staticfile.off, len); in staticfile_read()
563 gf->staticfile.off += len; in staticfile_read()
578 ret = gf->staticfile.off + off; in staticfile_lseek()
581 ret = gf->staticfile.len + off; in staticfile_lseek()
587 if (ret >= 0 && ret <= gf->staticfile.len) { in staticfile_lseek()
588 gf->staticfile.off = ret; in staticfile_lseek()
598 complete(cs, gf->staticfile.len, 0); in staticfile_flen()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/tcpreplay/tcpreplay/
H A D0001-configure.ac-unify-search-dirs-for-pcap-and-add-lib3.patch62 staticfile=$(ls ${testdir}/$dir/libpcap${ext} 2> /dev/null | sort | head -n1)
63 if test -n "${staticfile}"; then
64 LPCAPLIB="${staticfile}"
80staticfile=$(ls "${testdir}/$dir/libpcap${ext}" 2> /dev/null | sort | head -n1)
81 if test -n "${staticfile}"; then
82 LPCAPLIB="${staticfile}"
/openbmc/qemu/include/semihosting/
H A Dguestfd.h34 } staticfile; member