/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/ |
H A D | asn1_misc.c | 30 asn1_error_code asn1_krb5_realm_copy(krb5_principal target, krb5_principal source) argument 32 target->realm.length = source->realm.length; 33 target->realm.data = (char*)malloc(target->realm.length); /* copy realm */ 34 if (target->realm.data == NULL) return ENOMEM; 35 memcpy(target->realm.data,source->realm.data, /* to client */ 36 target->realm.length);
|
/illumos-gate/usr/src/lib/sun_fc/common/ |
H A D | IOError.cc | 73 * @memo Log a target I/O error message 75 * @param target The target wwn which failed 77 IOError::IOError(HBAPort *port, uint64_t target) : argument 81 "On HBA port %016llx target %016llx (%s)", port->getPortWWN(), 82 target, strerror(errno)); 88 * @param target The target wwn which failed 91 IOError::IOError(HBAPort *port, uint64_t target, uint64_t lun) : argument 95 "On HBA port %016llx target [all...] |
/illumos-gate/usr/src/cmd/make/lib/vroot/ |
H A D | mount.cc | 41 int mount_vroot(char *target, char *name, int mode, pathpt vroot_path, pathpt vroot_vroot) argument 45 translate_with_thunk(target, mount_thunk, vroot_path, vroot_vroot, rw_read);
|
/illumos-gate/usr/src/boot/lib/libstand/ |
H A D | lseek.c | 71 off_t bufpos, filepos, target; local 112 target = offset; 115 target = bufpos + offset; 121 if (bufpos <= target && target < filepos) { 122 f->f_raoffset += target - bufpos; 123 f->f_ralen -= target - bufpos; 124 return (target);
|
/illumos-gate/usr/src/lib/efcode/engine/ |
H A D | interp.c | 37 token_t target, indirect; local 55 target = indirect & ~1; 56 target = *((token_t *)target); 58 target = indirect; 59 fn = (void (*)(fcode_env_t *)) target; 64 WA = (token_t *) target;
|
/illumos-gate/usr/src/lib/libcryptoutil/common/ |
H A D | mechstr.c | 342 pkcs11_mapping_t target; local 350 target.mech = mech; 351 target.str = NULL; 352 result = (pkcs11_mapping_t *)bsearch((void *)&target, (void *)mapping,
|
/illumos-gate/usr/src/cmd/sendmail/libsm/ |
H A D | fseek.c | 86 off_t target, curoff; local 218 target = offset; 223 target = st.st_size + offset; 263 ** If the target offset is within the current buffer, 269 if (target >= curoff && target < curoff + (off_t) n) 271 register int o = target - curoff; 291 curoff = target & ~(fp->f_blksize - 1); 299 n = target - curoff;
|
/illumos-gate/usr/src/uts/common/rpc/ |
H A D | xdr_array.c | 62 caddr_t target = *addrp; local 82 if (target == NULL) 87 *addrp = target = (char *)mem_alloc(nodesize); 88 bzero(target, nodesize); 102 stat = (*elproc)(xdrs, target, LASTUNSIGNED); 103 target += elsize;
|
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | symlink.c | 52 * Create a symbolic link. Similar to link or rename except target 56 symlinkat(char *target, int dfd, char *linkname) argument 90 if ((error = copyinstr(target, tbuf, MAXPATHLEN, &tlen)) == 0) { 115 symlink(char *target, char *linkname) argument 117 return (symlinkat(target, AT_FDCWD, linkname));
|
/illumos-gate/usr/src/lib/libast/common/misc/ |
H A D | fs3d.c | 113 fs3d_mount(const char* source, char* target, int flags, void* data) argument 115 return mount(source, target, flags, data);
|
/illumos-gate/usr/src/cmd/make/bin/ |
H A D | dosys.cc | 62 * dosys(command, ignore_error, call_make, silent_error, target) 75 * target Target we are building 82 dosys(register Name command, register Boolean ignore_error, register Boolean call_make, Boolean silent_error, Boolean always_exec, Name target) argument 124 target,
|
/illumos-gate/usr/src/lib/efcode/packages/ |
H A D | parse.c | 73 * Consists of alias:target<CR> 77 * and target is: 94 char *buffer, *line, *target, *next; local 111 if ((target = strchr(line, ':')) == NULL) { 115 *target++ = 0; 120 if (strlen(target) == 0) { 121 line_error(where, lnum, "Badly formed target"); 130 define_hook(env, line, strlen(line), target);
|
/illumos-gate/usr/src/lib/libdevinfo/ |
H A D | devinfo_profile.c | 127 di_prof_add_symlink(di_prof_t prof, const char *linkname, const char *target) argument 133 syml[1] = (char *)target; /* 2nd entry must be the target */ 143 di_prof_add_map(di_prof_t prof, const char *source, const char *target) argument 149 map[1] = (char *)target; /* 2nd entry must be the target */
|
/illumos-gate/usr/src/lib/libnsl/rpc/ |
H A D | xdr_array.c | 71 caddr_t target = *addrp; local 89 if (target == NULL) 94 *addrp = target = malloc(nodesize); 95 if (target == NULL) { 99 (void) memset(target, 0, nodesize); 110 stat = (*elproc)(xdrs, target); 111 target += elsize;
|
/illumos-gate/usr/src/lib/libresolv2/common/isc/ |
H A D | base64.c | 146 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) { argument 169 target[datalength++] = Base64[output[0]]; 170 target[datalength++] = Base64[output[1]]; 171 target[datalength++] = Base64[output[2]]; 172 target[datalength++] = Base64[output[3]]; 191 target[datalength++] = Base64[output[0]]; 192 target[datalength++] = Base64[output[1]]; 194 target[datalength++] = Pad64; 196 target[datalength++] = Base64[output[2]]; 197 target[datalengt [all...] |
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/ |
H A D | ResourceMonitor.java | 50 private Resource target; field in class:ResourceMonitor 63 * Constructor. No monitor target and a default buffer size of 74 * @param target The resource to be monitored. 77 public ResourceMonitor(Resource target, int maxSize) argument 80 this.target = target; 98 List candidates = target.getComponents(null); 132 return (target); 136 * Set the resource to be monitored. A resource target can 140 * @param target Th 144 setResource(Resource target) argument [all...] |
/illumos-gate/usr/src/cmd/cdrw/ |
H A D | toshiba.c | 76 toshiba_read_audio(cd_device *target, uint_t start_blk, uint_t nblk, argument 99 ret = uscsi(target->d_fd, scmd);
|
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/ |
H A D | iscsi_targetparam.c | 43 * Initializes the target list structure. Called from iscsi_attach. 53 * Frees target param list and destroys the list lock. 73 * Creates a target param entry and adds it to the target param 79 iscsi_targetparam_entry_t *target; local 83 target = kmem_alloc(sizeof (iscsi_targetparam_entry_t), 85 (void) strlcpy((char *)target->target_name, (char *)name, 86 sizeof (target->target_name)); 88 /* assign unique key for the target */ 90 target [all...] |
/illumos-gate/usr/src/uts/sun4u/os/ |
H A D | mach_mp_startup.c | 113 struct mp_find_cpu_arg *target = (struct mp_find_cpu_arg *)arg; local 130 if (cpuid != target->cpuid) 135 target->dip = dip; 151 struct mp_find_cpu_arg target; local 155 target.dip = NULL; 156 target.cpuid = cpuid; 157 ddi_walk_devs(ddi_root_node(), mp_find_cpu, &target); local 159 if (target.dip == NULL) 166 fill_cpu_ddi(target.dip);
|
/illumos-gate/usr/src/uts/intel/asm/ |
H A D | atomic.h | 82 fxn(volatile type *target) \ 86 : "+m" (*target) \ 113 fxn(volatile type1 *target, type2 delta) \ 117 : "+m" (*target) \ 137 atomic_add_ptr(volatile void *target, ssize_t delta) argument 139 volatile void **tmp = (volatile void **)target; 170 fxn(volatile type *target, type cmp, type new) \ 175 : "+m" (*target), "=a" (ret) \ 198 atomic_cas_ptr(volatile void *target, void *cmp, void *new) argument 200 volatile void **tmp = (volatile void **)target; 239 atomic_swap_ptr(volatile void *target, void *val) argument [all...] |
/illumos-gate/usr/src/lib/scsi/plugins/scsi/engines/uscsi/ |
H A D | uscsi.c | 50 uscsi_open(libscsi_hdl_t *hp, const void *target) argument 53 const char *target_name = (const char *)target;
|
/illumos-gate/usr/src/cmd/mdb/common/kmdb/ |
H A D | kmdb_umemglue.c | 91 umem_atomic_add_32_nv(uint32_t *target, int32_t delta) argument 93 return (*target = *target + delta); 97 umem_atomic_add_64(uint64_t *target, int64_t delta) argument 99 *target = *target + delta;
|
/illumos-gate/usr/src/cmd/rpcsvc/rpc.bootparamd/ |
H A D | bootparam_subr.c | 281 * from source to target until we come upon either a NULL or whitespace is 282 * found in the source string, or we run out of room in the target. 286 copydomain(char *source, char *target, int len) argument 296 *target++ = *source++; 298 *target = '\0';
|
/illumos-gate/usr/src/cmd/sgs/libldmake/common/ |
H A D | ld_file.c | 108 char lockfile[MAXPATHLEN], *err, *space, *target; local 118 target = &space[1]; 130 (void) fprintf(ofp, "%s: ", target);
|
/illumos-gate/usr/src/cmd/tsol/updatehome/ |
H A D | setupfiles.c | 48 static int mkdirs(const char *dir, const char *target, int flags); 49 static int copyfile(const char *min_home, const char *home, const char *target, 51 static int linkfile(const char *min_home, const char *home, const char *target, 258 * mkdirs - Make any needed subdirectories in target's path. 299 *tok = '\000'; /* drop last component, it's the target */ 327 * target = file to copy. 343 copyfile(const char *min_home, const char *home, const char *target, int flags) argument 350 /* prepare target */ 352 if (snprintf(dest, sizeof (dest), "%s/%s", home, target) > 362 /* target exist 454 linkfile(const char *min_home, const char *home, const char *target, int flags) argument [all...] |