Searched refs:os_open (Results 1 – 16 of 16) sorted by relevance
/external/u-boot/fs/sandbox/ |
D | sandboxfs.c | 25 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/ |
D | test_getpass.py | 150 with mock.patch('os.open') as os_open, \ 152 os_open.side_effect = IOError
|
/external/u-boot/drivers/block/ |
D | sandbox.c | 123 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/ |
D | os.c | 67 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()
|
D | state.c | 61 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()
|
D | cpu.c | 141 fd = os_open(fname, OS_O_RDONLY); in sandbox_read_fdt_from_file()
|
/external/u-boot/include/ |
D | os.h | 71 int os_open(const char *pathname, int flags);
|
/external/autotest/client/bin/net/ |
D | net_utils_mock.py | 12 def os_open(*args, **kwarg): function
|
D | net_utils_unittest.py | 26 self.god.stub_with(os, 'open', net_utils_mock.os_open)
|
/external/u-boot/lib/ |
D | fdtdec_test.c | 111 fd = os_open("/tmp/fdtdec-text.dtb", OS_O_CREAT | OS_O_WRONLY); in make_fdt()
|
/external/python/cpython3/Lib/test/eintrdata/ |
D | eintr_tester.py | 359 def os_open(self, path): member in SocketEINTRTest 367 self.os_open)
|
/external/u-boot/test/dm/ |
D | video.c | 286 fd = os_open(fname, OS_O_RDONLY); in read_file()
|
/external/u-boot/drivers/usb/emul/ |
D | sandbox_flash.c | 398 priv->fd = os_open(plat->pathname, OS_O_RDONLY); in sandbox_flash_probe()
|
/external/u-boot/drivers/mtd/spi/ |
D | sandbox.c | 186 sbsf->fd = os_open(pdata->filename, 02); in sandbox_sf_probe()
|
/external/python/setuptools/pkg_resources/ |
D | __init__.py | 62 from os import open as os_open unknown 3054 os.open = os_open
|
/external/python/cpython3/Modules/clinic/ |
D | posixmodule.c.h | 3361 {"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
|