Searched defs:target (Results 1 - 25 of 110) sorted by relevance

12345

/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1_misc.c31 asn1_krb5_realm_copy(krb5_principal target, krb5_principal source) argument
33 target->realm.length = source->realm.length;
34 target->realm.data = (char*)malloc(target->realm.length); /* copy realm */
35 if (target->realm.data == NULL) return ENOMEM;
36 memcpy(target->realm.data,source->realm.data, /* to client */
37 target->realm.length);
/osnet-11/usr/src/lib/sun_fc/common/
H A DIOError.cc73 * @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...]
/osnet-11/usr/src/lib/libcryptoutil/common/
H A Dmechstr.c342 pkcs11_mapping_t target; local
350 target.mech = mech;
351 target.str = NULL;
352 result = (pkcs11_mapping_t *)bsearch((void *)&target, (void *)mapping,
/osnet-11/usr/src/lib/efcode/engine/
H A Dinterp.c37 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;
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/
H A Dbsd_pagetable.c53 fill_bsd64_pagetable (grub_uint8_t *src, grub_addr_t target) argument
68 pt3t = target + 4096;
69 pt2t = target + 8192;
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dfseek.c86 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;
/osnet-11/usr/src/lib/libast/common/misc/
H A Dfs3d.c113 fs3d_mount(const char* source, char* target, int flags, void* data) argument
115 return mount(source, target, flags, data);
/osnet-11/usr/src/lib/libresolv2/common/isc/
H A Dbase64.c146 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...]
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dxdr_array.c71 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;
/osnet-11/usr/src/lib/efcode/packages/
H A Dparse.c73 * 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);
/osnet-11/usr/src/grub/grub2/grub-core/loader/
H A Dmultiboot_elfxx.c175 grub_addr_t target; local
201 target = get_physical_target_address (ch);
212 sh->sh_addr = target;
/osnet-11/usr/src/lib/libsoftcrypto/common/
H A Dmechstr.c76 mechstr_t target; local
79 target.num = mech_type;
80 target.str = NULL;
82 result = (mechstr_t *)bsearch((void *)&target, (void *)mechstrlist,
/osnet-11/usr/src/lib/libdevinfo/
H A Ddevinfo_profile.c143 di_prof_add_symlink(di_prof_t prof, const char *linkname, const char *target) argument
149 syml[1] = (char *)target; /* 2nd entry must be the target */
159 di_prof_add_map(di_prof_t prof, const char *source, const char *target) argument
165 map[1] = (char *)target; /* 2nd entry must be the target */
/osnet-11/usr/src/grub/grub2/grub-core/video/emu/
H A Dsdl.c158 /* Reset render target to SDL one. */
194 grub_video_sdl_set_active_render_target (struct grub_video_render_target *target) argument
196 if (target == GRUB_VIDEO_RENDER_TARGET_DISPLAY)
199 return grub_video_fb_set_active_render_target (target);
/osnet-11/usr/src/lib/scsi/plugins/scsi/engines/uscsi/
H A Duscsi.c48 uscsi_open(libscsi_hdl_t *hp, const void *target) argument
51 const char *target_name = (const char *)target;
/osnet-11/usr/src/grub/grub2/grub-core/lib/mips/
H A Drelocator.c57 write_reg (int regn, grub_uint32_t val, void **target) argument
60 *(grub_uint32_t *) *target = ((0x3c00 | regn) << 16) | ((val + 0x8000) >> 16);
61 *target = ((grub_uint32_t *) *target) + 1;
63 *(grub_uint32_t *) *target = (((0x2400 | regn << 5 | regn) << 16)
65 *target = ((grub_uint32_t *) *target) + 1;
69 write_jump (int regn, void **target) argument
72 *(grub_uint32_t *) *target = (regn<<21) | 0x8;
73 *target
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/powerpc/
H A Drelocator.c55 write_reg (int regn, grub_uint32_t val, void **target) argument
58 *(grub_uint32_t *) *target =
60 *target = ((grub_uint32_t *) *target) + 1;
62 *(grub_uint32_t *) *target = (((0x6000 | regn << 5 | regn) << 16)
64 *target = ((grub_uint32_t *) *target) + 1;
68 write_jump (void **target) argument
71 *(grub_uint32_t *) *target = 0x4e800020;
72 *target
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Darp.c155 /* Am I the protocol address target? */
159 grub_net_link_level_address_t target; local
163 target.type = GRUB_NET_LINK_LEVEL_PROTOCOL_ETHERNET;
164 grub_memcpy (target.mac, sender_hardware_address, 6);
165 grub_memcpy (target_hardware_address, target.mac, 6);
175 send_ethernet_packet (inf, nb, target, GRUB_NET_ETHERTYPE_ARP);
/osnet-11/usr/src/grub/grub2/grub-core/video/
H A Dradeon_fuloong2e.c170 grub_video_radeon_fuloong2e_set_active_render_target (struct grub_video_render_target *target) argument
172 if (target == GRUB_VIDEO_RENDER_TARGET_DISPLAY)
173 target = framebuffer.render_target;
175 return grub_video_fb_set_active_render_target (target);
/osnet-11/usr/src/grub/grub2/include/grub/i386/
H A Dbsd.h105 grub_uint8_t *target; member in struct:grub_openbsd_ramdisk_descriptor
/osnet-11/usr/src/cmd/sendmail/libsmutil/
H A Dsafefile.c181 ** If the target file doesn't exist, check the directory to
490 char *target; local
511 target = buf;
577 target = fullbuf;
579 ret = safedirpath(target, uid, gid, user, flags,
/osnet-11/usr/src/lib/scsi/libses/common/
H A Dses_enclosure.c243 ses_open(uint_t version, const char *target) argument
256 if ((stp = libscsi_open(hp, NULL, target)) == NULL) {
257 (void) ses_libscsi_error(hp, "failed to open SES target");
285 ses_panic("attempt to close SES target with active snapshots");
/osnet-11/usr/src/lib/scsi/plugins/smp/usmp/common/
H A Dusmp.c82 usmp_open(const void *target) argument
85 const char *target_name = (const char *)target;
/osnet-11/usr/src/lib/librdc/common/
H A Drdcrules.c416 char target[NSC_MAXPATH]; local
426 for (s = target; i < NSC_MAXPATH && (*s = *device++); i++) {
434 mntref.mnt_special = target;
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DParser.java192 // Merge source to target. The target has already
198 mergeQueryReturns(ParserRecord target, argument
201 Hashtable targetServices = target.services;
213 Hashtable targetSigs = target.signatures;
228 // Merge tables by removing anything from target that isn't in source.
230 private static boolean mergeTablesWithAnd(Hashtable target, argument
233 Enumeration en = target.keys();
235 // Remove any from target that aren't in source.
241 target
259 mergeTablesWithOr(Hashtable target, Hashtable source) argument
[all...]

Completed in 163 milliseconds

12345