Searched refs:Handle (Results 51 - 75 of 107) sorted by relevance

12345

/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DPipe.pm11 use IO::Handle;
58 $save = IO::Handle->new_from_fd($io, $mode);
69 bless $io, "IO::Handle";
145 @ISA = qw(IO::Handle);
208 arguments, which should be objects blessed into C<IO::Handle>, or a
224 The object is re-blessed into a sub-class of C<IO::Handle>, and becomes a
230 The object is re-blessed into a sub-class of C<IO::Handle>, and becomes a
244 L<IO::Handle>
H A DFile.pm45 C<IO::File> inherits from C<IO::Handle> and C<IO::Seekable>. It extends
102 L<IO::Handle>
122 @ISA = qw(IO::Handle IO::Seekable Exporter);
174 $file = IO::Handle::_open_mode_string($mode) . " $file\0";
H A DSeekable.pm18 be inherited by other C<IO::Handle> based objects. It provides methods
88 L<IO::Handle>
101 use IO::Handle ();
102 # XXX we can't get these from IO::Handle or we'll get prototype
H A DPoll.pm11 use IO::Handle;
195 L<poll(2)>, L<IO::Handle>, L<IO::Select>
/opensolaris-onvv-gate/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';
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/IPC/
H A DOpen2.t19 use IO::Handle;
H A DOpen3.t19 use IO::Handle;
/opensolaris-onvv-gate/usr/src/lib/sun_fc/common/
H A DSun_fcGetFcpTargetMapping.cc35 #include "Handle.h"
43 Handle *myHandle = Handle::findHandle(handle);
H A DHandleNPIVPort.cc43 * @precondition Handle must be open
51 HandleNPIVPort::HandleNPIVPort(Handle *myHandle, HandlePort *myHandlePort,
H A DIOError.cc55 IOError::IOError(Handle *handle) : HBAException(HBA_STATUS_ERROR) {
56 Trace log("IOError::IOError(Handle)");
H A DExceptions.h32 #include "Handle.h"
67 * @memo Represents HBA API "Invalid Handle" error
212 IOError(Handle *handle);
H A DHandlePort.cc44 * @precondition Handle must be open
49 HandlePort::HandlePort(Handle *myHandle, HBA *myHBA, HBAPort *myPort) :
/opensolaris-onvv-gate/usr/src/uts/intel/io/acpica/events/
H A Devxface.c889 * Handle - Where the handle to the lock is returned
907 UINT32 *Handle)
912 if (!Handle)
928 *Handle = AcpiGbl_GlobalLockHandle;
942 * PARAMETERS: Handle - Returned from AcpiAcquireGlobalLock
952 UINT32 Handle)
957 if (!Handle || (Handle != AcpiGbl_GlobalLockHandle))
/opensolaris-onvv-gate/usr/src/uts/intel/io/acpica/namespace/
H A Dnsxfname.c232 * PARAMETERS: Handle - Handle to be converted to a pathname
239 * the Handle parameter. This and the AcpiPathnameToHandle are
246 ACPI_HANDLE Handle,
271 Status = AcpiNsHandleToPathname (Handle, Buffer);
285 Node = AcpiNsMapHandleToNode (Handle);
353 * PARAMETERS: Handle - Object Handle
371 ACPI_HANDLE Handle,
391 if (!Handle || !ReturnBuffe
370 AcpiGetObjectInfo( ACPI_HANDLE Handle, ACPI_DEVICE_INFO **ReturnBuffer) argument
[all...]
H A Dnsxfeval.c140 * PARAMETERS: Handle - Object handle (optional)
152 * parameters if necessary. One of "Handle" or "Pathname" must
159 ACPI_HANDLE Handle,
186 Status = AcpiEvaluateObject (Handle, Pathname, ExternalParams, ReturnBuffer);
240 * PARAMETERS: Handle - Object handle (optional)
251 * parameters if necessary. One of "Handle" or "Pathname" must
258 ACPI_HANDLE Handle,
284 Info->PrefixNode = AcpiNsMapHandleToNode (Handle);
337 else if (!Handle)
347 "Both Handle an
158 AcpiEvaluateObjectTyped( ACPI_HANDLE Handle, ACPI_STRING Pathname, ACPI_OBJECT_LIST *ExternalParams, ACPI_BUFFER *ReturnBuffer, ACPI_OBJECT_TYPE ReturnType) argument
[all...]
H A Dnsdump.c202 * PARAMETERS: Handle - Object
216 ACPI_HANDLE Handle,
234 AcpiNsPrintNodePathname (Handle, Msg);
747 * PARAMETERS: Handle - Node to be dumped
758 ACPI_HANDLE Handle,
771 (void) AcpiNsDumpOneObject (Handle, 1, &Info, NULL);
215 AcpiNsDumpPathname( ACPI_HANDLE Handle, char *Msg, UINT32 Level, UINT32 Component) argument
757 AcpiNsDumpEntry( ACPI_HANDLE Handle, UINT32 DebugLevel) argument
H A Dnsutils.c451 /* Handle Carat prefixes */
537 * Handle Carats first, then append the name segments
862 * PARAMETERS: Handle - Handle to be converted to an Node
879 ACPI_HANDLE Handle)
887 if ((!Handle) || (Handle == ACPI_ROOT_OBJECT))
894 if (ACPI_GET_DESCRIPTOR_TYPE (Handle) != ACPI_DESC_TYPE_NAMED)
899 return (ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, Handle));
907 * PARAMETERS: Node - Node to be converted to a Handle
878 AcpiNsMapHandleToNode( ACPI_HANDLE Handle) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IO/t/
H A DIO.t30 my @default = map { "IO/$_.pm" } qw( Handle Seekable File Pipe Socket Dir );
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DFileHandle.pm39 import IO::Handle grep { !defined(&$_) } @EXPORT, @EXPORT_OK;
49 'IO::Handle' =>
91 my $r = new IO::Handle;
92 my $w = new IO::Handle;
98 bless *STDIN{IO}, "FileHandle" if ref *STDIN{IO} eq "IO::Handle";
99 bless *STDOUT{IO}, "FileHandle" if ref *STDOUT{IO} eq "IO::Handle";
100 bless *STDERR{IO}, "FileHandle" if ref *STDERR{IO} eq "IO::Handle";
253 from IO::File, IO::Seekable, and IO::Handle. Please see those
/opensolaris-onvv-gate/usr/src/uts/intel/sys/acpi/
H A Dacpixf.h284 ACPI_HANDLE Handle,
339 ACPI_HANDLE Handle,
435 UINT32 *Handle);
439 UINT32 Handle);
H A Dacnamesp.h288 ACPI_HANDLE Handle,
293 ACPI_HANDLE Handle,
546 ACPI_HANDLE Handle);
H A Dactypes.h321 #define AcpiOsDeleteMutex(Handle) (void) AcpiOsDeleteSemaphore (Handle)
322 #define AcpiOsAcquireMutex(Handle,Time) AcpiOsWaitSemaphore (Handle, 1, Time)
323 #define AcpiOsReleaseMutex(Handle) (void) AcpiOsSignalSemaphore (Handle, 1)
920 ACPI_OBJECT_TYPE ActualType; /* Type associated with the Handle */
921 ACPI_HANDLE Handle; /* object reference */ member in struct:acpi_object::__anon9670
/opensolaris-onvv-gate/usr/src/uts/intel/io/acpica/
H A Dosl.c436 AcpiOsDeleteSemaphore(ACPI_HANDLE Handle) argument
439 if (Handle == NULL)
442 acpi_sema_destroy((acpi_sema_t *)Handle);
443 kmem_free((void *)Handle, sizeof (acpi_sema_t));
448 AcpiOsWaitSemaphore(ACPI_HANDLE Handle, UINT32 Units, UINT16 Timeout) argument
451 if ((Handle == NULL) || (Units < 1))
454 return (acpi_sema_p((acpi_sema_t *)Handle, Units, Timeout));
458 AcpiOsSignalSemaphore(ACPI_HANDLE Handle, UINT32 Units) argument
461 if ((Handle == NULL) || (Units < 1))
464 acpi_sema_v((acpi_sema_t *)Handle, Unit
483 AcpiOsDeleteLock(ACPI_HANDLE Handle) argument
494 AcpiOsAcquireLock(ACPI_HANDLE Handle) argument
510 AcpiOsReleaseLock(ACPI_HANDLE Handle, ACPI_CPU_FLAGS Flags) argument
[all...]
/opensolaris-onvv-gate/usr/src/cmd/ssh/sftp-server/
H A Dsftp-server.c175 typedef struct Handle Handle; typedef in typeref:struct:Handle
176 struct Handle { struct
190 Handle handles[100];
197 for (i = 0; i < sizeof(handles)/sizeof(Handle); i++)
206 for (i = 0; i < sizeof(handles)/sizeof(Handle); i++) {
222 return i >= 0 && (u_int)i < sizeof(handles)/sizeof(Handle) &&
346 for (i = 0; i < sizeof(handles)/sizeof(Handle); i++)
/opensolaris-onvv-gate/usr/src/lib/sun_fc/
H A DMakefile.com33 Handle.o \

Completed in 189 milliseconds

12345