Searched refs:sync (Results 1 - 25 of 278) sorted by relevance

1234567891011>>

/freebsd-current/bin/sync/
H A DMakefile3 PROG= sync
4 MAN= sync.8
H A Dsync.c36 sync();
/freebsd-current/tools/test/stress2/misc/
H A Difconfig2.sh47 sync=/tmp/`basename $0`.sync
48 rm -f $sync
51 while [ ! -f $sync ]; do
54 while [ -f $sync ]; do
61 touch $sync
63 rm -f $sync
H A Dtruncate3.sh57 sync;sync;sync
59 sync;sync;sync
H A Dtruncate7.sh62 sync;sync;sync
64 sync;sync;sync
H A Dtmpfs25.sh39 sync=/tmp/$prog.sync
63 for n in `jot 300`; do [ -f $sync ] && break; sleep .2; done
73 touch $sync
84 rm -f $cont $sync
H A Dmountro2.sh47 sync ; sync ; sync
H A Dvunref2.sh55 sync;sync;sync
/freebsd-current/contrib/processor-trace/libipt/internal/include/
H A Dpt_sync.h42 * On success, stores a pointer to the next synchronization point in @sync.
46 * Returns -pte_internal if @sync, @pos, or @config is NULL.
50 extern int pt_sync_forward(const uint8_t **sync, const uint8_t *pos,
52 extern int pt_sync_backward(const uint8_t **sync, const uint8_t *pos,
60 * On success, stores @pos in @sync.
65 * Returns -pte_internal if @sync, @pos, or @config is NULL.
68 extern int pt_sync_set(const uint8_t **sync, const uint8_t *pos,
/freebsd-current/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dmutex_fuchsia.h13 #include <lib/sync/mutex.h>
H A Dmutex_fuchsia.cpp11 #include <lib/sync/mutex.h>
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/bclone/
H A Dbclone_prop_sync.ksh37 log_assert "Verify block cloning with all sync property settings"
43 log_must zfs set sync=$prop $TESTSRCFS
52 log_must zfs set sync=$srcprop $TESTSRCFS
54 log_must zfs set sync=$dstprop $TESTDSTFS
63 log_must zfs inherit sync $TESTSRCFS
64 log_must zfs inherit sync $TESTDSTFS
/freebsd-current/contrib/processor-trace/libipt/test/src/
H A Dptunit-sync.c37 /* A test fixture for sync tests. */
78 const uint8_t *sync; local
84 errcode = pt_sync_forward(&sync, NULL, &sfix->config);
87 errcode = pt_sync_forward(&sync, sfix->config.begin, NULL);
95 const uint8_t *sync; local
101 errcode = pt_sync_backward(&sync, NULL, &sfix->config);
104 errcode = pt_sync_backward(&sync, sfix->config.begin, NULL);
112 const uint8_t *sync; local
117 errcode = pt_sync_forward(&sync, sfix->config.begin, &sfix->config);
125 const uint8_t *sync; local
138 const uint8_t *sync; local
149 const uint8_t *sync; local
160 const uint8_t *sync; local
174 const uint8_t *sync; local
188 const uint8_t *sync; local
202 const uint8_t *sync; local
216 const uint8_t *sync; local
230 const uint8_t *sync; local
244 const uint8_t *sync; local
260 const uint8_t *sync; local
[all...]
/freebsd-current/release/arm64/
H A DROCKPRO64.conf22 of=/dev/${mddev} bs=512 seek=64 conv=sync
24 of=/dev/${mddev} bs=512 seek=16384 conv=sync
H A DROCK64.conf22 of=/dev/${mddev} bs=512 seek=64 conv=sync
24 of=/dev/${mddev} bs=512 seek=16384 conv=sync
H A DPINE64.conf22 of=/dev/${mddev} bs=128k seek=1 conv=sync
H A DPINE64-LTS.conf22 of=/dev/${mddev} bs=128k seek=1 conv=sync
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_sync/
H A Dzpool_sync_002_neg.ksh23 # A badly formed parameter passed to 'zpool sync' should
27 # 1. Create an array containing bad 'zpool sync' parameters.
36 log_assert "Execute 'zpool sync' using invalid parameters."
40 log_mustnot zpool sync ${args[i]}
44 log_pass "Invalid parameters to 'zpool sync' fail as expected."
/freebsd-current/libexec/rc/
H A Drc.resume50 /bin/sync && /bin/sync && /bin/sync
H A Drc.suspend68 /bin/sync && /bin/sync && /bin/sync
/freebsd-current/usr.sbin/bhyve/
H A Dmevent_test.c118 struct esync *sync = param; local
120 pthread_mutex_lock(&sync->e_mt);
121 pthread_cond_signal(&sync->e_cond);
122 pthread_mutex_unlock(&sync->e_mt);
128 struct esync sync; local
134 pthread_mutex_init(&sync.e_mt, NULL);
135 pthread_cond_init(&sync.e_cond, NULL);
137 pthread_mutex_lock(&sync.e_mt);
139 mev = mevent_add(fd, EVF_READ, echoer_callback, &sync);
145 while (!pthread_cond_wait(&sync
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_zil.ksh36 # 1. Create a ZVOLs with various combination of "logbias" and "sync" values
58 for sync in ${sync_prop_vals[@]}; do
59 # 1. Create a ZVOL with logbias=throughput and sync=always
60 log_must zfs create -V $VOLSIZE -b 128K -o sync=$sync \
/freebsd-current/contrib/ntp/scripts/ntp-wait/
H A Dntp-wait.in42 my $sync = $info->{status_line}{sync};
44 if ($leap =~ /(sync|leap)_alarm/) {
51 # We could check $sync here to make sure we like the source...
/freebsd-current/contrib/kyua/utils/process/
H A Dsystembuf.hpp60 int sync(void);
/freebsd-current/contrib/processor-trace/libipt/src/
H A Dpt_sync.c130 int pt_sync_set(const uint8_t **sync, const uint8_t *pos, argument
136 if (!sync || !pos || !config)
156 *sync = pos;
161 int pt_sync_forward(const uint8_t **sync, const uint8_t *pos, argument
166 if (!sync || !pos || !config)
204 *sync = current;
209 int pt_sync_backward(const uint8_t **sync, const uint8_t *pos, argument
214 if (!sync || !pos || !config)
245 *sync = next;

Completed in 302 milliseconds

1234567891011>>