| /freebsd-12-stable/tests/sys/fifo/ |
| D | fifo_io.c | 864 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/ |
| D | rev_hunt.c | 229 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 …]
|
| D | replay.c | 199 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 …]
|
| D | log.c | 153 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 …]
|
| D | fs-wrap.c | 881 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/ |
| D | virtqueue.c | 516 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()
|
| D | virtqueue.h | 101 struct sglist *sg, int readable, int writable);
|
| /freebsd-12-stable/crypto/openssl/doc/man3/ |
| D | SCT_print.pod | 6 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()
|
| D | SSL_pending.pod | 5 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
|
| D | ASN1_STRING_print_ex.pod | 31 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>.
|
| D | ERR_error_string.pod | 6 ERR_func_error_string, ERR_reason_error_string - obtain human-readable 22 ERR_error_string() generates a human-readable string representing the
|
| D | X509_NAME_print_ex.pod | 19 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:
|
| D | ECPKParameters_print.pod | 21 a human-readable output of the public parameters of the EC_GROUP to B<bp>
|
| /freebsd-12-stable/usr.sbin/bhyve/ |
| D | pci_virtio_scsi.c | 620 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/ |
| D | bhyvectl.c | 412 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/ |
| D | KernelDriver | 245 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/ |
| D | ev_streams.c | 53 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/ |
| D | Localstuff | 7 # text if readable, executable if runnable binary, data if unreadable.
|
| /freebsd-12-stable/contrib/wpa/hostapd/logwatch/ |
| D | README | 2 readable summary. This directory has a configuration file and a log
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | pci_ids | 8 # show hexadecimal PCI vendor identification in human readable text form 44 # show hexadecimal PCI class+sub+ProgIF identification in human readable text form
|
| D | marc21 | 7 # of bibliographic and related information in machine-readable
|
| D | sereal | 14 # we'll print out e.g. 0x30 instead of the more human-readable
|
| D | unknown | 34 0 long 0x10e unknown readable demand paged pure executable
|
| /freebsd-12-stable/sys/dev/virtio/scsi/ |
| D | virtio_scsi.c | 1017 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/ |
| D | sess_id.pod | 24 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.
|