| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ |
| H A D | Switch.pm | 88 my ($source, $line) = @_; 89 return $source unless $Perl5 && $source =~ /case|switch/ 90 || $Perl6 && $source =~ /when|given|default/; 91 pos $source = 0; 93 component: while (pos $source < length $source) 95 if ($source =~ m/(\G\s*use\s+Switch\b)/gc) 100 my @pos = Text::Balanced::_match_quotelike(\$source,qr/\s*/,1,0); 103 my $pre = substr($source,$pos[0],$pos[1]); # matched prefix 104 $text .= $pre . substr($source,$pos[2],$pos[18]-$pos[2]); 107 if ($source =~ m/\G\s*($pod_or_DATA)/gc) { [all …]
|
| /onnv-gate/usr/src/cmd/mv/ |
| H A D | mv.c | 381 lnkfil(char *source, char *target) in lnkfil() argument 396 len = strlen(target) + strlen(dname(source)) + 4; in lnkfil() 400 "to %s %s\n"), cmd, cmd, source); in lnkfil() 404 target, dname(source)); in lnkfil() 450 if (symlink(source, target) < 0) { in lnkfil() 464 switch (chkfiles(source, &target)) { in lnkfil() 477 gettext("%s: %s is a directory\n"), cmd, source); in lnkfil() 485 if (link(source, target) < 0) { in lnkfil() 507 cpymve(char *source, char *target) in cpymve() argument 517 switch (chkfiles(source, &target)) { in cpymve() [all …]
|
| /onnv-gate/usr/src/lib/libparted/common/lib/ |
| H A D | memmove.c | 14 char const *source = source0; in memmove() local 15 if (source < dest) in memmove() 17 for (source += length, dest += length; length; --length) in memmove() 18 *--dest = *--source; in memmove() 19 else if (source != dest) in memmove() 23 *dest++ = *source++; in memmove()
|
| /onnv-gate/usr/src/cmd/man/src/util/instant.src/ |
| H A D | tables.c | 136 tblsource source; /* where defined */ member 154 tblsource source; /* where defined */ member 1259 tblsource source) /* type of record */ in TblBuildFormat() argument 1276 nfp = TblBuild1Format(ep->econt[i], FALSE, source); in TblBuildFormat() 1302 tblsource source) /* type type of row */ in TblBuild1Format() argument 1318 tfp->colformat[i] = TblGetAlign(i, ep, source); in TblBuild1Format() 1319 strcpy(tfp->colwidth[i], TblGetWidth(i, ep, TRUE, source)); in TblBuild1Format() 1320 strcpy(tfp->colpwidth[i], TblGetWidth(i, ep, FALSE, source)); in TblBuild1Format() 1325 strcpy(tfp->font[i], TblGetFont(i, ep, source)); in TblBuild1Format() 1326 tfp->colsep[i] = tblgcolsep || TblGetColSep(i, ep, source); in TblBuild1Format() [all …]
|
| /onnv-gate/usr/src/lib/gss_mechs/mech_dh/backend/mech/ |
| H A D | oid.c | 73 __OID_copy_desc(gss_OID dest, const gss_OID_desc * const source) in __OID_copy_desc() argument 77 dest->elements = (void *)New(char, source->length); in __OID_copy_desc() 82 dest->length = source->length; in __OID_copy_desc() 85 memcpy(dest->elements, source->elements, dest->length); in __OID_copy_desc() 92 __OID_copy(gss_OID *dest, const gss_OID_desc * const source) in __OID_copy() argument 105 if (__OID_copy_desc(oid, source) != DH_SUCCESS) { in __OID_copy() 131 __OID_copy_set(gss_OID_set *dest, gss_OID_set source) in __OID_copy_set() argument 145 set->elements = New(gss_OID_desc, source->count); in __OID_copy_set() 151 set->count = source->count; in __OID_copy_set() 154 for (i = 0; i < source->count; i++) in __OID_copy_set() [all …]
|
| /onnv-gate/usr/src/uts/i86pc/os/ |
| H A D | ibft.c | 389 iscsi_parse_ipaddr(uchar_t *source, char *dest, int *af) in iscsi_parse_ipaddr() argument 393 if (source == NULL) { in iscsi_parse_ipaddr() 397 if (source[0] == 0x00 && source[1] == 0x00 && in iscsi_parse_ipaddr() 398 source[2] == 0x00 && source[3] == 0x00 && in iscsi_parse_ipaddr() 399 source[4] == 0x00 && source[5] == 0x00 && in iscsi_parse_ipaddr() 400 source[6] == 0x00 && source[7] == 0x00 && in iscsi_parse_ipaddr() 401 source[8] == 0x00 && source[9] == 0x00 && in iscsi_parse_ipaddr() 402 (source[10] == 0xff) && (source[11] == 0xff)) { in iscsi_parse_ipaddr() 408 source[12], source[13], source[14], source[15]); in iscsi_parse_ipaddr() 416 (void) sprintf(dest, "%02x%02x:", source[i], in iscsi_parse_ipaddr() [all …]
|
| /onnv-gate/usr/src/lib/libpp/common/ |
| H A D | pp.def | 13 # source *_SOURCE baggage 17 ABI_SOURCE :source: 18 AES_SOURCE :source: 22 ALL_SOURCE :source: 33 BSD_COMPAT :source: 34 BSD_TYPES :source: 56 HPUX_SOURCE :source: 122 POSIX2_SOURCE :source: 123 POSIX_C_SOURCE :source: 124 POSIX_SOURCE :source: [all …]
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/pod/ |
| H A D | perlfilter.pod | 8 I<source filters>. Source filters alter the program text of a module 9 before Perl sees it, much as a C preprocessor alters the source text of 11 about what source filters are, how they work, and how to write your 14 The original purpose of source filters was to let you encrypt your 15 program source to prevent casual piracy. This isn't all they can do, as 27 individual file as a I<source stream>. A source stream is created when 28 the Perl parser opens a file, it continues to exist as the source code 31 a source stream, a new and distinct stream is created just for that 34 The diagram below represents a single source stream, with the flow of 35 source from a Perl script file on the left into the Perl parser on the [all …]
|
| /onnv-gate/usr/src/common/openssl/crypto/des/ |
| H A D | FILES0 | 19 des.c - des(1) source code. 27 /* libdes.a source code */ 30 ecb_enc.c - des_ecb_encrypt() source, this contains the basic DES code. 31 ecb3_enc.c - des_ecb3_encrypt() source. 32 cbc_ckm.c - des_cbc_cksum() source. 33 cbc_enc.c - des_cbc_encrypt() source. 37 cbc3_enc.c - des_3cbc_encrypt() source, don't use this function. 38 cfb_enc.c - des_cfb_encrypt() source. 43 ofb_enc.c - des_cfb_encrypt() source. 48 enc_read.c - des_enc_read() source. [all …]
|
| /onnv-gate/usr/src/tools/opensolaris/ |
| H A D | README.opensolaris.tmpl | 11 If you want to build the entire source tree, you will need the source, 13 be bootstrapped from your source tree. 16 kernel modules, commands) that are compatible with the source. These 17 are binaries that cannot be built using only the source tarball for 22 from source will not be usable unless you have obtained your own 26 To obtain source, ensure that you have Mercurial installed (if you do 35 To build from source, you will also need the proper compiler, and you 44 is no more than 2 builds behind the source that you're building. For 52 The buildable source contains the source for our high key-strength 59 For general questions on the buildable source, please ask on the
|
| /onnv-gate/usr/src/cmd/dtrace/test/tst/common/ip/ |
| H A D | tst.remotetcpstate.ksh | 97 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" && 104 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" && 111 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" && 118 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" && 130 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" && 137 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" &&
|
| H A D | tst.ipv4remotetcp.ksh | 88 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest" && 95 /args[2]->ip_saddr == "$source" && args[2]->ip_daddr == "$dest"/ 101 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source" && 108 /args[2]->ip_saddr == "$dest" && args[2]->ip_daddr == "$source"/
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Locale/Maketext/ |
| H A D | GutsLoader.pm | 32 my $source; 33 { local $/; $source = <IN>; } 35 unless( $source =~ s/\b(use utf8)/# $1/ ) { 39 eval $source;
|
| /onnv-gate/usr/src/lib/libc/port/gen/ |
| H A D | event_port.c | 59 port_associate(int port, int source, uintptr_t object, int events, void *user) in port_associate() argument 62 r.r_vals = _portfs(PORT_ASSOCIATE, port, source, object, events, in port_associate() 104 port_dissociate(int port, int source, uintptr_t object) in port_dissociate() argument 107 r.r_vals = _portfs(PORT_DISSOCIATE, port, source, object, 0, 0); in port_dissociate() 126 _port_dispatch(int port, int flags, int source, int events, uintptr_t object, in _port_dispatch() argument 131 r.r_vals = _portfs(PORT_DISPATCH, port, source, events, object, in _port_dispatch() 135 source, events, object, (uintptr_t)user); in _port_dispatch()
|
| /onnv-gate/usr/src/lib/libc/i386_hwcap1/gen/ |
| H A D | memcpy.s | 39 movl 8+ 8(%esp),%esi / source buffer address 44 cmpl %esi,%edi / if (source addr > dest addr) 57 movl 8+8(%esp),%esi / %esi = source address 110 prefetcht0 568(%esi) / prefetch source & copy 64 byte at a time 111 prefetcht0 568(%edi) / prefetch source & copy 64 byte at a time 184 prefetchnta 16384(%esi) / prefetch source & copy 64 byte at a time 206 / use unaligned load since source doesn't line up
|
| /onnv-gate/usr/src/uts/common/syscall/ |
| H A D | mmapobjsys.c | 47 mmapobj_copy_64to32(mmapobj_result_t *source, mmapobj_result32_t *dest, int num) in mmapobj_copy_64to32() argument 52 dest[i].mr_addr = (caddr32_t)(uintptr_t)source[i].mr_addr; in mmapobj_copy_64to32() 53 dest[i].mr_msize = (size32_t)source[i].mr_msize; in mmapobj_copy_64to32() 54 dest[i].mr_fsize = (size32_t)source[i].mr_fsize; in mmapobj_copy_64to32() 55 dest[i].mr_offset = (size32_t)source[i].mr_offset; in mmapobj_copy_64to32() 56 dest[i].mr_prot = source[i].mr_prot; in mmapobj_copy_64to32() 57 dest[i].mr_flags = source[i].mr_flags; in mmapobj_copy_64to32()
|
| /onnv-gate/usr/src/lib/storage/libg_fc/common/ |
| H A D | genf.c | 296 char source[MAXPATHLEN]; in g_get_physical_name_from_link() local 307 strcpy(source, path); in g_get_physical_name_from_link() 316 if (source[0] != '/') { in g_get_physical_name_from_link() 326 if (source[0] == '.' && source[1] == '/') { in g_get_physical_name_from_link() 327 strcpy(scratch, source+2); in g_get_physical_name_from_link() 329 strcpy(scratch, source); in g_get_physical_name_from_link() 331 strcpy(source, pwd); in g_get_physical_name_from_link() 332 strcat(source, "/"); in g_get_physical_name_from_link() 333 strcat(source, scratch); in g_get_physical_name_from_link() 339 while (cleanup_dotdot_path(source)); in g_get_physical_name_from_link() [all …]
|
| /onnv-gate/usr/src/uts/common/fs/zfs/ |
| H A D | dsl_prop.c | 303 zprop_source_t source, uint64_t *value) in dsl_prop_setarg_init_uint64() argument 306 psa->psa_source = source; in dsl_prop_setarg_init_uint64() 329 zprop_source_t source = psa->psa_source; in dsl_prop_predict_sync() local 352 if (source & ZPROP_SRC_NONE) in dsl_prop_predict_sync() 353 source = ZPROP_SRC_NONE; in dsl_prop_predict_sync() 354 else if (source & ZPROP_SRC_RECEIVED) in dsl_prop_predict_sync() 355 source = ZPROP_SRC_LOCAL; in dsl_prop_predict_sync() 358 switch (source) { in dsl_prop_predict_sync() 390 cmn_err(CE_PANIC, "unexpected property source: %d", source); in dsl_prop_predict_sync() 564 zprop_source_t source = psa->psa_source; in dsl_prop_set_sync() local [all …]
|
| /onnv-gate/usr/src/cmd/man/src/util/instant.src/tptregexp/ |
| H A D | regsub.c | 36 tpt_regsub(prog, source, dest) in tpt_regsub() argument 38 char *source; 48 if (prog == NULL || source == NULL || dest == NULL) { 57 src = source;
|
| /onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/ui/ |
| H A D | ButtonPanel.java | 45 Object source = e.getSource(); in actionPerformed() local 46 if (source == okButton) { in actionPerformed() 48 } else if (source == resetButton) { in actionPerformed() 50 } else if (source == cancelButton) { in actionPerformed() 52 } else if (source == helpButton) { in actionPerformed()
|
| /onnv-gate/usr/src/cmd/tcpd/ |
| H A D | BLURB | 14 This patch upgrades the tcp wrappers version 7.5 source code to 15 version 7.6. The source-routing protection in version 7.5 was not 17 modern UNIX systems that can already stop source-routed traffic in 23 IP source routing options in the kernel; when you run a UNIX version 25 receive source-routed connections and are therefore not vulnerable 26 to IP spoofing attacks with source-routed TCP connections.
|
| /onnv-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) in asn1_krb5_realm_copy() argument 32 target->realm.length = source->realm.length; in asn1_krb5_realm_copy() 35 memcpy(target->realm.data,source->realm.data, /* to client */ in asn1_krb5_realm_copy()
|
| /onnv-gate/usr/src/cmd/luxadm/ |
| H A D | lux_util.c | 1182 char source[MAXPATHLEN]; in get_slash_devices_from_osDevName() local 1194 strcpy(source, osDevName); in get_slash_devices_from_osDevName() 1203 if (source[0] != '/') { in get_slash_devices_from_osDevName() 1211 if (source[0] == '.' && source[1] == '/') { in get_slash_devices_from_osDevName() 1212 strcpy(scratch, source+2); in get_slash_devices_from_osDevName() 1214 strcpy(scratch, source); in get_slash_devices_from_osDevName() 1216 strcpy(source, pwd); in get_slash_devices_from_osDevName() 1217 (void) strcat(source, "/"); in get_slash_devices_from_osDevName() 1218 (void) strcat(source, scratch); in get_slash_devices_from_osDevName() 1224 while (cleanup_dotdot_path(source)) in get_slash_devices_from_osDevName() [all …]
|
| /onnv-gate/usr/src/lib/lvm/libmeta/common/ |
| H A D | sdssc_bind.c | 73 just_dup_string(const char *source, char **dest) in just_dup_string() argument 75 *dest = strdup(source); in just_dup_string() 80 free_dup_string(char *source) in free_dup_string() argument 82 free(source); in free_dup_string()
|
| /onnv-gate/usr/src/uts/common/fs/portfs/ |
| H A D | port_vnops.c | 157 int source; in port_close() local 188 for (source = 0; source < PORT_SCACHE_SIZE; source++) { in port_close() 189 ps = portq->portq_scache[PORT_SHASH(source)]; in port_close() 231 for (source = 0; source < PORT_SCACHE_SIZE; source++) { in port_close() 232 ps = portq->portq_scache[PORT_SHASH(source)]; in port_close()
|