Searched refs:todo (Results 1 - 25 of 49) sorted by relevance

12

/freebsd-11-stable/contrib/tnftp/
H A DMakefile.am12 todo \
/freebsd-11-stable/contrib/pjdfstest/tests/unlink/
H A D08.t14 todo Linux "According to POSIX: EPERM - The file named by path is a directory, and either the calling process does not have appropriate privileges, or the implementation prohibits using unlink() on directories."
H A D09.t38 todo FreeBSD:ZFS "Removing a file protected by SF_APPEND should return EPERM."
40 todo FreeBSD:ZFS "Removing a file protected by SF_APPEND should return EPERM."
42 todo FreeBSD:ZFS "Removing a file protected by SF_APPEND should return EPERM."
H A D10.t40 todo FreeBSD:ZFS "Removing a file from a directory protected by SF_APPEND should return EPERM."
43 todo FreeBSD:ZFS "Removing a file from a directory protected by SF_APPEND should return EPERM."
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_pipe.c79 ssize_t sz, todo, done; local
92 todo = 2 * 1024 * 1024;
93 REQUIRE_LIBC(f = malloc(todo), NULL);
126 printf("Expected: %#zx\n", (size_t)todo);
128 exit(done != todo);
141 /* We write exactly 'todo' bytes. The very first write(2)
145 while(todo > 0 && ((sz = write(pp[1], f, todo)) > 0))
146 todo -= sz;
/freebsd-11-stable/contrib/pjdfstest/tests/open/
H A D11.t30 todo FreeBSD:ZFS "When fle is protected by SF_APPEND, open(O_TRUNC) should return EPERM."
32 todo FreeBSD:ZFS "When fle is protected by SF_APPEND, open(O_TRUNC) should return EPERM."
34 todo FreeBSD:ZFS "When fle is protected by SF_APPEND, open(O_TRUNC) should return EPERM."
36 todo FreeBSD:ZFS "When fle is protected by SF_APPEND, open(O_TRUNC) should return EPERM."
/freebsd-11-stable/contrib/pjdfstest/tests/rename/
H A D06.t33 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
35 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
50 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
52 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
H A D07.t37 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
39 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
/freebsd-11-stable/contrib/pjdfstest/tests/rmdir/
H A D12.t17 todo FreeBSD "According to POSIX: EEXIST or ENOTEMPTY - The path argument names a directory that is not an empty directory, or there are hard links to the directory other than dot or a single entry in dot-dot."
H A D09.t38 todo FreeBSD:ZFS "Removing a directory protected by SF_APPEND should return EPERM."
40 todo FreeBSD:ZFS "Removing a directory protected by SF_APPEND should return EPERM."
42 todo FreeBSD:ZFS "Removing a directory protected by SF_APPEND should return EPERM."
H A D10.t40 todo FreeBSD:ZFS "Removing an entry from directory protected by SF_APPEND should return EPERM."
43 todo FreeBSD:ZFS "Removing an entry from directory protected by SF_APPEND should return EPERM."
/freebsd-11-stable/tools/regression/posixsem/
H A Dtest.h55 void todo(const char *reason);
H A Dtest.c107 todo(const char *reason) function
/freebsd-11-stable/contrib/gdb/gdb/
H A Dremote-sds.c554 int todo;
564 todo = min (len, max_buf_size);
575 for (i = 0; i < todo; i++)
578 sds_send (buf, 8 + todo);
582 myaddr += todo;
583 memaddr += todo;
584 len -= todo;
602 int todo;
612 todo = min (len, max_buf_size);
620 buf[6] = (int) (todo >>
550 int todo; local
598 int todo; local
[all...]
/freebsd-11-stable/sys/fs/nandfs/
H A Dnandfs_bmap.c217 nandfs_lbn_t todo; local
220 todo = oblk - nblk;
223 __func__, node, oblk, nblk, todo));
225 error = bmap_truncate_mapping(node, oblk, todo);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/locale/
H A Dt_io.c126 size_t todo = MIN((size_t)len, ib->buflen - ib->off); local
128 memcpy(buf, ib->buf + ib->off, todo);
129 ib->off += todo;
130 return todo;
/freebsd-11-stable/usr.sbin/ntp/doc/hints/
H A DMakefile12 sun4 svr4-dell svr4_package todo vxworks.html winnt.html
/freebsd-11-stable/contrib/unbound/cachedb/
H A Dcachedb.h65 int todo; member in struct:cachedb_qstate
/freebsd-11-stable/contrib/pjdfstest/tests/link/
H A D12.t34 todo FreeBSD:ZFS "Creating a hard link to a file protected by SF_IMMUTABLE should return EPERM."
36 todo FreeBSD:ZFS "Creating a hard link to a file protected by SF_IMMUTABLE should return EPERM."
39 todo FreeBSD:ZFS "Creating a hard link to a file protected by SF_IMMUTABLE should return EPERM."
/freebsd-11-stable/sys/netipsec/
H A Dipsec_mbuf.c91 int todo, len, done, alloc; local
97 todo = remain;
98 while (todo > 0) {
99 if (todo > MHLEN) {
114 len = min(todo, len);
118 todo -= len;
/freebsd-11-stable/usr.bin/bmake/tests/
H A Dcommon.sh330 todo=
336 eval todo=\${TEST_${N}_TODO}
345 if [ ! -z "$fail" -o ! -z "$todo" -o ! -z "$skip" ]; then
351 if [ ! -z "$todo" ] ; then
352 msg="${msg}TODO ${todo}; "
/freebsd-11-stable/usr.bin/gprof/
H A Dprintgprof.c540 nltype *todo; local
548 todo = cyclep -> cnext;
550 for ( (doing = todo)&&(todo = doing -> cnext);
552 (doing = todo )&&(todo = doing -> cnext )){
706 int idx, nnames, todo, i, j; local
722 for ( idx = 1 , todo = nnames ; idx <= ncycle ; idx++ ) {
723 namesortnlp[todo++] = &cyclenl[idx];
726 idx = ( todo
[all...]
/freebsd-11-stable/contrib/pjdfstest/tests/ftruncate/
H A D08.t42 todo FreeBSD:ZFS "Truncating a file protected by SF_APPEND should return EPERM."
44 todo FreeBSD:ZFS "Truncating a file protected by SF_APPEND should return EPERM."
/freebsd-11-stable/contrib/pjdfstest/tests/truncate/
H A D08.t42 todo FreeBSD:ZFS "Truncating a file protected by SF_APPEND should return EPERM."
44 todo FreeBSD:ZFS "Truncating a file protected by SF_APPEND should return EPERM."
/freebsd-11-stable/usr.bin/vmstat/
H A Dvmstat.c164 int bufsize, c, len, reps, todo; local
169 interval = reps = todo = 0;
189 todo |= FORKSTAT;
198 todo |= INTRSTAT;
204 todo |= MEMSTAT;
217 todo |= OBJSTAT;
225 todo |= SUMSTAT;
233 todo |= ZMEMSTAT;
244 if (todo == 0)
245 todo
[all...]

Completed in 217 milliseconds

12