Searched refs:rval (Results 51 - 75 of 498) sorted by relevance

1234567891011>>

/netbsd-current/distrib/utils/libhack/
H A Dgetpwent.c100 int rval; local
104 rval = !pwscan(0, 0, NULL, pwres, buf, bufsiz);
105 if (rval)
109 return rval;
124 int rval; local
128 rval = !pwscan(1, 0, name, pwres, buf, bufsiz);
131 if (rval)
135 return rval;
150 int rval; local
154 rval
[all...]
/netbsd-current/external/bsd/libbind/dist/irs/
H A Dgen_nw.c121 struct nwent *rval; local
129 rval = (*nw->next)(nw);
130 if (rval)
131 return (rval);
147 struct nwent *rval; local
156 rval = (*nw->byname)(nw, name, type);
157 if (rval != NULL)
158 return (rval);
170 struct nwent *rval; local
179 rval
[all...]
H A Dgen_ho.c130 struct hostent *rval; local
142 rval = (*ho->byname)(ho, name);
143 if (rval != NULL)
144 return (rval);
173 struct hostent *rval; local
185 rval = (*ho->byname2)(ho, name, af);
186 if (rval != NULL)
187 return (rval);
212 struct hostent *rval; local
225 rval
252 struct hostent *rval; local
341 struct addrinfo *rval = NULL; local
[all...]
H A Dirp_ng.c167 int rval = 0; local
185 rval = 1;
193 return (rval);
210 int rval = 0; local
225 rval = 1;
231 return (rval);
/netbsd-current/external/bsd/nvi/dist/ip/
H A Dip_screen.c89 int rval; local
92 rval = ip_term_end(wp->gp);
97 return (rval);
/netbsd-current/usr.sbin/mtree/
H A Dgetid.c154 int rval; local
158 rval = grscan(1, 0, name);
161 return (rval) ? &_gr_group : NULL;
167 int rval; local
171 rval = grscan(1, gid, NULL);
174 return (rval) ? &_gr_group : NULL;
303 int rval; local
307 rval = pwscan(1, 0, name);
310 return (rval) ? &_pw_passwd : NULL;
316 int rval; local
[all...]
/netbsd-current/bin/cp/
H A Dutils.c103 int ch, checkch, from_fd, rcount, rval, to_fd, tolnk, wcount; local
179 rval = 0;
224 rval = 1;
235 rval = 1;
245 rval = 1;
254 rval = 1;
263 rval = 1;
268 if (rval == 1) {
274 rval = 1;
285 rval
366 int rval, islink; local
[all...]
/netbsd-current/sys/dev/dkwedge/
H A Ddkwedge_bsdlabel.c350 int i, rval; local
395 rval = (*actn)(a, dp, i, this_ext);
396 if (rval != SCAN_CONTINUE)
397 return (rval);
422 int rval; local
429 rval = validate_label(a, ptn_base + BSD44_MBR_LABELSECTOR, 0);
432 if (rval == SCAN_FOUND)
433 return (rval);
444 int rval; local
453 rval
[all...]
/netbsd-current/bin/rm/
H A Drm.c163 int flags, needstat, rval; local
233 rval = 0;
242 rval = rmdir(p->fts_accpath);
243 if (rval != 0 && fflag && errno == ENOENT)
248 rval = undelete(p->fts_accpath);
249 if (rval != 0 && fflag && errno == ENOENT)
258 rval = unlink(p->fts_accpath);
259 if (rval != 0 && fflag && NONEXISTENT(errno))
263 if (rval != 0) {
280 int rval; local
[all...]
/netbsd-current/lib/libutil/
H A Dif_media.c146 int option, rval = 0; local
164 rval |= IFM_OPTIONS(option);
167 rval = -1;
175 return rval;
179 return (rval);
/netbsd-current/external/bsd/nvi/dist/cl/
H A Dcl_read.c162 input_t rval; local
275 rval = INP_OK;
278 rval = INP_EOF;
282 rval = INP_INTR;
284 rval = INP_ERR;
293 rval = INP_OK;
300 return (rval);
310 int rval; local
312 rval = api_opts_set(sp, L("lines"), NULL, lines, 0);
314 rval
[all...]
/netbsd-current/external/gpl2/gmake/dist/w32/
H A Dpathstuff.c135 char *rval; local
196 rval = savestring(path, strlen(path));
197 return rval;
237 rval = savestring(path, strlen(path));
238 return rval;
250 rval = savestring(nutc_path, strlen(nutc_path));
252 return rval;
/netbsd-current/usr.bin/cksum/
H A Dcksum.c155 int ch, fd, rval, pflag, nohashstdin; local
295 rval = 0;
328 rval = 1;
360 rval = 1;
383 rval = 1;
401 rval = 1;
412 rval = 1;
436 rval = 1;
467 rval = 1;
476 rval
[all...]
/netbsd-current/external/mpl/dhcp/dist/omapip/
H A Dhash.c66 struct hash_table *rval; local
94 rval = dmalloc(sizeof(struct hash_table) +
96 if (!rval)
98 rval -> hash_count = count;
99 *tp = rval;
173 struct hash_bucket *rval; local
176 rval = dmalloc (127 * sizeof (struct hash_bucket),
178 if (!rval)
179 return rval;
181 rval
[all...]
/netbsd-current/external/bsd/nvi/dist/ex/
H A Dex_filter.c104 int input[2], output[2], rval; local
108 rval = 0;
181 rval = 1;
228 rval = 1;
249 rval = 1;
257 rval = 1;
264 rval = 1;
267 if (rval == 0 && ftype == FILTER_BANG &&
270 rval = 1;
292 ftype == FILTER_READ && F_ISSET(sp, SC_VI) ? 1 : 0, 0) || rval);
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/cp/
H A Dsearch.c909 tree rval;
1018 if (nval == lfi->rval && shared_member_p (nval))
1028 if (!lfi->ambiguous && lfi->rval)
1033 lfi->ambiguous = tree_cons (NULL_TREE, lfi->rval, NULL_TREE);
1045 lfi->rval = nval;
1097 tree rval, rval_binfo = NULL_TREE;
1102 this can be set with useful information, even when rval is not
1105 checks. Whereas rval is only set if a proper (not hidden)
1149 rval = lfi.rval;
908 tree rval; member in struct:lookup_field_info
1096 tree rval, rval_binfo = NULL_TREE; local
1342 tree rval = lookup_member (xbasetype, name, protect, want_type, local
1359 tree rval = lookup_member (xbasetype, name, protect, /*want_type=*/false, local
1433 tree rval; local
1477 tree rval; local
1528 tree rval; local
1559 tree rval = NULL_TREE; local
1632 tree rval = dfs_walk_once_accessible_r (binfo, friends_p, pset, local
[all...]
/netbsd-current/lib/libc/citrus/
H A Dcitrus_memstream.h161 _citrus_memory_stream_get8(struct _citrus_memory_stream *ms, uint8_t *rval) argument
167 *rval = _citrus_region_peek8(&ms->ms_region, ms->ms_pos);
174 _citrus_memory_stream_get16(struct _citrus_memory_stream *ms, uint16_t *rval) argument
180 *rval = _citrus_region_peek16(&ms->ms_region, ms->ms_pos);
187 _citrus_memory_stream_get32(struct _citrus_memory_stream *ms, uint32_t *rval) argument
193 *rval = _citrus_region_peek32(&ms->ms_region, ms->ms_pos);
H A Dcitrus_db.c199 uint8_t *rval, struct _citrus_db_locator *dl)
211 if (rval)
212 memcpy(rval, _region_head(&r), 1);
219 uint16_t *rval, struct _citrus_db_locator *dl)
232 if (rval) {
234 *rval = be16toh(val);
242 uint32_t *rval, struct _citrus_db_locator *dl)
255 if (rval) {
257 *rval = be32toh(val);
198 _citrus_db_lookup8_by_string(struct _citrus_db *db, const char *key, uint8_t *rval, struct _citrus_db_locator *dl) argument
218 _citrus_db_lookup16_by_string(struct _citrus_db *db, const char *key, uint16_t *rval, struct _citrus_db_locator *dl) argument
241 _citrus_db_lookup32_by_string(struct _citrus_db *db, const char *key, uint32_t *rval, struct _citrus_db_locator *dl) argument
/netbsd-current/bin/chmod/
H A Dchmod.c78 int Hflag, Lflag, Rflag, ch, dflag, fflag, fts_options, hflag, rval; local
187 for (rval = 0; (p = fts_read(ftsp)) != NULL;) {
195 rval = 1;
202 rval = 1;
223 rval = 1;
230 exit(rval);
/netbsd-current/sys/arch/aarch64/aarch64/
H A Dsyscall.c91 register_t rval[2]; local
148 rval[0] = 0;
149 rval[1] = tf->tf_reg[1];
150 error = sy_invoke(callp, l, params, rval, code);
153 tf->tf_reg[0] = rval[0];
155 tf->tf_reg[1] = rval[1];
/netbsd-current/external/gpl3/gcc/dist/gcc/cp/
H A Dsearch.cc937 tree rval;
1035 if (nval == lfi->rval && shared_member_p (nval))
1045 if (!lfi->ambiguous && lfi->rval)
1050 lfi->ambiguous = tree_cons (NULL_TREE, lfi->rval, NULL_TREE);
1061 lfi->rval = nval;
1117 tree rval, rval_binfo = NULL_TREE;
1122 this can be set with useful information, even when rval is not
1125 checks. Whereas rval is only set if a proper (not hidden)
1167 rval = lfi.rval;
936 tree rval; member in struct:lookup_field_info
1116 tree rval, rval_binfo = NULL_TREE; local
1357 tree rval = lookup_member (xbasetype, name, protect, want_type, local
1375 tree rval = lookup_member (xbasetype, name, protect, /*want_type=*/false, local
1449 tree rval; local
1493 tree rval; local
1544 tree rval; local
1575 tree rval = NULL_TREE; local
1648 tree rval = dfs_walk_once_accessible_r (binfo, friends_p, pset, local
[all...]
/netbsd-current/usr.bin/tset/
H A Dterm.c61 int rval; local
104 while (setupterm(ttype, 0, &rval) == ERR) {
105 switch (rval) {
/netbsd-current/sys/arch/acorn32/mainbus/
H A Datppc_pioc.c71 int rval = 0; local
80 rval = 1;
91 return rval;
/netbsd-current/lib/libc/stdio/
H A Dgettemp.c59 int rval; local
104 rval = stat(path, &sbuf);
106 if (rval != 0)
/netbsd-current/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_aggregate.c443 int i, j, rval; local
510 if ((rval = dt_aggid_lookup(dtp, id, &agg)) != 0)
511 return (rval);
712 int i, rval; local
733 if ((rval = dt_aggregate_snap_cpu(dtp, agp->dtat_cpus[i])))
734 return (rval);
785 int rval, i, j, keypos, nrecs; local
787 if ((rval = dt_aggregate_hashcmp(lhs, rhs)) != 0)
788 return (rval);
796 uint64_t lval, rval; local
898 int rval; local
948 int rval; local
964 int rval; local
975 int rval; local
986 int rval; local
997 int rval; local
1034 int i, rval; local
1083 int rval, i; local
1138 dt_aggwalk_rval(dtrace_hdl_t *dtp, dt_ahashent_t *h, int rval) argument
1537 int rval = -1; local
1683 int rval = -1, *map, *remap = NULL; local
[all...]

Completed in 403 milliseconds

1234567891011>>