Home
last modified time | relevance | path

Searched refs:os_open (Results 1 – 16 of 16) sorted by relevance

/external/u-boot/fs/sandbox/
Dsandboxfs.c25 fd = os_open(filename, OS_O_RDONLY); in sandbox_fs_read_at()
62 fd = os_open(filename, OS_O_RDWR | OS_O_CREAT); in sandbox_fs_write_at()
/external/python/cpython3/Lib/test/
Dtest_getpass.py150 with mock.patch('os.open') as os_open, \
152 os_open.side_effect = IOError
/external/u-boot/drivers/block/
Dsandbox.c123 fd = os_open(filename, OS_O_RDWR);
172 host_dev->fd = os_open(host_dev->filename, OS_O_RDWR);
/external/u-boot/arch/sandbox/cpu/
Dos.c67 int os_open(const char *pathname, int os_flags) in os_open() function
580 fd = os_open(fname, O_RDONLY); in os_find_u_boot()
591 fd = os_open(fname, O_RDONLY); in os_find_u_boot()
Dstate.c61 fd = os_open(fname, OS_O_RDONLY); in state_read_file()
283 fd = os_open(fname, OS_O_WRONLY | OS_O_CREAT); in sandbox_write_state()
Dcpu.c141 fd = os_open(fname, OS_O_RDONLY); in sandbox_read_fdt_from_file()
/external/u-boot/include/
Dos.h71 int os_open(const char *pathname, int flags);
/external/autotest/client/bin/net/
Dnet_utils_mock.py12 def os_open(*args, **kwarg): function
Dnet_utils_unittest.py26 self.god.stub_with(os, 'open', net_utils_mock.os_open)
/external/u-boot/lib/
Dfdtdec_test.c111 fd = os_open("/tmp/fdtdec-text.dtb", OS_O_CREAT | OS_O_WRONLY); in make_fdt()
/external/python/cpython3/Lib/test/eintrdata/
Deintr_tester.py359 def os_open(self, path): member in SocketEINTRTest
367 self.os_open)
/external/u-boot/test/dm/
Dvideo.c286 fd = os_open(fname, OS_O_RDONLY); in read_file()
/external/u-boot/drivers/usb/emul/
Dsandbox_flash.c398 priv->fd = os_open(plat->pathname, OS_O_RDONLY); in sandbox_flash_probe()
/external/u-boot/drivers/mtd/spi/
Dsandbox.c186 sbsf->fd = os_open(pdata->filename, 02); in sandbox_sf_probe()
/external/python/setuptools/pkg_resources/
D__init__.py62 from os import open as os_open unknown
3054 os.open = os_open
/external/python/cpython3/Modules/clinic/
Dposixmodule.c.h3361 {"open", (PyCFunction)os_open, METH_FASTCALL|METH_KEYWORDS, os_open__doc__},
3367 os_open(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in os_open() function