Searched refs:error (Results 251 - 275 of 6972) sorted by relevance

<<11121314151617181920>>

/netbsd-6-1-5-RELEASE/sys/arch/usermode/include/
H A Dint_mwgwtypes.h15 #error port me
H A Dint_types.h15 #error port me
H A Dlimits.h15 #error port me
H A Dnetbsd32_machdep.h15 #error port me
H A Dwchar_limits.h15 #error port me
/netbsd-6-1-5-RELEASE/tests/dev/md/
H A Dh_mdserv.c27 int fd, error; local
37 error = 0;
48 error = EPIPE;
54 error = rump_daemonize_done(error);
55 REQUIRE(error, "rump_daemonize_done");
57 if (error)
68 int fd, error; local
77 error = rump_daemonize_begin();
78 REQUIRE(error, "rump_daemonize_begi
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/cpp/
H A Ddir-only-1.c10 #error directive inside block comment
14 #error directive inside line comment
21 #error Comment started inside a string literal
26 #error ignored escaped newline
31 #error escaped newline did not preserve beginning of line
36 #error Missed string terminator.
43 #error Failed to include header.
51 #error Escaped newline breaks block comment initiator.
60 #error Escaped newline breaks block comment terminator.
66 #error Misse
[all...]
H A Dif-oppr.c14 #error #else block evaluated for true conditional
18 #error #if block evaluated for false conditional
22 /* : strictly higher than ?. This would give a syntax error otherwise. */
28 #error operator ?: has higher precedence than operator ||
34 #error operator || has higher precedence than operator &&
39 #error operator && has higher precedence than operator |
45 #error operator | has higher precedence than operator ^
51 #error operator ^ has higher precedence than operator &
56 #error operator & has higher precedence than operator ==
63 #error operato
[all...]
H A Darith-3.c123 # error Please extend the macros here so that this file tests your target
158 # error /* { dg-bogus "error" } */
162 # error /* { dg-bogus "error" } */
166 # error /* { dg-bogus "error" } */
170 # error /* { dg-bogus "error" } */
181 # error /* { d
[all...]
/netbsd-6-1-5-RELEASE/sys/rump/dev/lib/libcgd/
H A Dcomponent.c44 int error; local
49 if ((error = devsw_attach("/dev/cgd0", &cgd_bdevsw, &bmaj,
51 panic("cannot attach cgd: %d", error);
53 if ((error = rump_vfs_makedevnodes(S_IFBLK, "/dev/cgd0", 'a',
55 panic("cannot create cooked cgd dev nodes: %d", error);
56 if ((error = rump_vfs_makedevnodes(S_IFCHR, "/dev/rcgd0", 'a',
58 panic("cannot create raw cgd dev nodes: %d", error);
/netbsd-6-1-5-RELEASE/sys/rump/dev/lib/libfss/
H A Dcomponent.c44 int error; local
49 if ((error = devsw_attach("fss", &fss_bdevsw, &bmaj,
51 panic("cannot attach fss: %d", error);
53 if ((error = rump_vfs_makedevnodes(S_IFBLK, "/dev/fss", '0',
55 panic("cannot create cooked fss dev nodes: %d", error);
56 if ((error = rump_vfs_makedevnodes(S_IFCHR, "/dev/rfss", '0',
58 panic("cannot create raw fss dev nodes: %d", error);
/netbsd-6-1-5-RELEASE/sys/rump/dev/lib/librnd/
H A Dcomponent.c47 int error; local
52 if ((error = devsw_attach("random", NULL, &bmaj,
54 panic("cannot attach rnd: %d", error);
56 if ((error = rump_vfs_makeonedevnode(S_IFCHR, "/dev/random",
58 panic("cannot create /dev/random: %d", error);
59 if ((error = rump_vfs_makeonedevnode(S_IFCHR, "/dev/urandom",
61 panic("cannot create /dev/urandom: %d", error);
/netbsd-6-1-5-RELEASE/sys/rump/net/lib/libnpf/
H A Dcomponent.c23 int error; local
25 error = devsw_attach("npf", NULL, &bmajor, &npf_cdevsw, &cmajor);
26 if (error) {
27 panic("npf attach failed: %d", error);
30 error = rump_vfs_makeonedevnode(S_IFCHR, "/dev/npf", cmajor, 0);
31 if (error) {
32 panic("npf device node creation failed: %d", error);
/netbsd-6-1-5-RELEASE/share/examples/puffs/pgfs/
H A Dpgfs_puffs.c89 int error; local
95 error = getattr(xc, fileid, va, GETATTR_ALL);
96 if (error != 0) {
99 error = commit(xc);
100 if (error != 0) {
106 if (error == EAGAIN) {
111 return error;
139 int error; local
161 error = lookupp(xc, parent_fileid, &child_fileid);
162 if (error !
298 int error; local
389 int error; local
431 int error; local
470 int error; local
544 int error; local
596 int error; local
638 int error; local
676 int error; local
722 int error; local
769 int error; local
968 int error; local
1055 int error; local
1104 int error; local
1134 int error; local
1180 int error; local
[all...]
H A Dpgfs_subs.c43 * an error because PGresult is freed in the library without saving
219 int error; local
222 error = sendcmd(xc, c, fd, size);
223 if (error != 0) {
224 return error;
226 error = simplefetch(xc, INT4OID, &ret);
227 if (error != 0) {
228 if (error == EEXIST) {
231 * caused a duplicated key error. retry.
234 error
248 int error; local
271 int error; local
295 int error; local
325 int error; local
340 int error; local
361 int error; local
380 int error; local
399 int error; local
446 int error; local
633 int error; local
656 int error; local
684 int error; local
705 int error; local
735 int error; local
759 int error; local
799 int error; local
865 int error; local
911 int error; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/cpp/
H A Darith-3.c123 # error Please extend the macros here so that this file tests your target
146 #if UTARG_MAX_PLUS_1 /* { dg-error "too large" } */
148 #if UTARG_MAX_PLUS_1_HEX /* { dg-error "too large" } */
152 #if UTARG_MAX_PLUS_1_OCT /* { dg-error "too large" } */
158 # error /* { dg-bogus "error" } */
162 # error /* { dg-bogus "error" } */
166 # error /* { dg-bogus "error" } */
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/npf/npftest/libnpftest/
H A Dnpf_table_test.c56 int error; local
60 error = npf_table_insert(tblset, HASH_TID, alen, addr, nm);
61 fail |= !(error == 0);
62 error = npf_table_insert(tblset, HASH_TID, alen, addr, nm);
63 fail |= !(error != 0);
65 error = npf_table_insert(tblset, TREE_TID, alen, addr, nm);
66 fail |= !(error == 0);
67 error = npf_table_insert(tblset, TREE_TID, alen, addr, nm);
68 fail |= !(error != 0);
80 int error, ale local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/mmix/
H A Derr-bpo3.s6 LDO $43,a+52 % { dg-error "no suitable GREG definition" "" }
10 LDO $143,d+12 % { dg-error "no suitable GREG definition" "" }
11 LDO $243,a+12 % { dg-error "no suitable GREG definition" "" }
12 LDA $103,d+40 % { dg-error "no suitable GREG definition" "" }
13 LDA $13,a+24 % { dg-error "no suitable GREG definition" "" }
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dbuiltin-redefine.c9 #error "__DATE__ is defined, but should not be (-U command line error)"
14 #error "__TIME__ is not defined as expected (-D command line error)"
19 #error "__TIMESTAMP__ is not defined (built-in macro expectation error)"
59 #error "Expected built-in is not defined (built-in macro expectation error)"
70 #error "Expected built-in is not defined (built-in macro expectation error)"
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/dns/
H A Ddns_strerror.c7 /* name service lookup error code to string
14 /* dns_strerror() maps a name service lookup error to printable string.
42 * Mapping from error code to printable string. The herror() routine does
46 unsigned error; member in struct:dns_error_map
53 NO_RECOVERY, "Non-recoverable error",
57 /* dns_strerror - map resolver error code to printable string */
59 const char *dns_strerror(unsigned error) argument
65 if (dns_error_map[i].error == error)
68 unknown = vstring_alloc(sizeof("Unknown error XXXXX
[all...]
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dvfs_xattr.c157 int error; local
160 error = copyinstr(SCARG(uap, attrname), attrname,
162 if (error)
163 return (error);
166 error = namei_simple_user(SCARG(uap, path),
168 if (error) {
169 return (error);
174 error = pathbuf_copyin(SCARG(uap, filename), &file_pb);
175 if (error) {
177 return (error);
222 int error; local
289 int error; local
346 int error; local
374 int error; local
432 int error; local
463 int error; local
494 int error; local
526 int error; local
557 int error; local
588 int error; local
618 int error; local
646 int error; local
674 int error; local
703 int error; local
728 int error; local
753 int error; local
805 int error; local
843 int error; local
882 int error; local
918 int error; local
951 int error; local
985 int error; local
1018 int error; local
1071 int error; local
1123 int error; local
1174 int error; local
1204 int error; local
1235 int error; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Drepos.c22 string. On error, gives a fatal error and does not return.
23 UPDATE_DIR is the path from where cvs was invoked (for use in error
66 error (0, 0, "in directory `%s':", xupdate_dir);
67 error (1, 0, "there is no version here; do `%s checkout' first",
77 error (0, 0, "in directory `%s':", xupdate_dir);
78 error (0, 0, "CVS directory found without administrative files.");
79 error (0, 0, "Use CVS to create the CVS directory, or rename the");
80 error (0, 0, "directory if it is intended to store something");
81 error (
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/mips/
H A Dmips64r2-ill.s12 dext $4, $5, -1, 1 # error (position)
15 dext $4, $5, 64, 1 # error (position)
18 dext $4, $5, 0, 0 # error (size)
21 dext $4, $5, 0, 65 # error (size)
31 dext $4, $5, 1, 64 # error (size)
33 dext $4, $5, 63, 2 # error (size)
34 dext $4, $5, 63, 63 # error (size)
35 dext $4, $5, 63, 64 # error (size)
40 dextm $4, $5, -1, 33 # error (position)
43 dextm $4, $5, 32, 33 # error (positio
[all...]
/netbsd-6-1-5-RELEASE/sys/compat/linux/common/
H A Dlinux_time.c80 int error = 0; local
83 error = compat_50_sys_gettimeofday(l, (const void *)uap, retval);
84 if (error)
85 return (error);
89 error = copyout(&linux_sys_tz, SCARG(uap, tzp), sizeof(linux_sys_tz));
90 if (error)
91 return (error);
104 int error = 0; local
107 error = compat_50_sys_settimeofday(l, (const void *)uap, retval);
108 if (error)
151 int error, error1; local
195 int error; local
222 int error; local
246 int error; local
272 int error, error1; local
[all...]
/netbsd-6-1-5-RELEASE/sbin/fsck_v7fs/
H A Dmain.c61 int error; local
63 if ((error = v7fs_io_init(&fs, mount, V7FS_BSIZE))) {
68 if ((error = v7fs_superblock_load(fs))) {
69 if ((error != EINVAL)) {
79 error = check_filesystem(fs, flags);
85 return error;
91 int error; local
97 if ((error = freeinode_check(fs)))
98 return error;
102 if ((error
228 int error = 0; local
[all...]

Completed in 271 milliseconds

<<11121314151617181920>>