Searched defs:target (Results 201 - 225 of 262) sorted by relevance

1234567891011

/illumos-gate/usr/src/lib/libdns_sd/common/
H A Ddnssd_clientstub.c1234 char target[kDNSServiceMaxDomainName]; local
1240 get_string(&data, end, target, kDNSServiceMaxDomainName);
1249 ((DNSServiceResolveReply)sdr->AppCallback)(sdr, cbh->cb_flags, cbh->cb_interface, cbh->cb_err, fullname, target, port.s, txtlen, txtrecord, sdr->AppContext);
/illumos-gate/usr/src/uts/intel/io/scsi/adapters/pvscsi/
H A Dpvscsi.h48 /* requested by target */
55 /* rejected by target */
59 BTSTAT_NORESPONSE = 0x21, /* target did not respond to */
64 BTSTAT_DISCONNECT = 0x24, /* target device reconnected */
130 uint32_t target; member in struct:PVSCSICmdDescResetDevice
177 uint32_t target; member in struct:PVSCSICmdDescAbortCmd
255 uint32_t target; member in struct:PVSCSIMsgDescDevStatusChanged
346 uint8_t target; member in struct:PVSCSIRingReqDesc
H A Dpvscsi.c292 pvscsi_inquiry_target(pvscsi_softc_t *pvs, int target, struct scsi_inquiry *inq) argument
302 ap.a_target = (ushort_t)target;
338 pvscsi_config_one(dev_info_t *pdip, pvscsi_softc_t *pvs, int target, argument
351 /* Inquiry target */
352 inqrc = pvscsi_inquiry_target(pvs, target, &inq);
357 if (devnode->target == target)
403 "target", target) != DDI_PROP_SUCCESS ||
411 "!failed to update props for target
449 int target; local
853 pvscsi_dev_reset(pvscsi_softc_t *pvs, int target) argument
2279 long target = 0; local
[all...]
/illumos-gate/usr/src/uts/common/c2/
H A Daudit.c1109 audit_symlink_create(vnode_t *dvp, char *sname, char *target, int error) argument
1120 au_uwrite(au_to_text(target));
1640 priv_set_t *target; local
1650 target = flag ? &tad->tad_sprivs : &tad->tad_fprivs;
1656 priv_emptyset(target);
1662 priv_fillset(target);
1666 priv_union(set, target);
1668 priv_addset(target, priv);
2168 * Generate this zone token if the target zone differs
/illumos-gate/usr/src/uts/common/fs/proc/
H A Dprsubr.c711 * Lock the target process by setting P_PR_LOCK and grabbing p->p_lock.
3183 struct watched_area *target; local
3206 target = pr_find_watched_area(p, pwa, &where);
3207 if (target != NULL) {
3212 if (target->wa_vaddr != vaddr ||
3213 target->wa_eaddr != eaddr)
3215 else if (target->wa_flags != flags) {
3217 flags, target->wa_flags);
3218 target->wa_flags = flags;
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dsa.c137 static void sa_copy_data(sa_data_locator_t *func, void *start, void *target,
512 sa_copy_data(sa_data_locator_t *func, void *datastart, void *target, int buflen) argument
515 bcopy(datastart, target, buflen);
520 void *saptr = target;
/illumos-gate/usr/src/lib/libscf/common/
H A Dscf_tmpl.c1384 * or _TEMPLATE_INVALID (target property is not SCF_TYPE_ASTRING or has
1388 check_target_match(scf_propertygroup_t *pg, const char *target) argument
1425 /* For a desired target of 'this', check for 'this' and 'instance'. */
1426 if ((strcmp(target, SCF_TM_TARGET_INSTANCE) == 0 ||
1427 strcmp(target, SCF_TM_TARGET_THIS) == 0) &&
1433 if (strcmp(target, SCF_TM_TARGET_DELEGATE) == 0 &&
1438 if (strcmp(target, SCF_TM_TARGET_ALL) == 0 &&
1472 * target property is not SCF_TYPE_ASTRING or has more than one value.
1477 const char *target, char **tmpl_pg_name)
1517 if ((r = check_target_match(pg, target))
1475 _find_template_pg_match(scf_service_t *svc, scf_instance_t *inst, const scf_snapshot_t *snap, const char *pg_name, const char *pg_type, const char *target, char **tmpl_pg_name) argument
6398 char *target = NULL; local
[all...]
/illumos-gate/usr/src/lib/libsqlite/src/
H A DsqliteInt.h1004 * target -> A token holding the name of the table to insert into.
1012 * target -> A token holding the name of the table to delete from.
1017 * target -> A token holding the name of the table to update rows of.
1032 Token target; /* Valid for DELETE, UPDATE, INSERT steps */ member in struct:TriggerStep
/illumos-gate/usr/src/lib/libsun_ima/common/
H A Dima.c1308 iscsi_target_entry_t target; local
1393 (void) memset(&target, 0, sizeof (iscsi_target_entry_t));
1394 target.te_entry.e_vers = ISCSI_INTERFACE_VERSION;
1395 target.te_entry.e_oid = ISCSI_OID_NOTSET;
1396 target.te_entry.e_tpgt = ISCSI_DEFAULT_TPGT;
1398 (void) wcstombs((char *)target.te_name, staticConfig.targetName,
1401 target.te_entry.e_insize = target_in_addr_size;
1402 if (target.te_entry.e_insize == sizeof (struct in_addr)) {
1403 target.te_entry.e_u.u_in4.s_addr = target_in.u_in4.s_addr;
1404 } else if (target
[all...]
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dforcedeth.c349 u32 target, int delay, int delaymax, const char *msg)
362 } while ((readl(base + offset) & mask) != target);
348 reg_delay(int offset, u32 mask, u32 target, int delay, int delaymax, const char *msg) argument
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dcommands.c97 * Depending on the address resolutions of the target and gateways,
98 * we determine which addresses of the target we'll try connecting to.
100 #define ALL_ADDRS 0 /* try all addrs of target */
101 #define ONLY_V4 1 /* try only IPv4 addrs of target */
102 #define ONLY_V6 2 /* try only IPv6 addrs of target */
2464 * - start with the target host, or with "@" or "!@" followed by at least one
2468 * Note that the last host is the target, all the others (if any ) are the
2475 * the target, others gateways), src_rtng_type points to the type of source
2493 * as the target host and set the num_gw to 0. Therefore, none of the
2509 /* no gateways, just the target */
2805 prepare_optbuf(struct gateway *gw_addrs, int num_gw, char **opt_bufpp, size_t *opt_buf_len, struct in_addr *target, uchar_t src_rtng_type) argument
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/
H A Dikeadm.c2945 * Copy source into target, inserting an escape character ('\') before
2949 escapequotes(char *target, char *source, int tlen) argument
2958 target[t++] = '\\';
2959 target[t++] = source[s];
3240 * Need to remove the target file in the
/illumos-gate/usr/src/cmd/mdb/common/modules/dtrace/
H A Ddtrace.c2658 dtrace_probes_walk(uintptr_t addr, void *ignored, uintptr_t *target) argument
/illumos-gate/usr/src/cmd/avs/dsw/
H A Diiadm.c1782 char target[DSW_NAMELEN]; local
1786 for (s = target; i < DSW_NAMELEN && (*s = *t++); i++) {
1794 mntref.mnt_special = target;
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dipsecah.c1899 ipsa_t *newbie, *target; local
1957 target = ipsec_getassocbyspi(outbound, newbie->ipsa_spi,
1959 if (target == NULL) {
1960 target = ipsec_getassocbyspi(inbound, newbie->ipsa_spi,
1970 if (target != NULL) {
1972 IPSA_REFRELE(target);
H A Dipsecesp.c1364 ipsa_t *newbie, *target; local
1423 target = ipsec_getassocbyspi(outbound, newbie->ipsa_spi,
1425 if (target == NULL) {
1426 target = ipsec_getassocbyspi(inbound, newbie->ipsa_spi,
1436 if (target != NULL) {
1438 IPSA_REFRELE(target);
H A Dip_ndp.c120 const in6_addr_t *target, int flag);
296 &ncec->ncec_addr, /* Source and target of the adv */
1645 in6_addr_t target; local
1659 target = ns->nd_ns_target;
1660 if (IN6_IS_ADDR_MULTICAST(&target) || IN6_IS_ADDR_V4MAPPED(&target) ||
1661 IN6_IS_ADDR_LOOPBACK(&target)) {
1665 AF_INET6, &target);
1701 our_ncec = ncec_lookup_illgrp_v6(ill, &target);
1707 ip1dbg(("ndp_input_solicit: Wrong target i
1874 in6_addr_t target; local
2123 ndp_xmit(ill_t *ill, uint32_t operation, uint8_t *hw_addr, uint_t hw_addr_len, const in6_addr_t *sender, const in6_addr_t *target, int flag) argument
[all...]
/illumos-gate/usr/src/uts/common/fs/
H A Dfem.c906 vhead_symlink(vnode_t *dvp, char *linkname, vattr_t *vap, char *target, argument
919 errc = (*func)(arg0, linkname, vap, target, cr, ct, flags);
927 errc = (*func)(arg0, linkname, vap, target, cr, ct, flags);
2301 vnext_symlink(femarg_t *vf, char *linkname, vattr_t *vap, char *target, argument
2312 return ((*func)(arg0, linkname, vap, target, cr, ct, flags));
/illumos-gate/usr/src/uts/common/os/
H A Dlgrp.c1099 * Update memory nodes in target lgroups and return ones that get changed
1102 lgrp_mnode_update(klgrpset_t target, klgrpset_t *changed) argument
1114 if (klgrpset_isempty(target))
1118 * Find each lgroup in target lgroups
1122 * Skip any lgroups that don't exist or aren't in target group
1125 if (!klgrpset_ismember(target, i) || !LGRP_EXISTS(lgrp)) {
1140 * Update memory nodes of of target lgroup with memory nodes
1148 * memory resources of target lgroup
1157 * Update target lgroup's memnodes to include memnodes
1190 * target lgrou
2837 lpl_topo_bootstrap(lpl_t *target, int size) argument
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Dgld.c5824 gld_bitrevcopy(caddr_t src, caddr_t target, size_t n) argument
5827 *target++ = bit_rev[(uchar_t)*src++];
/illumos-gate/usr/src/uts/intel/io/scsi/adapters/arcmsr/
H A Darcmsr.c744 * Description: Called when initializing a target device instance. If
745 * no per-target initialization is required, the HBA
756 * target resources.
759 * By returning DDI_FAILURE, the instance of the target driver for that
763 * of the appropriate target drivers.
769 uint16_t target; local
775 target = sd->sd_address.a_target;
777 if ((target >= ARCMSR_MAX_TARGETID) || (lun >= ARCMSR_MAX_TARGETLUN)) {
787 if (arcmsr_find_child(acb, target, lun) != NULL) {
935 * Called by kernel on behalf of a target drive
1099 int target = ap->a_target; local
1373 int target = ap->a_target; local
3223 arcmsr_abort_dr_ccbs(struct ACB *acb, uint16_t target, uint8_t lun) argument
3287 uint16_t target; local
[all...]
/illumos-gate/usr/src/uts/sun/io/dada/targets/
H A Ddad.c766 * Get dcd_disk structure containing target 'private' information
900 char *prop_template = "target%x-dcd-options";
903 int target; local
1012 * Check for the property target<n>-dcd-options to find the option
1013 * set by the HBA driver for this target so that we can set the
1016 target = devp->dcd_address->da_target;
1017 (void) sprintf(prop_str, prop_template, target);
1022 "No per target properties");
1801 * (un->un_max_xfer_size) supported by the target driver fail
2715 * the target ma
[all...]
/illumos-gate/usr/src/uts/sun/io/
H A Dsocal.c582 * to be used in target-mode so set the target-mode flag.
946 * If any of the ports are in target-mode, don't suspend
4170 fcal_packet_t *target = (fcal_packet_t *) local
4174 ASSERT(target->fcal_pkt_flags & FCFLAG_ABORTING);
4175 if (!(target->fcal_pkt_flags & FCFLAG_COMPLETE)) {
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_vnops.c3346 * to (the target). The essential operation is:
3347 * unlink(target);
3348 * link(source, target);
3360 struct vnode *tdvp, /* new (target) parent vnode */
3361 char *tnm, /* new (target) entry name */
3369 struct inode *tdp; /* new (target) parent inode */
3371 struct vnode *tvp = NULL; /* target vnode, if it exists */
3401 * Notify the target directory of the rename event
3402 * if source and target directories are not the same.
3460 * Lock both the source and target directorie
4112 ufs_symlink( struct vnode *dvp, char *linkname, struct vattr *vap, char *target, struct cred *cr, caller_context_t *ct, int flags) argument
[all...]
/illumos-gate/usr/src/uts/common/io/sfe/
H A Dsfe_util.c5273 ddi_acc_handle_t conf_handle, uint8_t target)
5283 if ((pci_cap & 0xff) == target) {
5272 gem_search_pci_cap(dev_info_t *dip, ddi_acc_handle_t conf_handle, uint8_t target) argument

Completed in 209 milliseconds

1234567891011