Home
last modified time | relevance | path

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

123456789

/freebsd-13.1/tests/sys/fifo/
H A Dfifo_io.c877 *readable = (fds[0].revents & POLLIN) ? 1 : 0; in poll_status()
902 *readable = FD_ISSET(fd, &readfds) ? 1 : 0; in select_status()
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()
1014 int readable, writable, exception; in assert_status() local
1047 if (fionread_status(fd, &readable, __func__) < 0) in assert_status()
1050 if (readable != assert_readable) { in assert_status()
[all …]
/freebsd-13.1/contrib/subversion/subversion/libsvn_repos/
H A Drev_hunt.c229 svn_boolean_t readable; in svn_repos_history2() local
232 if (! readable) in svn_repos_history2()
266 svn_boolean_t readable; in svn_repos_history2() local
272 if (! readable) in svn_repos_history2()
501 svn_boolean_t readable; in check_readability() local
503 if (! readable) in check_readability()
739 svn_boolean_t readable; in svn_repos_trace_node_locations() local
743 if (!readable) in svn_repos_trace_node_locations()
944 if (! readable) in svn_repos_node_location_segments()
1178 if (! readable) in find_interesting_revisions()
[all …]
H A Dreplay.c199 svn_boolean_t readable = TRUE; in add_subdir() local
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
525 if (readable) in path_driver_cb_func()
1094 svn_boolean_t readable = TRUE; in add_subdir_ev2() local
1138 if (! readable) in add_subdir_ev2()
1268 svn_boolean_t readable; in replay_node() local
[all …]
H A Dlog.c153 svn_boolean_t readable; in svn_repos_check_revision_access() local
159 if (! 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
288 if (! readable) in detect_changed()
368 if (! readable) in detect_changed()
372 if (readable) in detect_changed()
524 svn_boolean_t readable; in get_history() local
532 if (! readable) in get_history()
1437 if (! readable) in get_path_histories()
[all …]
H A 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-13.1/tests/sys/common/
H A Dnet_receiver.py70 readable, writable, exceptional = select.select(inputs, [], inputs)
71 for s in readable:
99 readable, writable, exceptional = select.select(inputs, [], inputs)
100 for s in readable:
/freebsd-13.1/contrib/ntp/lib/isc/
H A Drwlock.c119 result = isc_condition_init(&rwl->readable); in isc_rwlock_init()
145 (void)isc_condition_destroy(&rwl->readable); in isc_rwlock_init()
168 (void)isc_condition_destroy(&rwl->readable); in isc_rwlock_destroy()
257 WAIT(&rwl->readable, &rwl->lock); in isc_rwlock_lock()
273 WAIT(&rwl->readable, &rwl->lock); in isc_rwlock_lock()
459 BROADCAST(&rwl->readable); in isc_rwlock_downgrade()
512 BROADCAST(&rwl->readable); in isc_rwlock_unlock()
571 WAIT(&rwl->readable, &rwl->lock); in doit()
655 BROADCAST(&rwl->readable); in isc_rwlock_downgrade()
688 BROADCAST(&rwl->readable); in isc_rwlock_unlock()
[all …]
/freebsd-13.1/sys/dev/virtio/
H A Dvirtqueue.c522 int readable, int writable) in virtqueue_enqueue() argument
528 needed = readable + writable; in virtqueue_enqueue()
544 vq_ring_enqueue_indirect(vq, cookie, sg, readable, writable); in virtqueue_enqueue()
559 sg, readable, writable); in virtqueue_enqueue()
699 uint16_t head_idx, struct sglist *sg, int readable, int writable) in vq_ring_enqueue_segments() argument
706 needed = readable + writable; in vq_ring_enqueue_segments()
721 if (i >= readable) in vq_ring_enqueue_segments()
746 struct sglist *sg, int readable, int writable) in vq_ring_enqueue_indirect() argument
753 needed = readable + writable; in vq_ring_enqueue_indirect()
772 sg, readable, writable); in vq_ring_enqueue_indirect()
H A Dvirtqueue.h99 struct sglist *sg, int readable, int writable);
/freebsd-13.1/contrib/ntp/lib/isc/include/isc/
H A Drwlock.h68 isc_condition_t readable; member
81 isc_condition_t readable; member
/freebsd-13.1/crypto/openssl/doc/man3/
H A 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()
H A 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
H A 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
H A 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>.
H A 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:
/freebsd-13.1/usr.sbin/bhyvectl/
H A Dbhyvectl.c429 if (readable || writeable) { in print_msr_pm()
431 readable ? 'R' : '-', writeable ? 'W' : '-'); in print_msr_pm()
441 int byte, bit, readable, writeable; in dump_amd_msr_pm() local
449 readable = (bitmap[byte] & (1 << bit)) ? 0 : 1; in dump_amd_msr_pm()
451 print_msr_pm(msr, vcpu, readable, writeable); in dump_amd_msr_pm()
455 readable = (bitmap[byte] & (1 << bit)) ? 0 : 1; in dump_amd_msr_pm()
462 readable = (bitmap[byte] & (1 << bit)) ? 0 : 1; in dump_amd_msr_pm()
475 int byte, bit, readable, writeable; in dump_intel_msr_pm() local
483 readable = (bitmap[byte] & (1 << bit)) ? 0 : 1; in dump_intel_msr_pm()
485 print_msr_pm(msr, vcpu, readable, writeable); in dump_intel_msr_pm()
[all …]
/freebsd-13.1/tools/tools/kdrv/
H A 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-13.1/lib/libc/isc/
H A 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-13.1/contrib/file/magic/
H A DLocalstuff7 # text if readable, executable if runnable binary, data if unreadable.
/freebsd-13.1/contrib/wpa/hostapd/logwatch/
H A DREADME2 readable summary. This directory has a configuration file and a log
/freebsd-13.1/sys/contrib/device-tree/Bindings/security/tpm/
H A Dtpm-i2c.txt6 - label : human readable string describing the device, eg. "tpm"
/freebsd-13.1/contrib/file/magic/Magdir/
H A Dmarc217 # of bibliographic and related information in machine-readable
H A Dsereal14 # we'll print out e.g. 0x30 instead of the more human-readable
/freebsd-13.1/sys/contrib/device-tree/Bindings/power/
H A Dpd-samsung.yaml38 Human readable string with domain name. Will be visible in userspace
/freebsd-13.1/sys/dev/virtio/scsi/
H A Dvirtio_scsi.c1045 int *readable, int *writable) in vtscsi_fill_scsi_cmd_sglist() argument
1070 *readable = sg->sg_nseg; in vtscsi_fill_scsi_cmd_sglist()
1079 *writable = sg->sg_nseg - *readable; in vtscsi_fill_scsi_cmd_sglist()
1082 "writable=%d\n", req, ccbh, *readable, *writable); in vtscsi_fill_scsi_cmd_sglist()
1108 int readable, writable, error; in vtscsi_execute_scsi_cmd() local
1119 error = vtscsi_fill_scsi_cmd_sglist(sc, req, &readable, &writable); in vtscsi_execute_scsi_cmd()
1126 error = virtqueue_enqueue(vq, req, sg, readable, writable); in vtscsi_execute_scsi_cmd()
1433 struct sglist *sg, int readable, int writable, int flag) in vtscsi_execute_ctrl_req() argument
1442 error = virtqueue_enqueue(vq, req, sg, readable, writable); in vtscsi_execute_ctrl_req()

123456789