Searched refs:open (Results 201 - 225 of 240) sorted by relevance

12345678910

/fuchsia/zircon/third_party/ulib/musl/stubs/
H A Diostubs.c43 weak_alias(stub_open, open);
/fuchsia/zircon/system/dev/bus/platform/
H A Dplatform-proxy-device.cpp735 if (device_ops_ && device_ops_->open) {
736 return device_ops_->open(ctx_, dev_out, flags);
/fuchsia/zircon/system/ulib/fdio/
H A Dsocket.c774 .open = fdio_default_open,
809 .open = fdio_default_open,
H A Dunistd.c177 // The mask of "1:1" flags which match between both open flag representations.
385 status = iodir->ops->open(iodir, clean, fdio_flags_to_zxio(flags), mode, io);
514 zx_status_t r = iodir->ops->open(iodir, clean,
1437 // The behavior of open with O_CREAT | O_DIRECTORY is underspecified
1459 int open(const char* path, int flags, ...) { function
1822 int fd = open(name, O_RDONLY | O_DIRECTORY);
2330 int fd = open(path, O_RDONLY | O_CLOEXEC);
H A Dnamespace.c321 // is safe. We don't want to do a blocking open under the ns lock.
410 .open = mxdir_open,
H A Dspawn.c63 int fd = open(path, O_RDONLY);
/fuchsia/zircon/system/ulib/zxcrypt/
H A Dvolume.cpp224 fbl::unique_fd fd(open(path.c_str(), O_RDWR));
240 fd.reset(open(path.c_str(), O_RDWR));
242 xprintf("failed to open zxcrypt volume\n");
627 xprintf("failed to open block at %" PRIu64 ": %s\n", offset_, zx_status_get_string(rc));
/fuchsia/zircon/system/utest/ethernet/
H A Dethernet.cpp64 int ctlfd = open(kTapctl, O_RDONLY);
66 fprintf(stderr, "could not open %s: %s\n", kTapctl, strerror(errno));
131 int ethdir = open(kEthernetDir, O_RDONLY);
133 fprintf(stderr, "could not open %s: %s\n", kEthernetDir, strerror(errno));
/fuchsia/zircon/third_party/tools/android/avb/
H A Davbtool355 # key = Crypto.PublicKey.RSA.importKey(open(key_path).read())
672 self._image = open(self.filename, 'r+b')
2203 pk_blob = open(file_path).read()
2673 desc.public_key = open(file_path, 'rb').read()
2700 desc.value = open(file_path, 'rb').read()
2752 with open(public_key_metadata_path) as f:
3043 salt = open('/dev/urandom').read(hash_size)
3272 salt = open('/dev/urandom').read(hash_size)
3535 with open(challenge_path, 'r') as f:
3643 stderr=open(o
[all...]
/fuchsia/zircon/third_party/uapp/dash/src/
H A Djobs.c195 ofd = fd = open(_PATH_TTY, O_RDWR);
887 if (open(_PATH_DEVNULL, O_RDONLY) != 0)
888 sh_error("Can't open %s", _PATH_DEVNULL);
/fuchsia/zircon/system/core/virtcon/
H A Dvc-display.cpp553 if ((dc_fd= open("/dev/class/display-controller/000/virtcon", O_RDWR)) >= 0) {
/fuchsia/zircon/system/dev/audio/intel-hda/controller/
H A Dintel-hda-codec.cpp46 .open = nullptr,
177 // response back on the channel (assuming that it is still open).
H A Dintel-hda-dsp.cpp25 .open = nullptr,
/fuchsia/zircon/system/dev/nand/broker/test/
H A Dbroker-test.cpp39 fbl::unique_fd dir(open(path, O_DIRECTORY));
/fuchsia/zircon/system/host/xdc-server/
H A Dxdc-server.cpp179 socket_lock_fd_.reset(open(XDC_LOCK_PATH, O_CREAT | O_RDONLY, 0666));
/fuchsia/zircon/system/uapp/disk-pave/test/
H A Ddevice-partitioner-test.cpp141 fbl::unique_fd fd(open(path.data(), O_RDWR));
/fuchsia/zircon/system/uapp/iochk/
H A Diochk.cpp495 fbl::unique_fd fd(open(device, O_RDONLY));
497 printf("cannot open '%s'\n", device);
/fuchsia/zircon/system/ulib/audio-utils/
H A Daudio-device-stream.cpp111 int fd = ::open(name(), O_RDONLY);
113 printf("Failed to open \"%s\" (res %d)\n", name(), fd);
/fuchsia/zircon/system/ulib/framebuffer/
H A Dframebuffer.c69 dc_fd = open("/dev/class/display-controller/000", O_RDWR);
71 *err_msg_out = "Failed to open display controller";
/fuchsia/zircon/system/utest/hypervisor/
H A Dguest.cpp91 fbl::unique_fd fd(open(kResourcePath, O_RDWR));
/fuchsia/zircon/system/utest/spawn/
H A Dspawn.cpp592 int fd = open(kSpawnChild, O_RDONLY);
/fuchsia/zircon/system/utest/thread-state/
H A Dthread-state.cpp75 int fd = open("/dev/misc/sysinfo", O_RDWR);
77 unittest_printf("ERROR: Cannot open sysinfo: %d/%s\n",
/fuchsia/zircon/system/host/zbi/
H A Dzbi.cpp272 fbl::unique_fd fd(open(outfile, O_WRONLY | O_CREAT | O_TRUNC, 0666));
275 fd.reset(open(outfile, O_WRONLY | O_CREAT | O_TRUNC, 0666));
705 fbl::unique_fd fd(open(file, O_RDONLY));
/fuchsia/zircon/system/core/devmgr/
H A Ddevmgr.cpp403 if ((fd = open(device, O_RDWR)) >= 0) {
676 printf("devmgr: cannot find and open bootfs\n");
/fuchsia/zircon/system/dev/display/vim-display/
H A Dvim-display.cpp489 .open = nullptr,

Completed in 177 milliseconds

12345678910