Home
last modified time | relevance | path

Searched refs:iarg (Results 1 – 8 of 8) sorted by relevance

/titanic_41/usr/src/lib/libbc/libc/sys/common/
H A Dioctl.c265 struct strioctl *iarg = in _bc_ioctl() local
267 int cmd = iarg->ic_cmd; in _bc_ioctl()
285 char *dp = iarg->ic_dp; in _bc_ioctl()
287 memcpy(&args.info, iarg->ic_dp, in _bc_ioctl()
289 iarg->ic_dp = in _bc_ioctl()
291 iarg->ic_cmd = (TIMOD | 140); in _bc_ioctl()
294 iarg->ic_cmd = cmd; in _bc_ioctl()
295 iarg->ic_dp = dp; in _bc_ioctl()
296 iarg->ic_len = in _bc_ioctl()
298 memcpy(iarg->ic_dp, &args.info, in _bc_ioctl()
[all …]
/titanic_41/usr/src/uts/common/syscall/
H A Dfcntl.c66 int iarg; in fcntl() local
144 iarg = (int)arg; in fcntl()
150 if ((uint_t)iarg >= p->p_fno_ctl) { in fcntl()
151 if (iarg >= 0) in fcntl()
167 if ((retval = ufalloc_file(iarg, fp)) == -1) { in fcntl()
184 if (fdes == iarg) { in fcntl()
193 if (fdes == iarg) { in fcntl()
194 retval = iarg; in fcntl()
195 } else if ((uint_t)iarg >= p->p_fno_ctl) { in fcntl()
196 if (iarg >= 0) in fcntl()
[all …]
H A Dmemcntl.c66 uintptr_t iarg; in memcntl() local
119 iarg = (uintptr_t)arg; in memcntl()
120 if ((iarg & ~MS_INVALIDATE) == 0) in memcntl()
121 iarg |= MS_SYNC; in memcntl()
123 if (((iarg & ~(MS_SYNC|MS_ASYNC|MS_INVALIDATE)) != 0) || in memcntl()
124 ((iarg & (MS_SYNC|MS_ASYNC)) == (MS_SYNC|MS_ASYNC))) { in memcntl()
127 error = as_ctl(as, addr, len, cmd, attr, iarg, NULL, 0); in memcntl()
/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/krb5/krb/
H A Dserialize.c193 krb5_ser_pack_int32(krb5_int32 iarg, krb5_octet **bufp, size_t *remainp) in krb5_ser_pack_int32() argument
196 (*bufp)[0] = (krb5_octet) ((iarg >> 24) & 0xff); in krb5_ser_pack_int32()
197 (*bufp)[1] = (krb5_octet) ((iarg >> 16) & 0xff); in krb5_ser_pack_int32()
198 (*bufp)[2] = (krb5_octet) ((iarg >> 8) & 0xff); in krb5_ser_pack_int32()
199 (*bufp)[3] = (krb5_octet) (iarg & 0xff); in krb5_ser_pack_int32()
213 krb5_ser_pack_int64(krb5_int64 iarg, krb5_octet **bufp, size_t *remainp) in krb5_ser_pack_int64() argument
216 store_64_be(iarg, (unsigned char *)*bufp); in krb5_ser_pack_int64()
/titanic_41/usr/src/cmd/mandoc/
H A Dmdoc_argv.c392 argn_free(struct mdoc_arg *p, int iarg) in argn_free() argument
397 arg = &p->argv[iarg]; in argn_free()
405 for (--p->argc; iarg < (int)p->argc; iarg++) in argn_free()
406 p->argv[iarg] = p->argv[iarg+1]; in argn_free()
/titanic_41/usr/src/lib/libzfs/common/
H A Dlibzfs_import.c1126 zpool_find_import_impl(libzfs_handle_t *hdl, importargs_t *iarg) in zpool_find_import_impl() argument
1128 int i, dirs = iarg->paths; in zpool_find_import_impl()
1131 char *end, **dir = iarg->path; in zpool_find_import_impl()
1237 if (iarg->poolname != NULL) { in zpool_find_import_impl()
1243 strcmp(iarg->poolname, pname) == 0; in zpool_find_import_impl()
1244 } else if (iarg->guid != 0) { in zpool_find_import_impl()
1250 iarg->guid == this_guid; in zpool_find_import_impl()
1276 ret = get_configs(hdl, &pools, iarg->can_be_active); in zpool_find_import_impl()
1306 importargs_t iarg = { 0 }; in zpool_find_import() local
1308 iarg.paths = argc; in zpool_find_import()
[all …]
/titanic_41/usr/src/lib/libdtrace/common/
H A Ddt_ident.c757 const dt_idops_t *ops, void *iarg, ulong_t gen) in dt_idhash_insert() argument
766 attr, vers, ops, iarg, gen); in dt_idhash_insert()
899 const dt_idops_t *ops, void *iarg, ulong_t gen) in dt_ident_create() argument
917 idp->di_iarg = iarg; in dt_ident_create()
942 const dt_idops_t *ops, void *iarg) in dt_ident_morph() argument
947 idp->di_iarg = iarg; in dt_ident_morph()
/titanic_41/usr/src/uts/sun4u/montecarlo/io/
H A Dhsc.c2025 hsc_enum_intr(caddr_t iarg) in hsc_enum_intr() argument
2028 hsc_state_t *hsc = (hsc_state_t *)iarg; in hsc_enum_intr()