/osnet-11/usr/src/lib/libslp/javalib/ |
H A D | Makefile.conf | 63 $(CLASSES)/$(PKGPATH)/%.class: $(SLPJAVASRC)/$(PKGPATH)/%.java 85 UARequester.class SARequester.class slpd.class \ 86 SunServerDATable.class AttributeVerifier.class \ 87 SunDATable.class SLPHeaderV2.class SLPServerHeaderV2.class \ 88 SLPHeaderV1.class SLPV1Manage [all...] |
/osnet-11/usr/src/lib/sun_fc/common/ |
H A D | Event.h | 33 * @memo Super-class for all types of events that are 37 class Event { };
|
H A D | Exceptions.h | 45 class HBAException { 61 class NotSupportedException : public HBAException { 69 class InvalidHandleException : public HBAException { 78 class BadArgumentException : public HBAException { 86 class IllegalWWNException : public HBAException { 94 class IllegalIndexException : public HBAException { 102 class MoreDataException : public HBAException { 110 class StaleDataException : public HBAException { 118 class CheckConditionException : public HBAException { 126 class BusyExceptio [all...] |
H A D | HandleNPIVPort.h | 32 class Handle; 33 class HandlePort; 34 class HandleNPIVPort; 48 class HandleNPIVPort : public Lockable {
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/Filter/Simple/ |
H A D | ImportTest.pm | 11 my $class = shift; 13 __PACKAGE__->export_to_level(1,$class);
|
H A D | FilterOnlyTest.pm | 7 my $class = shift;
|
H A D | FilterTest.pm | 6 my $class = shift;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/Dev/ |
H A D | Null.pm | 9 my $class = shift; 11 return bless $fh, $class;
|
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Bin/ |
H A D | j_package.d | 3 * j_package.d - count Java class loads by package using DTrace. 16 * PACKAGE Package name from class 44 hotspot*:::class-loaded 46 this->class = (char *)copyin(arg0, arg1 + 1); 47 this->class[arg1] = '\0'; 49 @loads[pid, dirname(stringof(this->class))] = count();
|
H A D | j_calls.d | 22 * cload class load 57 this->class = (char *)copyin(arg1, arg2 + 1); 58 this->class[arg2] = '\0'; 61 this->name = strjoin(strjoin(stringof(this->class), "."), 68 this->class = (char *)copyin(arg1, arg2 + 1); 69 this->class[arg2] = '\0'; 70 @calls[pid, "oalloc", stringof(this->class)] = count(); 73 hotspot*:::class-loaded 75 this->class = (char *)copyin(arg0, arg1 + 1); 76 this->class[arg [all...] |
H A D | j_objnew.d | 17 * CLASS.METHOD Java class and method name 47 this->class = (char *)copyin(arg1, arg2 + 1); 48 this->class[arg2] = '\0'; 49 @objs[pid, stringof(this->class)] = count(); 50 @dist[pid, stringof(this->class)] = quantize(arg3); 55 printf("Java object allocation byte distributions by pid and class,\n"); 58 printf("Java object allocation count by pid and class,\n\n");
|
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Java/ |
H A D | j_package.d | 3 * j_package.d - count Java class loads by package using DTrace. 16 * PACKAGE Package name from class 44 hotspot*:::class-loaded 46 this->class = (char *)copyin(arg0, arg1 + 1); 47 this->class[arg1] = '\0'; 49 @loads[pid, dirname(stringof(this->class))] = count();
|
H A D | j_calls.d | 22 * cload class load 57 this->class = (char *)copyin(arg1, arg2 + 1); 58 this->class[arg2] = '\0'; 61 this->name = strjoin(strjoin(stringof(this->class), "."), 68 this->class = (char *)copyin(arg1, arg2 + 1); 69 this->class[arg2] = '\0'; 70 @calls[pid, "oalloc", stringof(this->class)] = count(); 73 hotspot*:::class-loaded 75 this->class = (char *)copyin(arg0, arg1 + 1); 76 this->class[arg [all...] |
H A D | j_objnew.d | 17 * CLASS.METHOD Java class and method name 47 this->class = (char *)copyin(arg1, arg2 + 1); 48 this->class[arg2] = '\0'; 49 @objs[pid, stringof(this->class)] = count(); 50 @dist[pid, stringof(this->class)] = quantize(arg3); 55 printf("Java object allocation byte distributions by pid and class,\n"); 58 printf("Java object allocation count by pid and class,\n\n");
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Digest/t/lib/Digest/ |
H A D | Dummy.pm | 11 my $class = shift; 13 bless { d => $d }, $class;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/ |
H A D | bigfltpm.t | 36 use vars qw ($class $try $x $y $f @args $ans $ans1 $ans1_str $setup $CL); 37 $class = "Math::BigFloat"; 40 ok ($class->config()->{class},$class); 41 ok ($class->config()->{with}, $CL);
|
H A D | trap.t | 22 foreach my $class ($mbi, $mbf) 25 ok ($class->can('config')); 26 ok ($class->config()->{trap_nan}, 0); 27 ok ($class->config()->{trap_inf}, 0); 30 $cfg = $class->config( trap_nan => 1 ); ok ($cfg->{trap_nan},1); 33 eval ("\$x = \$class->new('42'); \$x->bnan();"); 38 $cfg = $class->config( trap_nan => 0 ); ok ($cfg->{trap_nan},0); 41 $cfg = $class->config( trap_inf => 1 ); ok ($cfg->{trap_inf},1); 42 eval ("\$x = \$class->new('4711'); \$x->binf();"); 47 eval ("\$x = \$class [all...] |
H A D | mbimbf.t | 77 foreach my $class (qw/Math::BigInt Math::BigFloat/) 79 ok ($class->accuracy(5),5); # set A 80 ok_undef ($class->precision()); # and now P must be cleared 81 ok ($class->precision(5),5); # set P 82 ok_undef ($class->accuracy()); # and now A must be cleared 85 foreach my $class (qw/Math::BigInt Math::BigFloat/) 87 $class->accuracy(42); 88 my $x = $class->new(123); # $x gets A of 42, too! 95 $class->accuracy(undef); # reset for further tests 96 $class [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/ |
H A D | start_end_asterisk.t | 14 is(start_h1({class => 'hello'}), "<h1 class=\"hello\">", "start_h1 with param"); # TEST 18 is(start_h2({class => 'hello'}), "<h2 class=\"hello\">", "start_h2 with param"); # TEST 22 is(start_h3({class => 'hello'}), "<h3 class=\"hello\">", "start_h3 with param"); # TEST 26 is(start_h4({class => 'hello'}), "<h4 class=\"hello\">", "start_h4 with param"); # TEST 30 is(start_h5({class => 'hello'}), "<h5 class [all...] |
H A D | start_end_end.t | 14 is(start_h1({class => 'hello'}), "<h1 class=\"hello\">", "start_h1 with param"); # TEST 18 is(start_h2({class => 'hello'}), "<h2 class=\"hello\">", "start_h2 with param"); # TEST 22 is(start_h3({class => 'hello'}), "<h3 class=\"hello\">", "start_h3 with param"); # TEST 26 is(start_h4({class => 'hello'}), "<h4 class=\"hello\">", "start_h4 with param"); # TEST 30 is(start_h5({class => 'hello'}), "<h5 class [all...] |
H A D | start_end_start.t | 14 is(start_h1({class => 'hello'}), "<h1 class=\"hello\">", "start_h1 with param"); # TEST 18 is(start_h2({class => 'hello'}), "<h2 class=\"hello\">", "start_h2 with param"); # TEST 22 is(start_h3({class => 'hello'}), "<h3 class=\"hello\">", "start_h3 with param"); # TEST 26 is(start_h4({class => 'hello'}), "<h4 class=\"hello\">", "start_h4 with param"); # TEST 30 is(start_h5({class => 'hello'}), "<h5 class [all...] |
/osnet-11/usr/src/lib/libdns_sd/java/com/apple/dnssd/ |
H A D | Makefile | 37 CLASSES = $(SOURCE:java=class) 49 SIMPLECHATOBJ = $(EXAMPLESDIR)/SwingBrowseListener.class \ 50 $(EXAMPLESDIR)/SwingQueryListener.class \ 51 $(EXAMPLESDIR)/SimpleChat.class 52 BROWSERAPPOBJ = $(EXAMPLESDIR)/SwingResolveListener.class \ 53 $(EXAMPLESDIR)/SwingDomainListener.class \ 54 $(EXAMPLESDIR)/BrowserApp.class 62 CLEAN_FILES = *.class $(JNIH) *.jar $(EXAMPLESDIR)/*.class $(EXAMPLESDIR)/*.jar 80 class [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigRat/t/ |
H A D | trap.t | 21 foreach my $class ($mbi) 24 ok ($class->can('config')); 25 ok ($class->config()->{trap_nan}, 0); 26 ok ($class->config()->{trap_inf}, 0); 29 $cfg = $class->config( trap_nan => 1 ); ok ($cfg->{trap_nan},1); 32 $cfg = $class->config( { trap_nan => 1 } ); ok ($cfg->{trap_nan},1); 35 eval ("\$x = \$class->new('42'); \$x->bnan();"); 40 $cfg = $class->config( trap_nan => 0 ); ok ($cfg->{trap_nan},0); 43 $cfg = $class->config( trap_inf => 1 ); ok ($cfg->{trap_inf},1); 44 eval ("\$x = \$class [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/t/ |
H A D | Mod_EUCJP.pm | 6 my $class = shift; 10 }, $class;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/t/ |
H A D | time.t | 80 my $class = shift; 81 return if $fail{$class}{new} and $fail{$class}{new}--; 82 bless( { @_ }, $class ); 87 my $class = ref($self); 88 return if $fail{$class}{'send'} and $fail{$class}{'send'}--; 120 my $class = shift; 121 return if defined $fail{$class}{new} and $fail{$class}{ne [all...] |