Searched refs:io (Results 201 - 225 of 613) sorted by relevance

1234567891011>>

/freebsd-current/usr.sbin/bsnmpd/modules/snmp_pf/
H A Dpf_snmp.c1150 struct pfioc_iface io; local
1164 bzero(&io, sizeof(io));
1165 io.pfiio_esize = sizeof(struct pfi_kif);
1174 io.pfiio_size = numifs;
1175 io.pfiio_buffer = p;
1177 if (ioctl(pfctl_fd(pfh), DIOCIGETIFACES, &io)) {
1183 if (numifs >= io.pfiio_size)
1186 numifs = io.pfiio_size;
1305 struct pfioc_table io; local
1373 struct pfioc_table io; local
1439 struct pfioc_table io; local
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMachOYAML.h236 static std::string validate(IO &io, MachOYAML::Section &Section);
252 io.enumCase(value, #LCName, MachO::LCName);
255 static void enumeration(IO &io, MachO::LoadCommandType &value) { argument
257 io.enumFallback<Hex32>(value);
261 #define ENUM_CASE(Enum) io.enumCase(value, #Enum, MachO::Enum);
264 static void enumeration(IO &io, MachO::RebaseOpcode &value) { argument
274 io.enumFallback<Hex8>(value);
279 static void enumeration(IO &io, MachO::BindOpcode &value) { argument
293 io.enumFallback<Hex8>(value);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/events/
H A Dzed_io_config.ksh32 # 3. Inject io errors
89 log_must zinject -a -d $VDEV -e io -T read -f 100 $POOL
110 log_must zinject -a -d $VDEV -e io -T read -f 100 $POOL
126 log_must zinject -a -d $VDEV -e io -T read -f 100 $POOL
/freebsd-current/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_datavar.h55 typedef int (bhnd_nvram_data_op_probe)(struct bhnd_nvram_io *io);
59 struct bhnd_nvram_io *io, const char *name,
71 struct bhnd_nvram_io *io);
/freebsd-current/sys/xen/
H A Dblkif.h24 #include <contrib/xen/io/ring.h>
25 #include <contrib/xen/io/blkif.h>
26 #include <contrib/xen/io/protocols.h>
/freebsd-current/tools/pkgbase/
H A Dmetalog_reader.lua73 io.stderr:write('Unknown argument '..args[i]..'.\n')
82 io.stderr:write('Missing filename.\n')
90 io.write('--- PACKAGE REPORTS ---\n')
91 io.write(sess.pkg_report_full())
92 io.write('--- LINTING REPORTS ---\n')
97 io.write(sess.pkg_report_simple(dcount, dsize, {
103 io.stderr:write('This text should not be displayed.')
116 io.write('\n')
117 io.write(sn)
118 io
[all...]
/freebsd-current/sys/dev/io/
H A Diodev.c41 #include <dev/io/iodev.h>
60 .d_name = "io",
193 printf("io: <I/O>\n");
195 UID_ROOT, GID_WHEEL, 0600, "io");
214 DEV_MODULE(io, io_modevent, NULL);
215 MODULE_VERSION(io, 1);
/freebsd-current/bin/dd/
H A Ddd.c311 getfdtype(IO *io) argument
316 if (fstat(io->fd, &sb) == -1)
317 err(1, "%s", io->name);
319 io->flags |= ISTRUNC;
321 if (ioctl(io->fd, FIODTYPE, &type) == -1) {
322 err(1, "%s", io->name);
325 io->flags |= ISTAPE;
327 io->flags |= ISSEEK;
329 io->flags |= ISCHR;
334 if (lseek(io
[all...]
/freebsd-current/libexec/nuageinit/
H A Dnuage.lua8 io.stderr:write(str.."\n")
12 io.stderr:write(str.."\n")
47 local f,err = io.open(hostnamepath, "w")
75 local f = io.popen("getent passwd "..pwd.name)
143 local f = io.popen("getent group "..grp.name)
188 local f = io.open(ak_path, "a")
H A Dnuageinit33 local f,err = io.open(root .. "/etc/rc.conf.d/" .. name, "w")
43 local ns = io.popen('netstat -i --libxo json')
64 local f = io.open(p .. "/network_data.json")
172 local f,err = io.open(path.."/meta-data")
193 local f = io.open(path..'/user-data', "r")
200 f = io.open(path.."/user-data")
/freebsd-current/cddl/usr.sbin/dwatch/libexec/
H A DMakefile6 io \
27 LINKS+= ${LIBEXECDIR}/dwatch/io ${LIBEXECDIR}/dwatch/io-done
28 LINKS+= ${LIBEXECDIR}/dwatch/io ${LIBEXECDIR}/dwatch/io-start
76 LINKS+= ${LIBEXECDIR}/dwatch/tcp ${LIBEXECDIR}/dwatch/tcp-io
/freebsd-current/sys/dev/pci/
H A Dpci_user.c1019 struct pci_io *io; local
1276 io = (struct pci_io *)data;
1277 switch(io->pi_width) {
1282 if (io->pi_reg < 0 ||
1283 io->pi_reg & (io->pi_width - 1)) {
1293 pcidev = pci_find_dbsf(io->pi_sel.pc_domain,
1294 io->pi_sel.pc_bus, io->pi_sel.pc_dev,
1295 io
[all...]
/freebsd-current/contrib/libfido2/src/
H A Dnfc.c39 if (d->io.write(d->io_handle, apdu, apdu_len) < 0) {
45 if (d->io.read(d->io_handle, sw, sizeof(sw), -1) != 2) {
160 if ((n = d->io.read(d->io_handle, f, sizeof(f), ms)) < 2 ||
195 if (d->io.write(d->io_handle, apdu, sizeof(apdu)) < 0) {
213 if ((n = d->io.read(d->io_handle, f, sizeof(f), *ms)) < 2) {
337 d->io = (fido_dev_io_t) {
/freebsd-current/sys/dev/nvmf/
H A Dnvmf_transport.c206 struct nvmf_io_request io; local
208 io.io_mem = *mem;
209 io.io_len = len;
210 io.io_complete = complete_cb;
211 io.io_complete_arg = cb_arg;
213 &io));
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMultiAggPrinta.java29 import java.io.File;
30 import java.io.IOException;
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/removal/
H A Dremoval_with_errors.ksh94 log_must zinject -d $DISK0 -e io -T all -f 100 $TESTPOOL
105 log_must zinject -d $DISK3 -e io -T all -f 100 $TESTPOOL
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/
H A Dauto_spare_shared.ksh87 log_must zinject -d $FAIL_FILEDEVPOOL1 -e io -T all -f 100 $TESTPOOL
88 log_must zinject -d $FAIL_FILEDEVPOOL2 -e io -T all -f 100 $TESTPOOL1
/freebsd-current/sys/dev/iscsi/
H A Dicl_wrappers.h149 union ctl_io *io, uint32_t *transfer_tagp, void **prvp)
152 return (ICL_CONN_TRANSFER_SETUP(ic, ip, io, transfer_tagp, prvp));
148 icl_conn_transfer_setup(struct icl_conn *ic, struct icl_pdu *ip, union ctl_io *io, uint32_t *transfer_tagp, void **prvp) argument
/freebsd-current/sys/dev/ocs_fc/
H A Docs_drv_fc.h189 ocs_io_free(ocs_t *ocs, ocs_io_t *io) argument
191 ocs_io_pool_io_free(ocs->xport->io_pool, io);
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dstring_view.inc23 // [string.view.io], inserters and extractors
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp857 struct ptrace_io_desc io; local
863 io.piod_op = PIOD_READ_D;
864 io.piod_len = size;
867 io.piod_offs = (void *)(addr + bytes_read);
868 io.piod_addr = dst + bytes_read;
870 Status error = NativeProcessFreeBSD::PtraceWrapper(PT_IO, GetID(), &io);
871 if (error.Fail() || io.piod_len == 0)
874 bytes_read += io.piod_len;
875 io.piod_len = size - bytes_read;
885 struct ptrace_io_desc io; local
[all...]
/freebsd-current/sys/cam/ctl/
H A Dctl_backend.h176 typedef int (*be_func_t)(union ctl_io *io);
177 typedef void (*be_vfunc_t)(union ctl_io *io);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/mmp/
H A Dmmp_write_slow_disk.ksh77 log_must zinject -f 33 -e io -L pad2 -T write -d $MMP_DIR/file.3 $MMP_POOL
78 log_must zinject -f 50 -e io -L uber -T write -d $MMP_DIR/file.3 $MMP_POOL
/freebsd-current/contrib/ntp/sntp/libevent/
H A Devmap.c74 implement io maps just like signal maps: as an array of pointers to
276 struct event_io_map *io = &base->io; local
288 if (fd >= io->nentries) {
289 if (evmap_make_space(io, fd, sizeof(struct evmap_io *)) == -1)
293 GET_IO_SLOT_AND_CTOR(ctx, io, fd, evmap_io, evmap_io_init,
357 struct event_io_map *io = &base->io; local
368 if (fd >= io->nentries)
372 GET_IO_SLOT(ctx, io, f
422 struct event_io_map *io = &base->io; local
735 event_changelist_assert_ok_foreach_iter_fn( struct event_base *base, evutil_socket_t fd, struct evmap_io *io, void *arg) argument
[all...]
/freebsd-current/contrib/libevent/
H A Devmap.c74 implement io maps just like signal maps: as an array of pointers to
276 struct event_io_map *io = &base->io; local
288 if (fd >= io->nentries) {
289 if (evmap_make_space(io, fd, sizeof(struct evmap_io *)) == -1)
293 GET_IO_SLOT_AND_CTOR(ctx, io, fd, evmap_io, evmap_io_init,
357 struct event_io_map *io = &base->io; local
368 if (fd >= io->nentries)
372 GET_IO_SLOT(ctx, io, f
422 struct event_io_map *io = &base->io; local
735 event_changelist_assert_ok_foreach_iter_fn( struct event_base *base, evutil_socket_t fd, struct evmap_io *io, void *arg) argument
[all...]

Completed in 412 milliseconds

1234567891011>>