Searched defs:Handle (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/lib/sun_fc/common/
H A DHandle.h31 class Handle;
49 class Handle : public Lockable { class in inherits:Lockable
52 Handle(HBA *hba, int portIndex = 0); // Generate ID, and add to vector
53 ~Handle(); // Free and remove from vector
55 static Handle* findHandle(HBA_HANDLE index);
56 static Handle* findHandle(uint64_t wwn);
61 bool operator == (Handle comp);
79 // Handle is explictly used for a specified port
85 static std::map < HBA_HANDLE, Handle* > openHandles;
H A DHandle.cc25 #include "Handle.h"
45 pthread_mutex_t Handle::staticLock = PTHREAD_MUTEX_INITIALIZER;
50 HBA_HANDLE Handle::prevOpen = 0;
55 HBA_HANDLE Handle::prevTgtOpen = 0x8000;
58 * Global map from HBA_HANDLE to Handle pointers (our global list)
60 map<HBA_HANDLE, Handle*> Handle::openHandles;
74 Handle::Handle(HBA *myhba, int portIndex) { function in class:Handle
75 map<HBA_HANDLE, Handle*>
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/
H A DHandle.pm1 package Tie::Handle;
8 Tie::Handle, Tie::StdHandle - base class definitions for tied handles
13 require Tie::Handle;
15 @ISA = qw(Tie::Handle);
29 The basic B<Tie::Handle> package provides a C<new> method, as well as methods
110 This version of Tie::Handle is neither related to nor compatible with
111 the Tie::Handle (3.0) module available on CPAN. It was due to an
198 our @ISA = 'Tie::Handle';
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DHandle.pm1 package IO::Handle;
5 IO::Handle - supply object methods for I/O handles
9 use IO::Handle;
11 $io = new IO::Handle;
17 $io = new IO::Handle;
23 use IO::Handle '_IOLBF';
32 C<IO::Handle> is the base class for all other IO handle classes. It is
33 not intended that objects of C<IO::Handle> would be created directly,
34 but instead C<IO::Handle> is inherited from by several other classes
47 Creates a new C<IO::Handle> objec
[all...]

Completed in 56 milliseconds