Searched refs:rv (Results 176 - 200 of 931) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/openzfs/cmd/zed/zed.d/
H A Dscrub_finish-notify.sh58 zed_notify "${note_subject}" "${note_pathname}"; rv=$?
60 exit "${rv}"
H A Dgeneric-notify.sh53 zed_notify "${note_subject}" "${note_pathname}"; rv=$?
55 exit "${rv}"
H A Dresilver_finish-notify.sh58 zed_notify "${note_subject}" "${note_pathname}"; rv=$?
60 exit "${rv}"
H A Dstatechange-notify.sh73 zed_notify "${note_subject}" "${note_pathname}"; rv=$?
76 exit "${rv}"
/freebsd-current/contrib/file/src/
H A Dascmagic.c75 int rv = 1; local
94 rv = 0;
96 rv = file_ascmagic_with_encoding(ms, &bb,
101 return rv;
114 int rv = -1; local
137 rv = 0;
152 rv = 0;
158 if ((rv = file_softmagic(ms, &bb, NULL, NULL,
160 rv = -1;
165 rv
[all...]
/freebsd-current/sys/dev/gpio/
H A Dpl061_acpi.c54 int rv; local
59 rv = ACPI_ID_PROBE(device_get_parent(dev), dev, gpio_ids, NULL);
61 if (rv <= 0)
64 return (rv);
/freebsd-current/sys/dev/hyperv/vmbus/
H A Dvmbus_res.c70 int rv; local
75 rv = ACPI_ID_PROBE(device_get_parent(dev), dev, id, NULL);
76 if (rv <= 0)
78 return (rv);
/freebsd-current/sys/dev/tpm/
H A Dtpm_acpi.c51 int rv; local
53 rv = ACPI_ID_PROBE(device_get_parent(dev), dev, tpm_ids, NULL);
54 if (rv <= 0)
57 return (rv);
/freebsd-current/sys/dev/clk/xilinx/
H A Dzynqmp_clk_gate.c58 int rv; local
62 rv = ZYNQMP_FIRMWARE_CLOCK_ENABLE(sc->firmware, sc->id);
64 rv = ZYNQMP_FIRMWARE_CLOCK_DISABLE(sc->firmware, sc->id);
65 if (rv != 0) {
H A Dzynqmp_clk_div.c62 int rv; local
65 rv = ZYNQMP_FIRMWARE_CLOCK_GETDIVIDER(sc->firmware, sc->id, &div);
66 if (rv != 0) {
87 int rv; local
100 rv = ZYNQMP_FIRMWARE_CLOCK_SETDIVIDER(sc->firmware, sc->id, div);
101 if (rv != 0) {
108 return (rv);
/freebsd-current/crypto/openssl/ssl/
H A Dssl_conf.c191 int rv; local
193 rv = SSL_set1_sigalgs_list(cctx->ssl, value);
196 rv = SSL_CTX_set1_sigalgs_list(cctx->ctx, value);
197 return rv > 0;
203 int rv; local
205 rv = SSL_set1_client_sigalgs_list(cctx->ssl, value);
208 rv = SSL_CTX_set1_client_sigalgs_list(cctx->ctx, value);
209 return rv > 0;
214 int rv; local
216 rv
232 int rv = 1; local
257 int rv = 1; local
268 int rv = 1; local
431 int rv = 1; local
454 int rv = 1; local
466 int rv = 1; local
586 int rv = 0; local
636 int rv = 0; local
655 int rv = 0; local
899 int rv = -3; local
929 int rv; local
[all...]
/freebsd-current/sys/dev/iicbus/controller/vybrid/
H A Dvf_i2c_acpi.c64 int rv; local
69 rv = ACPI_ID_PROBE(device_get_parent(dev), dev, vf_i2c_ids, NULL);
70 if (rv > 0)
71 return (rv);
/freebsd-current/stand/libofw/
H A Ddevicename.c41 int rv; local
48 rv = devparse(dev, getenv("currdev"), NULL);
49 if (rv == 0 && path != NULL)
51 return (rv);
/freebsd-current/contrib/netbsd-tests/lib/libc/gen/
H A Dt_nice.c179 int pri, rv, val; local
181 int rv, val; local
196 rv = pthread_create(&tid[i], NULL, threadfunc, &pri);
198 rv = pthread_create(&tid[i], NULL, threadfunc, &val);
200 ATF_REQUIRE(rv == 0);
202 rv = pthread_join(tid[i], NULL);
203 ATF_REQUIRE(rv == 0);
/freebsd-current/contrib/netbsd-tests/lib/libc/string/
H A Dt_strerror.c109 int rv; local
111 rv = strerror_r(EPERM, buf, 1);
112 ATF_REQUIRE(rv == ERANGE);
114 rv = strerror_r(INT_MAX, buf, sizeof(buf));
116 ATF_REQUIRE(rv == EINVAL);
119 rv = strerror_r(INT_MIN, buf, sizeof(buf));
121 ATF_REQUIRE(rv == EINVAL);
/freebsd-current/lib/libc/tests/nss/
H A Dgetaddrinfo_test.c128 int rv; local
132 rv = compare_addrinfo_(ai1, ai2);
134 if (rv == 0)
142 return (rv);
246 int i, rv, *pi; local
248 rv = 0;
278 rv = addrinfo_read_snapshot_addr(s,
282 if (rv != 0)
288 rv = -1;
296 if (i != 7 || rv !
310 int rv; local
384 int rv; local
414 int rv; local
[all...]
/freebsd-current/stand/uboot/
H A Duboot_fdt.c70 int rv; local
78 if ((rv = fdt_platform_load_from_ubenv("fdt_addr_r")) == 0)
80 if ((rv = fdt_platform_load_from_ubenv("fdt_addr")) == 0)
82 if ((rv = fdt_platform_load_from_ubenv("fdtaddr")) == 0)
85 rv = 1;
98 rv = 0;
104 return (rv);
/freebsd-current/stand/common/
H A Dmisc.c174 int rv; local
177 rv = mount(value, "/", 0, NULL);
178 if (rv == 0) {
188 return (rv);
198 int rv; local
200 if ((rv = devparse(&ncurr, value, NULL)) != 0)
201 return (rv);
/freebsd-current/contrib/netbsd-tests/lib/libc/locale/
H A Dt_mbrtowc.c163 size_t rv = mbrtowc(&dst, src, n, stp); local
165 if (rv == 0)
168 if (rv == (size_t)-2) {
174 if (rv == (size_t)-1) {
180 width += rv;
181 src += rv;
206 size_t rv; local
212 rv = mbsrtowcs(wbuf, &src, SIZE, stp);
214 ATF_REQUIRE_EQ_MSG(rv, t->length, "Incorrect length: %zd "
215 "(expected: %zd)", rv,
[all...]
/freebsd-current/tools/tools/intel-ucode-split/
H A Dintel-ucode-split.c123 ssize_t rv; local
156 rv = read(ifd, &hdr, sizeof(hdr));
157 if (rv < 0) {
159 } else if (rv == 0) {
161 } else if (rv < (ssize_t)sizeof(hdr)) {
192 rv = write(ofd, &hdr, sizeof(hdr));
193 if (rv < (ssize_t)sizeof(hdr))
199 rv = read(ifd, buf, len);
200 if (rv < 0)
202 else if (rv < (ssize_
[all...]
/freebsd-current/usr.sbin/efidp/
H A Defidp.c61 read_file(int fd, void **rv) argument
79 *rv = retval;
141 int rv; local
148 rv = efivar_unix_path_to_device_path(walker, &dp);
149 if (rv != 0 || dp == NULL) {
150 errno = rv;
171 int rv; local
177 rv = efivar_device_path_to_unix_path(dp, &dev, &relpath, &abspath);
178 if (rv == 0)
181 errno = rv;
[all...]
/freebsd-current/sys/arm/rockchip/
H A Drk32xx_mp.c83 int i, rv; local
85 rv = bus_space_map(fdtbus_bs_tag, IMEM_PHYSBASE, IMEM_SIZE, 0, &imem);
86 if (rv != 0)
88 rv = bus_space_map(fdtbus_bs_tag, PMU_PHYSBASE, PMU_SIZE, 0, &pmu);
89 if (rv != 0)
122 int rv; local
144 rv = OF_getprop(node, "enable-method", method, sizeof(method));
145 if (rv > 0 && strcmp(method, "psci") == 0) {
147 rv = psci_cpu_on(*reg, pmap_kextract((vm_offset_t)mpentry), id);
148 if (rv !
[all...]
/freebsd-current/crypto/openssl/demos/signature/
H A Drsa_pss_direct.c40 int rv = 0; local
108 rv = 1;
114 if (rv == 0)
117 return rv;
126 int rv = 0; local
178 rv = 1;
183 return rv;
188 int rv = 1; local
199 rv = 0;
203 return rv;
[all...]
/freebsd-current/sys/arm/arm/
H A Dsys_machdep.c67 vm_offset_t rv; local
77 rv = dcache_wb_pou_checked(addr, size);
78 if (rv == 1) /* see dcache_wb_pou_checked() */
79 rv = icache_inv_pou_checked(addr, size);
80 if (rv != 1) {
83 return (rv);
102 vm_offset_t rv; local
126 rv = sync_icache(ua.addr, ua.len);
127 if (rv != 1) {
131 ksi.ksi_addr = (void *)rv;
[all...]
/freebsd-current/lib/libc/rpc/
H A Dgetrpcent.c220 int rv; local
263 rv = NS_RETURN;
269 rv = NS_RETURN;
278 rv = NS_RETURN;
285 rv = rpcent_unpack(buffer, rpc, aliases, aliases_size, errnop);
286 if (rv != 0) {
288 rv = NS_NOTFOUND;
292 rv = NS_RETURN;
306 rv = NS_NOTFOUND;
309 rv
337 int rv; local
400 int rv; local
575 int rv; local
825 int rv, ret_errno; local
858 int rv, ret_errno; local
890 int rv, ret_errno; local
939 int rv; local
[all...]

Completed in 196 milliseconds

1234567891011>>