Searched defs:handles (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DPoll.pm36 # [2] maps fd's to handles
58 # We no longer have any handles for this FD
113 sub handles { subroutine
119 my @handles = ();
124 push @handles,$self->[2]{$io} if ($ev & $mask) & $events;
127 return @handles;
172 call will block. Returns the number of handles which had events
184 =item handles( [ EVENT_MASK ] )
186 Returns a list of handles. If EVENT_MASK is not given then a list of all
187 handles know
[all...]
H A DPipe.pm26 my($readfh,$writefh) = @_ ? @_ : $me->handles;
36 sub handles { subroutine
37 @_ == 1 or croak 'usage: $pipe->handles()';
210 to C<pipe>. If no arguments are given then method C<handles> is called
213 These two handles are held in the array part of the GLOB until either
234 =item handles ()
H A DSelect.pm106 ? handles($vec, $r)
117 ? handles($vec, $w)
128 ? handles($vec, $e)
159 my @handles = @$vec;
160 splice(@handles, 0, FIRST_FD);
161 for (@handles) {
217 sub handles subroutine
253 @ready = IO::Select->new(@handles)->can_read(0);
258 function call. It allows the user to see what IO handles, see L<IO::Handle>,
268 of handles
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/net/drivers/efi/
H A Definet.c217 grub_efi_handle_t *handles; local
221 /* Find handles which support the disk io interface. */
222 handles = grub_efi_locate_handle (GRUB_EFI_BY_PROTOCOL, &net_io_guid,
224 if (! handles)
226 for (handle = handles; num_handles--; handle++)
274 grub_free (handles);
295 grub_free (handles);
/osnet-11/usr/src/grub/grub2/grub-core/disk/efi/
H A Defidisk.c92 grub_efi_handle_t *handles; local
96 /* Find handles which support the disk io interface. */
97 handles = grub_efi_locate_handle (GRUB_EFI_BY_PROTOCOL, &block_io_guid,
99 if (! handles)
103 for (handle = handles; num_handles--; handle++)
129 grub_free (handles);
141 grub_free (handles);
/osnet-11/usr/src/lib/libraidcfg/common/
H A Draidcfg.c290 handle_attr_t *handles; member in struct:__anon2389
944 /* convert disk handles into disk object ids; */
1335 ptr = realloc(raid_handle_sys.handles,
1339 raid_handle_sys.handles = ptr;
1341 /* Clean up the new allocated handles */
1344 bzero(&raid_handle_sys.handles[i], sizeof (handle_attr_t));
1345 raid_handle_sys.handles[i].type = OBJ_TYPE_ALL;
1346 raid_handle_sys.handles[i].next = i + 1;
1351 raid_handle_sys.handles[0].type = OBJ_TYPE_SYSTEM;
1352 raid_handle_sys.handles[
[all...]

Completed in 58 milliseconds