代码搜索:IO控制
找到约 10,000 项符合「IO控制」的源代码
代码结果 10,000
www.eeworm.com/read/321483/3535234
t io_const.t
BEGIN {
unless(grep /blib/, @INC) {
chdir 't' if -d 't';
@INC = '../lib';
}
}
use Config;
BEGIN {
if($ENV{PERL_CORE}) {
if ($Config{'extensions'} !~ /\bIO\b/) {
pr
www.eeworm.com/read/321483/3535235
t io_taint.t
#!./perl -T
BEGIN {
unless(grep /blib/, @INC) {
chdir 't' if -d 't';
@INC = '../lib';
}
}
use Config;
BEGIN {
if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bIO\b/ && $^O ne 'VMS'
www.eeworm.com/read/321483/3535236
t io_dup.t
#!./perl
BEGIN {
unless(grep /blib/, @INC) {
chdir 't' if -d 't';
@INC = '../lib';
}
}
use Config;
BEGIN {
if($ENV{PERL_CORE}) {
if ($Config{'extensions'} !~ /\bIO\b/) {
www.eeworm.com/read/321483/3535237
t io_sock.t
#!./perl -w
BEGIN {
unless(grep /blib/, @INC) {
chdir 't' if -d 't';
@INC = '../lib';
}
}
use Config;
BEGIN {
my $can_fork = $Config{d_fork} ||
(($^O eq 'MSWin32' || $^O eq 'Net
www.eeworm.com/read/321483/3535239
t io_pipe.t
#!./perl
my $perl;
BEGIN {
unless(grep /blib/, @INC) {
$perl = './perl';
chdir 't' if -d 't';
@INC = '../lib';
}
else {
$perl = $^X;
}
}
use Config;
BEGIN {
my $can_fork =
www.eeworm.com/read/319506/3555720
c schar_io.c
#include
#include
#include
#include "schar.h"
int main(int argc, char *argv[])
{
int fd = open("/dev/schar", O_RDWR);
/* complain if the open failed */
if (fd =
www.eeworm.com/read/318961/3560023
c inode_io.c
/* vi: set sw=4 ts=4: */
/*
* inode_io.c --- This is allows an inode in an ext2 filesystem image
* to be accessed via the I/O manager interface.
*
* Copyright (C) 2002 Theodore Ts'o.
*
* %Begin-
www.eeworm.com/read/318961/3560026
c test_io.c
/* vi: set sw=4 ts=4: */
/*
* test_io.c --- This is the Test I/O interface.
*
* Copyright (C) 1996 Theodore Ts'o.
*
* %Begin-Header%
* This file may be redistributed under the terms of the GNU P
www.eeworm.com/read/318961/3560069
c unix_io.c
/* vi: set sw=4 ts=4: */
/*
* unix_io.c --- This is the Unix (well, really POSIX) implementation
* of the I/O manager.
*
* Implements a one-block write-through cache.
*
* Includes support for Wi
www.eeworm.com/read/318961/3560074
c io_manager.c
/* vi: set sw=4 ts=4: */
/*
* io_manager.c --- the I/O manager abstraction
*/
#include
#include
#if HAVE_UNISTD_H
#include
#endif
#include
#include