Searched refs:src (Results 876 - 900 of 1056) sorted by relevance

<<31323334353637383940>>

/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftRSA.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
752 biginteger_t src; local
809 if ((rv = dup_bigint_attr(&src, buf, buflen)) != CKR_OK)
813 copy_bigint_attr(&src, dst);
/illumos-gate/usr/src/lib/libtecla/common/
H A Dpcache.c1489 const char *src = suffix; local
1492 switch(*src) {
1496 *dst++ = *src++;
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dsvc_dg.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
277 * Find the SCM_UCRED in src and place a pointer to that option alone in dest.
279 * has to be careful about referring to src after changing dest.
282 extract_cred(const struct netbuf *src, struct netbuf *dest) argument
284 char *cp = src->buf;
285 unsigned int len = src->len;
/illumos-gate/usr/src/common/bignum/i386/
H A Dbignum_i386_asm.s8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
906 movl %esi, %ebx / src = a
908 leal 4(%ebx), %ebx / src = &a[1]
912 movl %esi, %ebx / src = a
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/ncaconfd/
H A Dncaconfd.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
858 uchar_t *src, *dst; local
896 src = (uchar_t *)
899 *dst++ = *src++;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
562 show_pktinfo(flags, num, src, dst, ptvp, tvp, drops, len)
564 char *src, *dst;
610 (void) sprintf(lp, "%12s -> %-12s ", src, dst);
/illumos-gate/usr/src/cmd/sendmail/db/lock/
H A Dlock.c796 void *p, *src; local
845 src = type == DB_LOCK_OBJTYPE ? dbt->data : (void *)&locker;
846 memcpy(p, src, obj_size);
/illumos-gate/usr/src/cmd/awk_xpg4/
H A Dawk1.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1619 const wchar_t *src, /* source string */
1654 if (rp == NULL || rpl == NULL || src == NULL || dst == NULL)
1658 ip = src; /* source position */
1617 int_regwdosuba(REGEXP rp, const wchar_t *rpl, const wchar_t *src, wchar_t **dstp, int len, int *globp) argument
/illumos-gate/usr/src/uts/common/crypto/spi/
H A Dkcf_spi.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
72 #define KCF_SPI_COPY_OPS(src, dst, ops) if ((src)->ops != NULL) \
73 *((dst)->ops) = *((src)->ops);
78 * Copy an ops vector from src to dst. Used during provider registration
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Ddisk_io.c1299 char *dst, *src; local
1305 src = (char *) SCRATCHADDR + BOOTSEC_PART_OFFSET;
1307 *dst++ = *src++;
/illumos-gate/usr/src/common/ficl/softcore/
H A Dlz4.c83 const char *src = s_start; local
84 uint32_t bufsiz = BE_IN32(src);
94 return (LZ4_uncompress_unknownOutputSize(&src[sizeof (bufsiz)],
/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A Dmain.c95 cp16to8(const CHAR16 *src, char *dst, size_t len) argument
99 for (i = 0; i < len && src[i]; i++)
100 dst[i] = (char)src[i];
/illumos-gate/usr/src/uts/common/dtrace/
H A Ddtrace.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
974 dtrace_vcanload(void *src, dtrace_diftype_t *type, size_t *remain, argument
1007 DTRACE_RANGE_REMAIN(remain, (uintptr_t)src, src, sz);
1012 return (dtrace_strcanload((uintptr_t)src, sz, remain, mstate,
1015 return (dtrace_canload_remains((uintptr_t)src, sz, remain, mstate,
1152 * Copy src to dst using safe memory accesses. The src is assumed to be unsafe
1158 dtrace_bcopy(const void *src, voi argument
1187 dtrace_strcpy(const void *src, void *dst, size_t len) argument
1206 dtrace_vcopy(void *src, void *dst, dtrace_diftype_t *type, size_t limit) argument
2713 dtrace_buffer_t *src, *dest; local
2953 dtrace_buffer_t *src = &spec->dtsp_buffer[cpu]; local
4128 uintptr_t src = tupregs[0].dttk_value; local
5188 uintptr_t src = tupregs[0].dttk_value; local
5341 uintptr_t src = tupregs[0].dttk_value; local
[all...]
/illumos-gate/usr/src/uts/common/fs/
H A Dvnode.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3089 vn_copypath(struct vnode *src, struct vnode *dst) argument
3094 mutex_enter(&src->v_lock);
3095 if (src->v_path == NULL) {
3096 mutex_exit(&src->v_lock);
3099 alloc = strlen(src->v_path) + 1;
3102 mutex_exit(&src->v_lock);
3104 mutex_enter(&src->v_lock);
3105 if (src
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dlz4.c79 const char *src = s_start; local
80 uint32_t bufsiz = BE_IN32(src);
90 return (LZ4_uncompress_unknownOutputSize(&src[sizeof (bufsiz)],
/illumos-gate/usr/src/uts/common/inet/ipf/
H A Dip_nat.c126 /* src=10.1.1.1 | src=192.1.1.1 */
412 static struct hostmap *nat_hostmap(np, src, dst, map, port, ifs)
414 struct in_addr src;
423 hv = (src.s_addr ^ dst.s_addr);
424 hv += src.s_addr;
428 if ((hm->hm_srcip.s_addr == src.s_addr) &&
453 hm->hm_srcip = src;
3249 /* src(I) - source IP address */
3264 nat_t *nat_inlookup(fin, flags, p, src, mapds
[all...]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_printf.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
451 char src[32], buf[32], *dst = buf; local
461 (void) ctime_r(&sec, src, sizeof (src));
467 *dst++ = src[i];
473 *dst++ = src[i];
/illumos-gate/usr/src/common/ctf/
H A Dctf_create.c9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1260 ctf_bundle_t src, dst; local
1340 src.ctb_file = src_fp;
1341 src.ctb_type = src_type;
1342 src.ctb_dtd = NULL;
1428 * ways (src members vs. dst, dst members vs. src) but we make
1429 * this more optimal by only checking src vs. dst and comparing
1431 * which covers the possibility of dst members not in src
[all...]
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_asru.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
603 char src[PATH_MAX], dst[PATH_MAX]; local
605 (void) snprintf(src, PATH_MAX, "%s/%s", ahp->ah_dirpath, uuid);
609 err = rename(src, dst);
611 err = unlink(src);
614 fmd_error(EFMD_ASRU_EVENT, "failed to rename log %s", src);
/illumos-gate/usr/src/uts/common/io/nxge/
H A Dnxge_send.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1281 ipaddr_t src, dst; local
1383 src = oiph->ip_src.s_addr;
1386 (src >> 16) + (src & 0xFFFF);
1393 "==> nxge_do_softlso: dst 0x%x src 0x%x sum 0x%x ~new 0x%x "
1398 dst, src,
/illumos-gate/usr/src/uts/common/fs/doorfs/
H A Ddoor_sys.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2343 caddr_t src = data_ptr; local
2353 if ((error = door_copy(as, src, saddr, amount)) != 0) {
2358 src += amount;
2472 caddr_t src; local
2481 src = ct->d_args.data_ptr;
2517 error = door_copy(as, src + offset,
2802 caddr_t src = data_ptr; local
2818 error = door_copy(as, src, des
2994 door_copy(struct as *as, caddr_t src, caddr_t dest, uint_t len) argument
[all...]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_state.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
218 rfs4_copy_reply(nfs_resop4 *dst, nfs_resop4 *src) argument
220 *dst = *src;
223 switch (src->resop) {
226 &src->nfs_resop4_u.oplock);
230 &src->nfs_resop4_u.opopen);
457 rfs4_ss_pn_t *src, *dst; local
459 if ((src = rfs4_ss_pnalloc(sdir, leaf)) == NULL)
463 rfs4_ss_pnfree(src);
[all...]
H A Dnfs4_subr.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
654 utf8_copy(utf8string *src, utf8string *dest) argument
656 if (src == NULL)
661 if (src->utf8string_len > 0) {
662 dest->utf8string_val = kmem_alloc(src->utf8string_len,
664 bcopy(src->utf8string_val, dest->utf8string_val,
665 src->utf8string_len);
666 dest->utf8string_len = src->utf8string_len;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Droute.c281 static void save_string(char **dst, char *src);
1053 save_string(char **dst, char *src) argument
1056 *dst = strdup(src);
2077 * src address of incoming or outgoing packets.
2476 * src address of incoming or outgoing packets.
2643 struct sockaddr *dst = NULL, *gate = NULL, *mask = NULL, *src = NULL; local
2689 src = sa;
2709 if (src != NULL && rtm->rtm_flags & RTF_SETSRC)
2710 (void) printf(" setsrc: %s\n", routename(src));
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip_multi.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
89 static void ilg_delete(conn_t *connp, ilg_t *ilg, const in6_addr_t *src);
2094 * has been updated because we need to update the src filter
2428 * fmode and src parameters may be used to determine which option is
2571 * last src in an include list, just delete the ilg.
2632 * fmode and src parameters may be used to determine which option is
2717 * on fmode and src params. Also make sure there's enough room
2810 * has been updated because we need to update the src filter
2894 conn_hasmembers_ill_withsrc_v4(conn_t *connp, ipaddr_t group, ipaddr_t src, argument
3038 ilg_delete(conn_t *connp, ilg_t *ilg, const in6_addr_t *src) argument
[all...]

Completed in 498 milliseconds

<<31323334353637383940>>