Searched refs:valid (Results 1 - 25 of 333) sorted by relevance

1234567891011>>

/freebsd-9.3-release/bin/pax/
H A Dcache.h40 * archives. The chances of hitting a valid lookup with an archive is quite a
54 #define VALID 1 /* entry and name are valid */
55 #define INVALID 2 /* entry valid, name NOT valid */
62 int valid; /* is this a valid or a miss entry */ member in struct:uidc
68 int valid; /* is this a valid or a miss entry */ member in struct:gidc
H A Dcache.c167 * the stored name (if valid or invalid match). We use a simple hash table.
185 if ((ptr != NULL) && (ptr->valid > 0) && (ptr->uid == uid)) {
189 if (frc || (ptr->valid == VALID))
212 ptr->valid = INVALID;
230 ptr->valid = VALID;
238 * the stored name (if valid or invalid match). We use a simple hash table.
256 if ((ptr != NULL) && (ptr->valid > 0) && (ptr->gid == gid)) {
260 if (frc || (ptr->valid == VALID))
283 ptr->valid = INVALID;
301 ptr->valid
[all...]
/freebsd-9.3-release/contrib/libc-pwcache/
H A Dpwcache.h42 * archives. The chances of hitting a valid lookup with an archive is quite a
56 #define VALID 1 /* entry and name are valid */
57 #define INVALID 2 /* entry valid, name NOT valid */
64 int valid; /* is this a valid or a miss entry */ member in struct:uidc
70 int valid; /* is this a valid or a miss entry */ member in struct:gidc
H A Dpwcache.c257 * return the stored name (if valid or invalid match).
277 if ((ptr != NULL) && (ptr->valid > 0) && (ptr->uid == uid)) {
281 if (!noname || (ptr->valid == VALID))
307 ptr->valid = INVALID;
318 ptr->valid = VALID;
326 * return the stored name (if valid or invalid match).
346 if ((ptr != NULL) && (ptr->valid > 0) && (ptr->gid == gid)) {
350 if (!noname || (ptr->valid == VALID))
376 ptr->valid = INVALID;
387 ptr->valid
[all...]
/freebsd-9.3-release/usr.bin/getconf/
H A Dgetconf.c60 int c, key, valid; local
80 if ((valid = find_progenv(vflag, &alt_path)) == 0)
83 if (valid > 0 && alt_path != NULL) {
93 if (valid < 0)
99 if ((valid = find_limit(name, &limitval)) != 0) {
100 if (valid > 0)
107 if ((valid = find_confstr(name, &key)) != 0) {
108 if (valid > 0)
113 valid = find_sysconf(name, &key);
114 if (valid >
[all...]
/freebsd-9.3-release/sys/contrib/ia64/libuwx/test/
H A Ddump_context.c32 unsigned int valid; local
74 valid = (unsigned int)(context[0] >> 32);
75 printf(" valid_regs (%08lx):", valid);
77 if (valid & 1) printf(" %s", names[i]);
78 valid >>= 1;
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Daname_to_localname.c46 int valid; local
54 valid = 0;
57 valid = 1;
62 if (valid == 0)
/freebsd-9.3-release/usr.bin/csup/
H A Didcache.c53 int valid; /* is this a valid or a miss entry */ member in struct:uidc
60 int valid; /* is this a valid or a miss entry */ member in struct:gidc
174 uidc->valid = 1;
179 uidc2->valid = 1;
185 uidc->valid = 0;
220 gidc->valid = 1;
225 gidc2->valid = 1;
231 gidc->valid
[all...]
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-tra.h63 * then that data comes in-order at some later time. The XMD data is accumulated across all valid
155 * 0x0-0x1=not valid
156 * 0x2=valid, no discontinuity
157 * 0x3=valid, discontinuity
262 CVMX_TRA_FILT_STC = 1ull<<19, /**< partial store to L2, if duptag valid */
382 uint64_t valid : 1; member in struct:__anon6634::__anon6636
398 uint64_t valid : 1;
406 uint64_t valid : 1; member in struct:__anon6634::__anon6637
422 uint64_t valid : 1;
430 uint64_t valid member in struct:__anon6634::__anon6638
456 uint64_t valid : 1; member in struct:__anon6634::__anon6639
481 uint64_t valid : 1; member in struct:__anon6634::__anon6640
505 uint64_t valid : 1; member in struct:__anon6634::__anon6641
531 uint64_t valid : 1; member in struct:__anon6634::__anon6642
559 uint64_t valid : 1; member in struct:__anon6634::__anon6643
[all...]
H A Dcvmx-app-hotplug.h73 int32_t valid; member in struct:cvmx_app_hotplug_info
H A Dcvmx-tra.c606 int valid = 0; local
613 if ((OCTEON_IS_MODEL(OCTEON_CN3XXX) || OCTEON_IS_MODEL(OCTEON_CN5XXX)) && data.cmn.valid)
614 valid = 1;
615 else if (data.cmn2.valid)
616 valid = 1;
618 valid = 0;
620 if (valid)
623 } while (valid);
/freebsd-9.3-release/contrib/expat/tests/
H A Dxmltest.sh88 for xmldir in ibm/valid/P* \
90 xmltest/valid/ext-sa \
91 xmltest/valid/not-sa \
94 xmltest/valid/sa \
95 sun/valid \
/freebsd-9.3-release/lib/libc/rpc/
H A Dclnt_simple.c69 int valid; /* Is this entry valid ? */ member in struct:rpc_call_private
149 rcp->valid = 0;
154 if (!(rcp->valid && rcp->pid == getpid() &&
161 rcp->valid = 0;
189 rcp->valid = 1;
191 rcp->valid = 0;
203 rcp->valid = 0;
H A Dgetnetpath.c60 int valid; /* token that indicates a valid netpath_vars */ member in struct:netpath_vars
104 np_sessionp->valid = NP_VALID;
127 * database entry corresponding to the first valid NETPATH component. The
130 * entry that corresponds to the next valid NETPATH component. getnetpath
153 if (np_sessionp == NULL || np_sessionp->valid != NP_VALID) {
171 * Find first valid network ID in netpath.
207 if (np_sessionp == NULL || np_sessionp->valid != NP_VALID) {
/freebsd-9.3-release/sys/contrib/rdma/
H A Drdma_verbs.c302 int valid; member in struct:__anon6756
307 [IB_QPS_RESET] = { .valid = 1 },
308 [IB_QPS_ERR] = { .valid = 1 },
310 .valid = 1,
329 [IB_QPS_RESET] = { .valid = 1 },
330 [IB_QPS_ERR] = { .valid = 1 },
332 .valid = 1,
350 .valid = 1,
380 [IB_QPS_RESET] = { .valid = 1 },
381 [IB_QPS_ERR] = { .valid
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DLiveIntervalUnion.cpp38 while (SegPos.valid()) {
68 if (!SegPos.valid())
86 for (LiveSegments::const_iterator SI = Segments.begin(); SI.valid(); ++SI) {
96 for (SegmentIter SI = Segments.begin(); SI.valid(); ++SI)
142 while (LiveUnionI.valid()) {
157 if (!(++LiveUnionI).valid()) {
/freebsd-9.3-release/sys/boot/common/
H A Disapnp.c90 * Get the device's serial number. Returns 1 if the serial is valid.
95 int i, bit, valid = 0, sum = 0x6a; local
107 valid = valid || bit;
116 valid = valid && (data[8] == sum);
118 return valid;
/freebsd-9.3-release/contrib/ntp/util/
H A Dsht.c26 int mode; /* 0 - if valid set
28 * clear valid
29 * 1 - if valid set
32 * clear valid
42 volatile int valid; member in struct:shmTime
128 printf (" c clear valid-flag\n");
177 printf (" leap=%d, precision=%d, nsamples=%d, valid=%d\n",
178 p->leap, p->precision, p->nsamples, p->valid);
179 if (!p->valid)
182 p->valid
[all...]
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dport-uw.c60 char *pw_password = authctxt->valid ? shadow_pw(pw) : pw->pw_passwd;
83 if (authctxt->valid)
/freebsd-9.3-release/usr.sbin/bluetooth/sdpd/
H A Dscr.c75 provider->profile->valid == NULL ||
76 (provider->profile->valid)(req, req_end - req) == 0)
/freebsd-9.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_sa_service_record.c87 boolean_t valid = TRUE; local
100 valid = FALSE;
110 valid = FALSE;
124 valid = FALSE;
131 valid = FALSE;
138 return valid;
167 boolean_t valid = TRUE; local
177 valid = __match_service_pkey_with_ports_pkey(sa,
182 if (!valid) {
185 valid
712 boolean_t valid; local
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/auth/sia/
H A Dsia_locl.h90 int valid; member in struct:state
/freebsd-9.3-release/crypto/openssh/
H A Dauth-rh-rsa.c74 if (!authctxt->valid || client_host_key == NULL ||
/freebsd-9.3-release/tools/regression/bpf/bpf_filter/
H A Dbpf_test.c123 * Return true if the 'fcode' is a valid filter program.
124 * The constraints are that each jump be forward and to a valid
147 * Check that the code is valid.
167 * Check that memory operations use valid addresses.
195 int valid; local
203 valid = bpf_validate(pc, nins);
204 if (valid != 0 && invalid != 0) {
210 } else if (valid == 0 && invalid == 0) {
212 printf("Invalidated valid instruction(s):\t");
/freebsd-9.3-release/sys/dev/firewire/
H A Dsbp.h164 uint8_t valid:1, member in struct:sbp_cmd_status
176 valid:1;

Completed in 161 milliseconds

1234567891011>>