HomeSort by: relevance | last modified time | path
    Searched refs:error (Results 1 - 25 of 4639) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/next68k/include/
bus_dma.h 2 #error "this file was replaced by m68k/include/bus_dma.h"
  /src/tests/usr.bin/xlint/lint1/
msg_224.c 8 /* expect+1: error: syntax error 'error' [249] */
9 void example1(void) { "syntax" error; }
10 /* expect+1: error: syntax error 'error' [249] */
11 void example2(void) { "syntax" error; }
12 /* expect+1: error: syntax error 'error' [249] *
    [all...]
  /src/sys/rump/include/rump/
rumperr.h 10 rump_strerror(int error)
13 switch (error) {
15 return "No error: zero, zip, zilch, none!";
25 return "Input/output error";
31 return "Exec format error";
175 return "Authentication error";
207 return "Protocol error";
209 return "Invalid error!";
  /src/sys/compat/common/
compat_43_mod.c 52 int error; local in function:compat_43_init
54 error = kern_exit_43_init();
55 if (error != 0)
56 return error;
58 error = kern_info_43_init();
59 if (error != 0)
62 error = kern_resource_43_init();
63 if (error != 0)
66 error = kern_sig_43_init();
67 if (error != 0
115 int error; local in function:compat_43_fini
    [all...]
compat_12_mod.c 56 int error; local in function:compat_12_init
58 error = kern_xxx_12_init();
59 if (error != 0)
60 return error;
62 error = vm_12_init();
63 if (error != 0) {
65 return error;
68 error = vfs_syscalls_12_init();
69 if (error != 0) {
72 return error;
81 int error; local in function:compat_12_fini
    [all...]
compat_30_mod.c 58 int error = 0; local in function:compat_30_init
60 error = vfs_syscalls_30_init();
61 if (error != 0)
62 return error;
64 error = kern_time_30_init();
65 if (error != 0) {
67 return error;
69 error = uipc_syscalls_30_init();
70 if (error != 0) {
73 return error;
85 int error = 0; local in function:compat_30_fini
    [all...]
compat_100_mod.c 52 int error; local in function:compat_100_init
54 error = kern_event_100_init();
55 if (error)
56 return error;
63 int error; local in function:compat_100_fini
65 error = kern_event_100_fini();
66 if (error)
67 return error;
  /src/sys/stand/efiboot/
devopen.c 36 int error; local in function:devopen
38 error = efi_net_open(f, fname, file);
39 if (error)
46 if (error)
47 error = efi_block_open(f, fname, file);
48 if (error)
49 error = efi_file_open(f, fname);
51 return error;
  /src/lib/libc/stdio/
floatio.h 54 #error "floating point buffers too small"
  /src/sys/arch/hpc/stand/hpcboot/menu/
platid.c 4 #error "compile with UNICODE"
  /src/sys/rump/net/lib/libtap/
tap_component.c 44 int error; local in function:RUMP_COMPONENT
46 error = devsw_attach("tap", NULL, &tap_bmajor,
48 if (error != 0)
49 panic("tap devsw attach failed: %d", error);
51 error = rump_vfs_makeonedevnode(S_IFCHR, "/dev/tap", tap_cmajor,
53 if (error != 0)
54 panic("cannot create tap device node: %d", error);
56 error = rump_vfs_makedevnodes(S_IFCHR, "/dev/tap", '0', tap_cmajor,
58 if (error != 0)
59 panic("cannot create tap[0-4] device node: %d", error);
    [all...]
  /src/sys/rump/net/lib/libtun/
tun_component.c 45 int error; local in function:RUMP_COMPONENT
47 error = devsw_attach("tun", NULL, &tun_bmajor,
49 if (error != 0)
50 panic("tun devsw attach failed: %d", error);
52 error = rump_vfs_makeonedevnode(S_IFCHR, "/dev/tun", tun_cmajor,
54 if (error != 0)
55 panic("cannot create tun device node: %d", error);
57 error = rump_vfs_makedevnodes(S_IFCHR, "/dev/tun", '0', tun_cmajor,
59 if (error != 0)
60 panic("cannot create tun[0-4] device node: %d", error);
    [all...]
  /src/sys/external/bsd/drm2/linux/
linux_module.c 58 int error; local in function:linux_init
60 error = linux_idr_module_init();
61 if (error) {
62 printf("linux: unable to initialize idr: %d\n", error);
66 error = linux_kmap_init();
67 if (error) {
68 printf("linux: unable to initialize kmap: %d\n", error);
72 error = linux_rcu_gc_init();
73 if (error) {
74 printf("linux: unable to initialize rcu gc: %d\n", error);
    [all...]
  /src/sys/external/bsd/drm2/i915drm/
i915_module.c 64 int error; local in function:i915drmkms_init
66 error = drm_guarantee_initialized();
67 if (error)
68 return error;
71 error = -i915_globals_init();
72 if (error)
73 return error;
111 int error; local in function:i915drmkms_modcmd
117 error = i915drmkms_init();
119 error = i915drmkms_guarantee_initialized()
    [all...]
  /src/sys/external/bsd/drm2/nouveau/
nouveau_module.c 72 int error; local in function:nouveau_modcmd
76 error = nouveau_init();
77 if (error) {
79 error);
80 return error;
83 error = config_init_component(cfdriver_ioconf_nouveau,
85 if (error) {
87 ": %d\n", error);
89 return error;
96 error = config_fini_component(cfdriver_ioconf_nouveau
    [all...]
  /src/sys/rump/dev/lib/libaudio/
audio_component.c 46 int error; local in function:RUMP_COMPONENT
48 if ((error = devsw_attach("audio", NULL, &audio_bmajor,
50 panic("audio devsw attach failed: %d", error);
51 if ((error = rump_vfs_makedevnodes(S_IFCHR, "/dev/audio", '0',
53 panic("cannot create audio device nodes: %d", error);
54 if ((error = rump_vfs_makesymlink("audio0", "/dev/audio")) != 0)
55 panic("cannot create audio symlink: %d", error);
56 if ((error = rump_vfs_makedevnodes(S_IFCHR, "/dev/sound", '0',
58 panic("cannot create sound device nodes: %d", error);
59 if ((error = rump_vfs_makesymlink("sound0", "/dev/sound")) != 0
    [all...]
  /src/sys/net/
if_module.h 32 error = config_cfdriver_attach(& name ## _cd); \
33 if (error) { \
35 "%s, error %d\n", __func__, name ## _cd.cd_name,\
36 error); \
41 error = config_cfdriver_detach(&name ## _cd); \
42 if (error) { \
44 "error %d\n", __func__, name ## _cd.cd_name, \
45 error); \
60 int error = 0; \
74 error = name ## detach();
    [all...]
  /src/sys/arch/hpc/stand/include/machine/
int_const.h 10 #error "unknown architecture"
int_fmtio.h 10 #error "unknown architecture"
int_limits.h 10 #error "unknown architecture"
int_mwgwtypes.h 10 #error "unknown architecture"
int_types.h 10 #error "unknown architecture"
  /src/sys/external/bsd/drm2/radeon/
radeon_module.c 63 int error; local in function:radeon_init
65 error = drm_guarantee_initialized();
66 if (error)
67 return error;
100 int error; local in function:radeon_modcmd
106 error = radeon_init();
108 error = radeon_guarantee_initialized();
110 if (error) {
112 error);
113 return error;
    [all...]
  /src/sys/external/bsd/drm2/via/
via_module.c 55 int error; local in function:viadrm_init
59 error = drm_guarantee_initialized();
60 if (error)
61 return error;
87 int error; local in function:viadrmums_modcmd
92 error = viadrm_init();
94 error = viadrm_guarantee_initialized();
96 if (error) {
98 error);
99 return error;
    [all...]
  /src/sys/external/bsd/drm2/vmwgfx/
vmwgfx_module.c 56 int error; local in function:vmwgfx_init
58 error = drm_guarantee_initialized();
59 if (error)
60 return error;
90 int error; local in function:vmwgfx_modcmd
96 error = vmwgfx_init();
98 error = vmwgfx_guarantee_initialized();
100 if (error) {
102 error);
103 return error;
    [all...]

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>