Home
last modified time | relevance | path

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

/illumos-gate/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()
/illumos-gate/usr/src/uts/common/syscall/
H A Dfcntl.c67 int iarg; in fcntl() local
145 iarg = (int)arg; in fcntl()
152 if (iarg >= 0) in fcntl()
185 if (fdes == iarg) { in fcntl()
194 if (fdes == iarg) { in fcntl()
195 retval = iarg; in fcntl()
197 if (iarg >= 0) in fcntl()
220 f_setfd(iarg, FD_CLOEXEC); in fcntl()
222 retval = iarg; in fcntl()
241 iarg &= ~FNDELAY; in fcntl()
[all …]
H A Dmemcntl.c66 uintptr_t iarg; in memcntl() local
120 iarg = (uintptr_t)arg; in memcntl()
121 if ((iarg & ~MS_INVALIDATE) == 0) in memcntl()
122 iarg |= MS_SYNC; in memcntl()
124 if (((iarg & ~(MS_SYNC|MS_ASYNC|MS_INVALIDATE)) != 0) || in memcntl()
125 ((iarg & (MS_SYNC|MS_ASYNC)) == (MS_SYNC|MS_ASYNC))) { in memcntl()
128 error = as_ctl(as, addr, len, cmd, attr, iarg, NULL, 0); in memcntl()
/illumos-gate/usr/src/cmd/mandoc/
H A Dmdoc_argv.c397 argn_free(struct mdoc_arg *p, int iarg) in argn_free() argument
402 arg = &p->argv[iarg]; in argn_free()
410 for (--p->argc; iarg < (int)p->argc; iarg++) in argn_free()
411 p->argv[iarg] = p->argv[iarg+1]; in argn_free()
H A Dmdoc_macro.c961 size_t iarg; in blk_full() local
1220 for (iarg = 0; iarg < arg->argc; iarg++) { in blk_full()
1221 switch (arg->argv[iarg].arg) { in blk_full()
/illumos-gate/usr/src/lib/libzutil/common/
H A Dzutil_import.c1159 zpool_find_import_impl(libpc_handle_t *hdl, importargs_t *iarg) in zpool_find_import_impl() argument
1161 int i, dirs = iarg->paths; in zpool_find_import_impl()
1164 char *end, **dir = iarg->path; in zpool_find_import_impl()
1286 if (iarg->poolname != NULL) { in zpool_find_import_impl()
1292 strcmp(iarg->poolname, pname) == 0; in zpool_find_import_impl()
1293 } else if (iarg->guid != 0) { in zpool_find_import_impl()
1299 iarg->guid == this_guid; in zpool_find_import_impl()
1324 ret = get_configs(hdl, &pools, iarg->can_be_active, iarg->policy); in zpool_find_import_impl()
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_ident.c759 const dt_idops_t *ops, void *iarg, ulong_t gen) in dt_idhash_insert() argument
768 attr, vers, ops, iarg, gen); in dt_idhash_insert()
901 const dt_idops_t *ops, void *iarg, ulong_t gen) in dt_ident_create() argument
919 idp->di_iarg = iarg; in dt_ident_create()
944 const dt_idops_t *ops, void *iarg) in dt_ident_morph() argument
949 idp->di_iarg = iarg; in dt_ident_morph()
/illumos-gate/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_pool.c1162 importargs_t iarg = { 0 }; in zjni_ipool_iter() local
1164 iarg.paths = argc; in zjni_ipool_iter()
1165 iarg.path = argv; in zjni_ipool_iter()
1166 iarg.can_be_active = B_TRUE; in zjni_ipool_iter()
1168 pools = zpool_search_import(g_zfs, &iarg, &libzfs_config_ops); in zjni_ipool_iter()