Searched refs:valid (Results 26 - 50 of 402) sorted by relevance

1234567891011>>

/freebsd-10.2-release/crypto/openssh/
H A Dauth-rh-rsa.c74 if (!authctxt->valid || client_host_key == NULL ||
H A Dauth-passwd.c7 * the password is valid for the user.
84 int result, ok = authctxt->valid;
143 if (authctxt->valid) {
198 char *pw_password = authctxt->valid ? shadow_pw(pw) : pw->pw_passwd;
/freebsd-10.2-release/sys/dev/firewire/
H A Dsbp.h164 uint8_t valid:1, member in struct:sbp_cmd_status
176 valid:1;
/freebsd-10.2-release/contrib/ntp/lib/isc/unix/
H A Dinterfaceiter.c66 * not have a valid address family).
175 iter->valid = ISC_R_NOMORE;
182 iter->valid = ISC_R_SUCCESS;
184 iter->valid = ISC_R_NOMORE;
185 return (iter->valid);
198 if (iter->valid != ISC_R_SUCCESS)
199 return (iter->valid);
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_bzip2.c56 char valid; /* True = decompressor is initialized */ member in struct:private_data
243 if (!state->valid) {
283 state->valid = 1;
323 state->valid = 0;
353 if (state->valid) {
363 state->valid = 0;
/freebsd-10.2-release/contrib/apr/file_io/unix/
H A Ddir.c197 /* No valid bit flag to test here - do we want one? */
201 finfo->valid = 0;
251 wanted &= ~finfo->valid;
258 finfo->valid = 0;
262 finfo->valid |= APR_FINFO_TYPE;
268 finfo->valid |= APR_FINFO_INODE;
274 finfo->valid |= APR_FINFO_NAME;
H A Dfilestat.c73 finfo->valid = APR_FINFO_MIN | APR_FINFO_IDENT | APR_FINFO_NLINK
89 finfo->valid &= ~APR_FINFO_INODE;
125 finfo->valid |= APR_FINFO_CSIZE;
144 return (wanted & ~finfo->valid) ? APR_INCOMPLETE : APR_SUCCESS;
167 return (wanted & ~finfo->valid) ? APR_INCOMPLETE : APR_SUCCESS;
302 return (wanted & ~finfo->valid) ? APR_INCOMPLETE : APR_SUCCESS;
/freebsd-10.2-release/sys/ofed/drivers/infiniband/core/
H A Dverbs.c373 int valid; member in struct:__anon11268
378 [IB_QPS_RESET] = { .valid = 1 },
380 .valid = 1,
403 [IB_QPS_RESET] = { .valid = 1 },
404 [IB_QPS_ERR] = { .valid = 1 },
406 .valid = 1,
427 .valid = 1,
466 [IB_QPS_RESET] = { .valid = 1 },
467 [IB_QPS_ERR] = { .valid = 1 },
469 .valid
[all...]
/freebsd-10.2-release/sys/dev/ixl/
H A Di40e_hmc.c78 if (!sd_entry->valid) {
137 * 3. Mark the entry valid in i40e_hmc_pd_entry structure
171 if (!pd_entry->valid) {
183 /* Set page address and valid bit */
194 pd_entry->valid = TRUE;
251 pd_entry->valid = FALSE;
289 sd_entry->valid = FALSE;
342 sd_entry->valid = FALSE;
/freebsd-10.2-release/contrib/amd/scripts/
H A Dexpn.1100 # $valid : -a
132 $valid = $flag_a;
136 if ($valid) {
137 if ($valid == 1) {
139 } elsif ($valid == 2) {
141 } elsif ($valid == 3) {
144 $validRequirement = (1 - (1/($valid-3)));
254 print &compact($u,$server)." ->\n" if ($verbose && ! $valid);
255 if ($valid) {
299 if ($valid) {
[all...]
H A Dexpn.in99 # $valid : -a
131 $valid = $flag_a;
135 if ($valid) {
136 if ($valid == 1) {
138 } elsif ($valid == 2) {
140 } elsif ($valid == 3) {
143 $validRequirement = (1 - (1/($valid-3)));
253 print &compact($u,$server)." ->\n" if ($verbose && ! $valid);
254 if ($valid) {
298 if ($valid) {
[all...]
/freebsd-10.2-release/contrib/sendmail/contrib/
H A Dexpn.pl98 # $valid : -a
130 $valid = $flag_a;
134 if ($valid) {
135 if ($valid == 1) {
137 } elsif ($valid == 2) {
139 } elsif ($valid == 3) {
142 $validRequirement = (1 - (1/($valid-3)));
244 print &compact($u,$server)." ->\n" if ($verbose && ! $valid);
245 if ($valid) {
289 if ($valid) {
[all...]
/freebsd-10.2-release/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsatimer.c79 /* (2.1.1) remove the timer from valid timer list */
82 pTimer->valid = agFALSE;
263 pTimer->valid = agTRUE;
269 /* (3.2) Add timer the timer to valid timer list */
271 /* (3.3) for each timer in the valid timer list */
306 /* (3.3.3) Continue to the next valid timer */
325 /*! \brief remove a valid timer
346 /* (2) If the timer is still valid */
347 if ( agTRUE == pTimer->valid )
349 /* (2.1) remove from the valid time
[all...]
/freebsd-10.2-release/sys/cam/ata/
H A Data_xpt.c359 if (cts.xport_specific.ata.valid & CTS_ATA_VALID_MODE)
362 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_MODE)
382 cts.xport_specific.ata.valid = CTS_ATA_VALID_MODE;
385 cts.xport_specific.sata.valid = CTS_SATA_VALID_MODE;
395 if (cts.xport_specific.ata.valid & CTS_ATA_VALID_MODE)
398 if (cts.xport_specific.ata.valid & CTS_SATA_VALID_MODE)
491 if (cts.xport_specific.ata.valid & CTS_ATA_VALID_BYTECOUNT)
494 if (cts.xport_specific.sata.valid & CTS_SATA_VALID_BYTECOUNT)
508 cts.xport_specific.ata.valid = CTS_ATA_VALID_BYTECOUNT;
512 cts.xport_specific.sata.valid
[all...]
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_subr/
H A Dutf.c54 * Any strings on other locations are still valid, however.
75 /* FALSE if the handle is not valid, since its pool is being member in struct:xlate_handle_node_t
77 svn_boolean_t valid;
121 node->valid = FALSE;
156 * FROMPAGE can be any valid arguments of the same name to
164 * topage/frompage is really an int, not a valid string. So generate a
270 (*ret)->valid = TRUE;
280 To prevent this, we register a cleanup handler that will reset the valid
315 /* Ensure that the handle is still valid. */
316 if (old_node->valid)
683 size_t valid, invalid; local
[all...]
H A Ddate.c50 const char *valid; /* String of valid chars for this rule */ member in struct:rule
68 should be processed, using a rule for each valid symbol. */
128 if (!match || (match->valid
129 && (!vchar || !strchr(match->valid, vchar))))
158 if (!strchr(match->valid, vchar))
/freebsd-10.2-release/sys/vm/
H A Dphys_pager.c148 if (m[i]->valid == 0) {
151 m[i]->valid = VM_PAGE_BITS_ALL;
153 KASSERT(m[i]->valid == VM_PAGE_BITS_ALL,
154 ("phys_pager_getpages: partially valid page %p", m[i]));
/freebsd-10.2-release/contrib/ntp/include/
H A Dmbg_gps166.h208 * The valid index range depends on the command code.
340 BVAR_BIT_RCVR_POS_INVALID, ///< No valid receiver position available
400 * done if some valid ::UTC correction parameters are available in the
764 ANT_INVALID, ///< No other fields valid since antenna has not yet been disconnected
766 ANT_RECONN, ///< Antenna has been disconnect, and receiver sync. after reconnect, so all fields valid
778 int16_t valid; ///< flag data are valid member in struct:__anon4024
799 * The field labeled valid indicates if the parameter set is valid, i.e.
832 int16_t valid; ///< Fla member in struct:__anon4025
852 int16_t valid; ///< flag data are valid member in struct:__anon4026
868 int16_t valid; ///< flag data are valid member in struct:__anon4027
918 int16_t valid; ///< flag data are valid member in struct:__anon4028
944 int16_t valid; ///< flag data are valid member in struct:__anon4029
[all...]
/freebsd-10.2-release/contrib/pnpinfo/
H A Dpnpinfo.c132 * Get the device's serial number. Returns 1 if the serial is valid.
137 int i, bit, valid = 0, sum = 0x6a; local
149 valid = valid || bit;
158 valid = valid && (data[8] == sum);
160 return valid;
293 * Returns 1 if checksum was valid (and an END_TAG was received).
/freebsd-10.2-release/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/baddof/
H A Dbaddof.c57 static int ttl, valid; local
64 printf("valid DOF #%d\n", valid++);
133 * Let's see if that managed to get us valid DOF...
137 * Success! This will be our new base for valid DOF.
/freebsd-10.2-release/crypto/openssh/openbsd-compat/regress/
H A DMakefile.in35 rm -f *.o *.a core $(TESTPROGS) valid.out
/freebsd-10.2-release/usr.sbin/bluetooth/sdpd/
H A Dsrr.c86 profile->valid == NULL ||
87 (profile->valid)(req, req_end - req) == 0)
/freebsd-10.2-release/contrib/ofed/management/opensm/opensm/
H A Dosm_sa_informinfo.c91 boolean_t valid = TRUE; local
122 valid = FALSE;
135 valid = FALSE;
167 valid = FALSE;
180 valid = FALSE;
188 return valid;
196 boolean_t valid = TRUE; local
200 valid = __validate_ports_access_rights(sa, p_infr_rec);
201 if (!valid) {
204 valid
[all...]
/freebsd-10.2-release/sys/mips/rmi/
H A Dboard.c94 blk0->gmac_port[3].valid = 0;
114 blk0->gmac_port[3].valid = 0;
139 blk0->gmac_port[3].valid = 0;
173 blk1->gmac_port[0].valid = 1;
177 blk2->gmac_port[0].valid = 1;
224 blk0->gmac_port[3].valid = 0;
284 blk1->gmac_port[2].valid = 0;
285 blk1->gmac_port[3].valid = 0;
463 blk0->gmac_port[i].valid = 1;
490 blk1->gmac_port[i].valid
[all...]
/freebsd-10.2-release/sys/dev/ata/
H A Data-all.c228 /* check that we have a valid channel to detach */
317 /* check for valid device */
337 /* check for valid device */
957 if (cts->xport_specific.sata.valid & CTS_SATA_VALID_REVISION)
959 if (cts->xport_specific.sata.valid & CTS_SATA_VALID_MODE) {
967 if (cts->xport_specific.sata.valid & CTS_SATA_VALID_BYTECOUNT)
969 if (cts->xport_specific.sata.valid & CTS_SATA_VALID_ATAPI)
971 if (cts->xport_specific.sata.valid & CTS_SATA_VALID_CAPS)
974 if (cts->xport_specific.ata.valid & CTS_ATA_VALID_MODE) {
982 if (cts->xport_specific.ata.valid
[all...]

Completed in 298 milliseconds

1234567891011>>