| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/lib/strict/ |
| H A D | refs | 1 Check strict refs functionality 20 # strict refs - error 25 Can't use string ("fred") as a SCALAR ref while "strict refs" in use at - line 5. 28 # strict refs - error 29 use strict 'refs' ; 33 Can't use string ("fred") as a SCALAR ref while "strict refs" in use at - line 5. 36 # strict refs - error 37 use strict 'refs' ; 42 Can't use string ("fred") as a SCALAR ref while "strict refs" in use at - line 6. 45 # strict refs - error [all …]
|
| H A D | subs | 14 use strict qw(refs vars); 127 # Check runtime scope of strict refs pragma 128 use strict 'refs'; 137 Can't use string ("fred") as a SCALAR ref while "strict refs" in use at - line 10. 140 # Check runtime scope of strict refs pragma 145 use strict 'refs' ; 150 Can't use string ("fred") as a SCALAR ref while "strict refs" in use at - line 8. 153 # Check runtime scope of strict refs pragma 158 use strict 'refs' ; 163 Can't use string ("fred") as a SCALAR ref while "strict refs" in use at - line 8.
|
| /onnv-gate/usr/src/cmd/mdb/common/modules/genunix/ |
| H A D | ldi.c | 211 ldi_ident_header(int start, int refs) in ldi_ident_header() argument 219 if (refs) in ldi_ident_header() 226 ldi_ident_print(uintptr_t addr, int refs) in ldi_ident_print() argument 240 if (refs) in ldi_ident_print() 267 int refs = 1; in ldi_ident() local 281 ldi_ident_header(start, refs); in ldi_ident() 284 if (ldi_ident_print(addr, refs)) in ldi_ident() 291 ldi_handle_header(int refs, int ident) { in ldi_handle_header() argument 294 if (refs) in ldi_handle_header() 307 ldi_handle_print(uintptr_t addr, int ident, int refs) in ldi_handle_print() argument [all …]
|
| /onnv-gate/usr/src/lib/libldap4/common/ |
| H A D | referral.c | 32 char ** refs; in ldap_errormsg2referrals() local 58 if ((refs = (char **)calloc(count + 1, sizeof(char *))) == NULL){ in ldap_errormsg2referrals() 67 refs[count++] = strdup(ref); in ldap_errormsg2referrals() 71 return (refs); in ldap_errormsg2referrals() 74 char *ldap_referral2error_msg(char ** refs) in ldap_referral2error_msg() argument 80 if (refs == NULL) in ldap_referral2error_msg() 83 for (i = 0; refs[i] != NULL; i++){ in ldap_referral2error_msg() 84 len += strlen (refs[i]) + 1; in ldap_referral2error_msg() 89 for (i = 0; refs[i] != NULL; i++) { in ldap_referral2error_msg() 90 strcat(msg, refs[i]); in ldap_referral2error_msg() [all …]
|
| H A D | result.c | 72 static int Ref_AddToRequest(LDAPRequest *lr, char **refs); 1625 static int Ref_AddToRequest(LDAPRequest *lr, char **refs) { argument 1633 newRef->lref_refs = refs;
|
| /onnv-gate/usr/src/lib/fm/topo/maps/i86pc/ |
| H A D | fan-hc-topology.xmlgen | 318 my @refs = split(/\,/, $level->{fm_service_indctr}); 319 foreach my $ref (@refs) { 353 my @refs = split(/\,/, $level->{fm_ok2rm_indctr}); 354 foreach my $ref (@refs) { 410 my @refs = split(/\,/, $val); 411 foreach my $ref (@refs) { 427 my @refs = split(/\,/, $val); 428 foreach my $ref (@refs) {
|
| /onnv-gate/usr/src/lib/libldap5/sources/ldap/common/ |
| H A D | referral.c | 128 char **refs; in nsldapi_parse_reference() local 151 if ( ber_scanf( &ber, "{v", &refs ) == LBER_ERROR ) { in nsldapi_parse_reference() 163 ldap_value_free( refs ); in nsldapi_parse_reference() 165 *referralsp = refs; in nsldapi_parse_reference()
|
| /onnv-gate/usr/src/cmd/sgs/libconv/common/ |
| H A D | deftag.c | 37 static const Msg refs[] = { in conv_def_tag() local 44 return (MSG_ORIG(refs[ref])); in conv_def_tag()
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
| H A D | universal.t | 106 my @refs = qw(SCALAR SCALAR LVALUE GLOB ARRAY HASH CODE); 108 for ($p=0; $p < @refs; $p++) { 110 test UNIVERSAL::isa($vals[$p], $refs[$q]) eq ($p==$q or $p+$q==1);
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Class/ |
| H A D | Struct.pm | 111 my %refs = (); 146 $refs{$name}++; 193 if( defined $refs{$name} ){
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/ |
| H A D | blessed.t | 132 my ($x, @refs) = @_; 135 main::ok ++$test, @refs == $times; 139 foreach (@refs) {
|
| /onnv-gate/usr/src/uts/common/io/drm/ |
| H A D | drm_fops.c | 93 priv->refs++; in drm_open_helper() 105 priv->refs = 1; in drm_open_helper()
|
| /onnv-gate/usr/src/cmd/ldap/common/ |
| H A D | ldapsearch.c | 612 char **refs = NULL, filter[ BUFSIZ ], *filterp = NULL; local 843 if ( ldap_parse_result( ld, res, &rc, NULL, NULL, &refs, 930 if ( refs != NULL ) { 931 ldaptool_print_referrals( refs ); 932 ldap_value_free( refs ); 1188 char **refs; in parse_and_display_reference() local 1190 if ( ldap_parse_reference( ld, ref, &refs, NULL, 0 ) != LDAP_SUCCESS ) { in parse_and_display_reference() 1193 } else if ( refs != NULL && refs[ 0 ] != NULL ) { in parse_and_display_reference() 1195 for ( i = 0; refs[ i ] != NULL; ++i ) { in parse_and_display_reference() 1196 fprintf( stderr, " %s\n", refs[ i ] ); in parse_and_display_reference() [all …]
|
| H A D | common.c | 1358 ldaptool_print_referrals( char **refs ) argument 1362 if ( refs != NULL ) { 1363 for ( i = 0; refs[ i ] != NULL; ++i ) { 1364 fprintf( stderr, gettext("Referral: %s\n"), refs[ i ] ); 1609 char **refs = NULL; local 1612 if (( rc = ldap_parse_result( ld, res, &lderr, NULL, NULL, &refs, 1689 if ( refs != NULL ) { 1690 ldaptool_print_referrals( refs ); 1691 ldap_value_free( refs );
|
| H A D | ldaptool.h | 167 void ldaptool_print_referrals( char **refs );
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ |
| H A D | strict.pm | 6 refs => 0x00000002,
|
| /onnv-gate/usr/src/lib/libldap4/include/ |
| H A D | ldap-int.h | 177 int chase_referrals( LDAP *ld, LDAPRequest *lr, char **refs, int *count, int samerequest ); 179 char *ldap_referral2error_msg(char ** refs);
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/ |
| H A D | mbimbf.inc | 14 no strict 'refs'; 57 no strict 'refs'; 110 no strict 'refs'; 122 no strict 'refs'; 147 no strict 'refs'; 416 no strict 'refs'; 440 no strict 'refs'; 621 no strict 'refs'; 661 no strict 'refs'; 732 no strict 'refs';
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/pod/ |
| H A D | perltooc.pod | 171 no strict "refs"; # to register new methods in package 186 You may wonder why we're rescinding strict refs for the loop. We're 241 no strict "refs"; # to access package data symbolically 261 no strict "refs"; 308 no strict "refs"; # to access eponymous meta-object 316 no strict "refs"; # to access eponymous meta-object 331 no strict "refs"; # to access eponymous meta-object 360 no strict "refs"; # to convert sym ref to real one 365 # turn off strict refs so that we can 367 no strict "refs"; [all …]
|
| H A D | perlcheat.pod | 25 \() list of refs
|
| H A D | perlref.pod | 406 print "refs 1 and 2 refer to the same thing\n"; 462 use strict 'refs'; 467 no strict 'refs'; 505 using strict refs: 507 use strict 'refs'; 631 no strict 'refs'; # allow symbol table manipulation 700 real refs, instead of the keys(), which won't.
|
| H A D | perlobj.pod | 553 Objects are always destructed, even when regular refs aren't. Objects 554 are destructed in a separate pass before ordinary refs just to 555 prevent object destructors from using refs that have been themselves 556 destructed. Plain refs are only garbage-collected if the destruct level
|
| /onnv-gate/usr/src/cmd/fm/fmd/common/ |
| H A D | fmd_xprt.c | 1847 uint_t refs; in fmd_xprt_subscribe() local 1859 refs = fmd_xprt_class_hash_insert(xip, &xip->xi_rsub, class); in fmd_xprt_subscribe() 1862 if (refs > 1) in fmd_xprt_subscribe() 1885 uint_t refs; in fmd_xprt_unsubscribe() local 1902 if ((refs = fmd_xprt_class_hash_delete(xip, &xip->xi_rsub, class)) == 0) in fmd_xprt_unsubscribe() 1907 if (refs != 0) in fmd_xprt_unsubscribe()
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/ |
| H A D | Concise.pm | 560 my $refs = "ref" . ($h{targ} != 1 ? "s" : ""); 561 $h{targarglife} = $h{targarg} = "$h{targ} $refs";
|
| /onnv-gate/usr/src/lib/libast/common/regex/ |
| H A D | reglib.h | 546 int refs; /* regcomp()+regdup() references*/ member
|