Lines Matching refs:src
8 * 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.
237 dt_module_symgelf32(const Elf32_Sym *src, GElf_Sym *dst)
240 dst->st_name = src->st_name;
241 dst->st_info = src->st_info;
242 dst->st_other = src->st_other;
243 dst->st_shndx = src->st_shndx;
244 dst->st_value = src->st_value;
245 dst->st_size = src->st_size;
252 dt_module_symgelf64(const Elf64_Sym *src, GElf_Sym *dst)
255 bcopy(src, dst, sizeof (GElf_Sym));