Home
last modified time | relevance | path

Searched refs:readable (Results 1 – 25 of 243) sorted by relevance

12345678910

/freebsd-12-stable/tests/sys/fifo/
Dfifo_io.c864 poll_status(int fd, int *readable, int *writable, int *exception, in poll_status() argument
877 *readable = (fds[0].revents & POLLIN) ? 1 : 0; in poll_status()
884 select_status(int fd, int *readable, int *writable, int *exception, in select_status() argument
902 *readable = FD_ISSET(fd, &readfds) ? 1 : 0; in select_status()
953 kqueue_status(int kqueue_fd, int fd, int *readable, int *writable, in kqueue_status() argument
970 *readable = *writable = *exception = 0; in kqueue_status()
976 *readable = 1; in kqueue_status()
985 fionread_status(int fd, int *readable, const char *testname) in fionread_status() argument
995 *readable = 1; in fionread_status()
997 *readable = 0; in fionread_status()
[all …]
/freebsd-12-stable/contrib/subversion/subversion/libsvn_repos/
Drev_hunt.c229 svn_boolean_t readable; in svn_repos_history2() local
230 SVN_ERR(authz_read_func(&readable, root, path, in svn_repos_history2()
232 if (! readable) in svn_repos_history2()
266 svn_boolean_t readable; in svn_repos_history2() local
270 SVN_ERR(authz_read_func(&readable, history_root, history_path, in svn_repos_history2()
272 if (! readable) in svn_repos_history2()
501 svn_boolean_t readable; in check_readability() local
502 SVN_ERR(authz_read_func(&readable, root, path, authz_read_baton, pool)); in check_readability()
503 if (! readable) in check_readability()
739 svn_boolean_t readable; in svn_repos_trace_node_locations() local
[all …]
Dreplay.c199 svn_boolean_t readable = TRUE; in add_subdir() local
239 SVN_ERR(authz_read_func(&readable, target_root, new_edit_path, in add_subdir()
242 if (! readable) in add_subdir()
341 was_readable(svn_boolean_t *readable, in was_readable() argument
358 *readable = TRUE; in was_readable()
390 SVN_ERR(authz_read_func(readable, inquire_root, inquire_path, in was_readable()
518 svn_boolean_t readable; in path_driver_cb_func() local
522 SVN_ERR(was_readable(&readable, root, edit_path, cb->copies, in path_driver_cb_func()
525 if (readable) in path_driver_cb_func()
1094 svn_boolean_t readable = TRUE; in add_subdir_ev2() local
[all …]
Dlog.c153 svn_boolean_t readable; in svn_repos_check_revision_access() local
157 SVN_ERR(authz_read_func(&readable, rev_root, change->path.data, in svn_repos_check_revision_access()
159 if (! readable) in svn_repos_check_revision_access()
185 SVN_ERR(authz_read_func(&readable, in svn_repos_check_revision_access()
188 if (! readable) in svn_repos_check_revision_access()
284 svn_boolean_t readable; in detect_changed() local
285 SVN_ERR(callbacks->authz_read_func(&readable, root, path, in detect_changed()
288 if (! readable) in detect_changed()
355 svn_boolean_t readable = TRUE; in detect_changed() local
363 SVN_ERR(callbacks->authz_read_func(&readable, in detect_changed()
[all …]
Dfs-wrap.c881 svn_boolean_t readable = TRUE; in get_locks_callback() local
886 SVN_ERR(b->authz_read_func(&readable, b->head_root, lock->path, in get_locks_callback()
890 if (readable) in get_locks_callback()
964 svn_boolean_t readable; in svn_repos_fs_get_mergeinfo2() local
967 SVN_ERR(authz_read_func(&readable, root, path, authz_read_baton, in svn_repos_fs_get_mergeinfo2()
969 if (readable && readable_paths != paths) in svn_repos_fs_get_mergeinfo2()
971 else if (!readable && readable_paths == paths) in svn_repos_fs_get_mergeinfo2()
/freebsd-12-stable/sys/dev/virtio/
Dvirtqueue.c516 int readable, int writable) in virtqueue_enqueue() argument
522 needed = readable + writable; in virtqueue_enqueue()
538 vq_ring_enqueue_indirect(vq, cookie, sg, readable, writable); in virtqueue_enqueue()
553 sg, readable, writable); in virtqueue_enqueue()
692 uint16_t head_idx, struct sglist *sg, int readable, int writable) in vq_ring_enqueue_segments() argument
699 needed = readable + writable; in vq_ring_enqueue_segments()
714 if (i >= readable) in vq_ring_enqueue_segments()
739 struct sglist *sg, int readable, int writable) in vq_ring_enqueue_indirect() argument
746 needed = readable + writable; in vq_ring_enqueue_indirect()
765 sg, readable, writable); in vq_ring_enqueue_indirect()
Dvirtqueue.h101 struct sglist *sg, int readable, int writable);
/freebsd-12-stable/crypto/openssl/doc/man3/
DSCT_print.pod6 Prints Signed Certificate Timestamps in a human-readable way
20 a human-readable format. SCT_LIST_print() prints an entire list of SCTs in a
29 a human-readable string. Call SCT_validate() or SCT_LIST_validate()
DSSL_pending.pod5 SSL_pending, SSL_has_pending - check for readable bytes buffered in an
30 will ignore them. Therefore, it is possible for no more bytes to be readable from
32 to return 0, even though readable application data bytes are available (because
DASN1_STRING_print_ex.pod31 ASN1_tag2str() returns a human-readable name of the specified ASN.1 B<tag>.
58 double quote characters: this is arguably more readable than the backslash
99 ASN1_tag2str() returns a human-readable name of the specified ASN.1 B<tag>.
DERR_error_string.pod6 ERR_func_error_string, ERR_reason_error_string - obtain human-readable
22 ERR_error_string() generates a human-readable string representing the
DX509_NAME_print_ex.pod19 X509_NAME_print_ex() prints a human readable version of B<nm> to BIO B<out>. Each
61 uses comma and plus with spaces: this is more readable that plain comma and plus.
92 B<XN_FLAG_ONELINE> is a more readable one line format which is the same as:
DECPKParameters_print.pod21 a human-readable output of the public parameters of the EC_GROUP to B<bp>
/freebsd-12-stable/usr.sbin/bhyve/
Dpci_virtio_scsi.c620 int readable, n; in pci_vtscsi_requestq_notify() local
626 readable = 0; in pci_vtscsi_requestq_notify()
635 readable++; in pci_vtscsi_requestq_notify()
641 req->vsr_niov_in = readable; in pci_vtscsi_requestq_notify()
642 req->vsr_niov_out = n - readable; in pci_vtscsi_requestq_notify()
645 memcpy(req->vsr_iov_out, iov + readable, in pci_vtscsi_requestq_notify()
/freebsd-12-stable/usr.sbin/bhyvectl/
Dbhyvectl.c412 print_msr_pm(uint64_t msr, int vcpu, int readable, int writeable) in print_msr_pm() argument
415 if (readable || writeable) { in print_msr_pm()
417 readable ? 'R' : '-', writeable ? 'W' : '-'); in print_msr_pm()
427 int byte, bit, readable, writeable; in dump_amd_msr_pm() local
435 readable = (bitmap[byte] & (1 << bit)) ? 0 : 1; in dump_amd_msr_pm()
437 print_msr_pm(msr, vcpu, readable, writeable); in dump_amd_msr_pm()
441 readable = (bitmap[byte] & (1 << bit)) ? 0 : 1; in dump_amd_msr_pm()
443 print_msr_pm(msr + MSR_AMD6TH_START, vcpu, readable, in dump_amd_msr_pm()
448 readable = (bitmap[byte] & (1 << bit)) ? 0 : 1; in dump_amd_msr_pm()
450 print_msr_pm(msr + MSR_AMD7TH_START, vcpu, readable, in dump_amd_msr_pm()
[all …]
/freebsd-12-stable/tools/tools/kdrv/
DKernelDriver245 if {![file readable $dir$f]} {
250 if {![file readable $dir$f]} {
255 if {![file readable $dir$f]} {
497 if {![file readable $fname]} {
528 if {![file readable $fname]} {
1010 ![file readable $drv]} {
/freebsd-12-stable/lib/libc/isc/
Dev_streams.c53 static void readable(evContext opaqueCtx, void *uap, int fd, int evmask);
114 if (evSelectFD(opaqueCtx, fd, EV_READ, readable, new, &new->file) < 0) in evRead()
294 readable(evContext opaqueCtx, void *uap, int fd, int evmask) { in readable() function
/freebsd-12-stable/contrib/file/magic/
DLocalstuff7 # text if readable, executable if runnable binary, data if unreadable.
/freebsd-12-stable/contrib/wpa/hostapd/logwatch/
DREADME2 readable summary. This directory has a configuration file and a log
/freebsd-12-stable/contrib/file/magic/Magdir/
Dpci_ids8 # show hexadecimal PCI vendor identification in human readable text form
44 # show hexadecimal PCI class+sub+ProgIF identification in human readable text form
Dmarc217 # of bibliographic and related information in machine-readable
Dsereal14 # we'll print out e.g. 0x30 instead of the more human-readable
Dunknown34 0 long 0x10e unknown readable demand paged pure executable
/freebsd-12-stable/sys/dev/virtio/scsi/
Dvirtio_scsi.c1017 int *readable, int *writable) in vtscsi_fill_scsi_cmd_sglist() argument
1042 *readable = sg->sg_nseg; in vtscsi_fill_scsi_cmd_sglist()
1051 *writable = sg->sg_nseg - *readable; in vtscsi_fill_scsi_cmd_sglist()
1054 "writable=%d\n", req, ccbh, *readable, *writable); in vtscsi_fill_scsi_cmd_sglist()
1080 int readable, writable, error; in vtscsi_execute_scsi_cmd() local
1091 error = vtscsi_fill_scsi_cmd_sglist(sc, req, &readable, &writable); in vtscsi_execute_scsi_cmd()
1098 error = virtqueue_enqueue(vq, req, sg, readable, writable); in vtscsi_execute_scsi_cmd()
1403 struct sglist *sg, int readable, int writable, int flag) in vtscsi_execute_ctrl_req() argument
1412 error = virtqueue_enqueue(vq, req, sg, readable, writable); in vtscsi_execute_ctrl_req()
/freebsd-12-stable/crypto/openssl/doc/man1/
Dsess_id.pod24 master key) in human readable format. Since this is a diagnostic tool that
151 The cipher and start time should be printed out in human readable form.

12345678910