HomeSort by relevance Sort by last modified time
    Searched refs:os_open (Results 1 - 16 of 16) sorted by null

  /external/u-boot/fs/sandbox/
sandboxfs.c 25 fd = os_open(filename, OS_O_RDONLY);
62 fd = os_open(filename, OS_O_RDWR | OS_O_CREAT);
  /external/u-boot/include/
os.h 22 * \param fd File descriptor as returned by os_open()
32 * \param fd File descriptor as returned by os_open()
42 * \param fd File descriptor as returned by os_open()
52 * \param fd File descriptor as returned by os_open()
71 int os_open(const char *pathname, int flags);
  /external/u-boot/arch/sandbox/cpu/
cpu.c 141 fd = os_open(fname, OS_O_RDONLY);
state.c 61 fd = os_open(fname, OS_O_RDONLY);
283 fd = os_open(fname, OS_O_WRONLY | OS_O_CREAT);
os.c 67 int os_open(const char *pathname, int os_flags) function
580 fd = os_open(fname, O_RDONLY);
591 fd = os_open(fname, O_RDONLY);
  /external/python/cpython3/Lib/test/
test_getpass.py 150 with mock.patch('os.open') as os_open, \
152 os_open.side_effect = IOError
  /external/u-boot/drivers/block/
sandbox.c 123 fd = os_open(filename, OS_O_RDWR);
172 host_dev->fd = os_open(host_dev->filename, OS_O_RDWR);
  /external/autotest/client/bin/net/
net_utils_mock.py 12 def os_open(*args, **kwarg): function
net_utils_unittest.py 26 self.god.stub_with(os, 'open', net_utils_mock.os_open)
    [all...]
  /external/u-boot/lib/
fdtdec_test.c 111 fd = os_open("/tmp/fdtdec-text.dtb", OS_O_CREAT | OS_O_WRONLY);
  /external/python/cpython3/Lib/test/eintrdata/
eintr_tester.py 359 def os_open(self, path): member in class:SocketEINTRTest
367 self.os_open)
  /external/u-boot/drivers/usb/emul/
sandbox_flash.c 398 priv->fd = os_open(plat->pathname, OS_O_RDONLY);
  /external/u-boot/test/dm/
video.c 286 fd = os_open(fname, OS_O_RDONLY);
  /external/u-boot/drivers/mtd/spi/
sandbox.c 186 sbsf->fd = os_open(pdata->filename, 02);
  /external/python/cpython3/Modules/clinic/
posixmodule.c.h 3367 os_open(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) function
    [all...]
  /external/python/setuptools/pkg_resources/
__init__.py 62 from os import open as os_open
    [all...]

Completed in 1574 milliseconds