亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stdio.pm

?? Altera recommends the following system configuration: * Pentium II 400 with 512-MB system memory (fa
?? PM
字號:
#   VMS::Stdio - VMS extensions to Perl's stdio calls##   Author:  Charles Bailey  bailey@genetics.upenn.edu#   Version: 2.2#   Revised: 19-Jul-1998#   Docs revised: 13-Oct-1998 Dan Sugalski <sugalskd@ous.edu>package VMS::Stdio;require 5.002;use vars qw( $VERSION @EXPORT @EXPORT_OK %EXPORT_TAGS @ISA );use Carp '&croak';use DynaLoader ();use Exporter (); $VERSION = '2.2';@ISA = qw( Exporter DynaLoader IO::File );@EXPORT = qw( &O_APPEND &O_CREAT &O_EXCL  &O_NDELAY &O_NOWAIT              &O_RDONLY &O_RDWR  &O_TRUNC &O_WRONLY );@EXPORT_OK = qw( &binmode &flush &getname &remove &rewind &sync &setdef &tmpnam                 &vmsopen &vmssysopen &waitfh &writeof );%EXPORT_TAGS = ( CONSTANTS => [ qw( &O_APPEND &O_CREAT &O_EXCL  &O_NDELAY                                    &O_NOWAIT &O_RDONLY &O_RDWR &O_TRUNC                                    &O_WRONLY ) ],                 FUNCTIONS => [ qw( &binmode &flush &getname &remove &rewind                                    &setdef &sync &tmpnam &vmsopen &vmssysopen                                    &waitfh &writeof ) ] );bootstrap VMS::Stdio $VERSION;sub AUTOLOAD {    my($constname) = $AUTOLOAD;    $constname =~ s/.*:://;    if ($constname =~ /^O_/) {      my($val) = constant($constname);      defined $val or croak("Unknown VMS::Stdio constant $constname");      *$AUTOLOAD = sub { $val; }    }    else { # We don't know about it; hand off to IO::File      require IO::File;      *$AUTOLOAD = eval "sub { shift->IO::File::$constname(\@_) }";      croak "Error autoloading IO::File::$constname: $@" if $@;    }    goto &$AUTOLOAD;}sub DESTROY { close($_[0]); }################################################################################# Intercept calls to old VMS::stdio package, complain, and hand off# This will be removed in a future version of VMS::Stdiopackage VMS::stdio;sub AUTOLOAD {  my($func) = $AUTOLOAD;  $func =~ s/.*:://;  # Cheap trick: we know DynaLoader has required Carp.pm  Carp::carp("Old package VMS::stdio is now VMS::Stdio; please update your code");  if ($func eq 'vmsfopen') {    Carp::carp("Old function &vmsfopen is now &vmsopen");    goto &VMS::Stdio::vmsopen;  }  elsif ($func eq 'fgetname') {    Carp::carp("Old function &fgetname is now &getname");    goto &VMS::Stdio::getname;  }  else { goto &{"VMS::Stdio::$func"}; }}package VMS::Stdio;  # in case we ever use AutoLoader1;__END__=head1 NAMEVMS::Stdio - standard I/O functions via VMS extensions=head1 SYNOPSIS  use VMS::Stdio qw( &flush &getname &remove &rewind &setdef &sync &tmpnam                     &vmsopen &vmssysopen &waitfh &writeof );  setdef("new:[default.dir]");  $uniquename = tmpnam;  $fh = vmsopen("my.file","rfm=var","alq=100",...) or die $!;  $name = getname($fh);  print $fh "Hello, world!\n";  flush($fh);  sync($fh);  rewind($fh);  $line = <$fh>;  undef $fh;  # closes file  $fh = vmssysopen("another.file", O_RDONLY | O_NDELAY, 0, "ctx=bin");  sysread($fh,$data,128);  waitfh($fh);  close($fh);  remove("another.file");  writeof($pipefh);  binmode($fh);=head1 DESCRIPTIONThis package gives Perl scripts access via VMS extensions to severalC stdio operations not available through Perl's CORE I/O functions.The specific routines are described below.  These functions areprototyped as unary operators, with the exception of C<vmsopen>and C<vmssysopen>, which can take any number of arguments, andC<tmpnam>, which takes none.All of the routines are available for export, though none areexported by default.  All of the constants used by C<vmssysopen>to specify access modes are exported by default.  The routinesare associated with the Exporter tag FUNCTIONS, and the constantsare associated with the Exporter tag CONSTANTS, so you can moreeasily choose what you'd like to import:    # import constants, but not functions    use VMS::Stdio;  # same as use VMS::Stdio qw( :DEFAULT );    # import functions, but not constants    use VMS::Stdio qw( !:CONSTANTS :FUNCTIONS );     # import both    use VMS::Stdio qw( :CONSTANTS :FUNCTIONS );     # import neither    use VMS::Stdio ();Of course, you can also choose to import specific functions byname, as usual.This package C<ISA> IO::File, so that you can call IO::Filemethods on the handles returned by C<vmsopen> and C<vmssysopen>.The IO::File package is not initialized, however, until youactually call a method that VMS::Stdio doesn't provide.  Thisis done to save startup time for users who don't wish to usethe IO::File methods.B<Note:>  In order to conform to naming conventions for Perlextensions and functions, the name of this package has beenchanged to VMS::Stdio as of Perl 5.002, and the names of someroutines have been changed.  Calls to the old VMS::stdio routineswill generate a warning, and will be routed to the equivalentVMS::Stdio function.  This compatibility interface will beremoved in a future release of this extension, so pleaseupdate your code to use the new routines.=over=item binmodeThis function causes the file handle to be reopened with the CRTL'scarriage control processing disabled; its effect is the same as thatof the C<b> access mode in C<vmsopen>.  After the file is reopened,the file pointer is positioned as close to its position before thecall as possible (I<i.e.> as close as fsetpos() can get it -- forsome record-structured files, it's not possible to return to theexact byte offset in the file).  Because the file must be reopened,this function cannot be used on temporary-delete files. C<binmode>returns true if successful, and C<undef> if not.Note that the effect of C<binmode> differs from that of the binmode()function on operating systems such as Windows and MSDOS, and is notneeded to process most types of file.=item flushThis function causes the contents of stdio buffers for the specifiedfile handle to be flushed.  If C<undef> is used as the argument toC<flush>, all currently open file handles are flushed.  Like the CRTLfflush() routine, it does not flush any underlying RMS buffers for thefile, so the data may not be flushed all the way to the disk.  C<flush>returns a true value if successful, and C<undef> if not.=item getnameThe C<getname> function returns the file specification associatedwith a Perl I/O handle.  If an error occurs, it returns C<undef>.=item removeThis function deletes the file named in its argument, returninga true value if successful and C<undef> if not.  It differs fromthe CORE Perl function C<unlink> in that it does not try toreset file protection if the original protection does not giveyou delete access to the file (cf. L<perlvms>).  In other words,C<remove> is equivalent to  unlink($file) if VMS::Filespec::candelete($file);=item rewindC<rewind> resets the current position of the specified file handleto the beginning of the file.  It's really just a conveniencemethod equivalent in effect to C<seek($fh,0,0)>.  It returns atrue value if successful, and C<undef> if it fails.=item setdefThis function sets the default device and directory for the process.It is identical to the built-in chdir() operator, except that the changepersists after Perl exits.  It returns a true value on success, andC<undef> if it encounters an error.=item syncThis function flushes buffered data for the specified file handlefrom stdio and RMS buffers all the way to disk.  If successful, itreturns a true value; otherwise, it returns C<undef>.=item tmpnamThe C<tmpnam> function returns a unique string which can be usedas a filename when creating temporary files.  If, for somereason, it is unable to generate a name, it returns C<undef>.=item vmsopenThe C<vmsopen> function enables you to specify optional RMS argumentsto the VMS CRTL when opening a file.  Its operation is similar to the built-inPerl C<open> function (see L<perlfunc> for a complete description),but it will only open normal files; it cannot open pipes or duplicateexisting I/O handles.  Up to 8 optional arguments may follow thefile name.  These arguments should be strings which specifyoptional file characteristics as allowed by the CRTL. (See theCRTL reference manual description of creat() and fopen() for details.)If successful, C<vmsopen> returns a VMS::Stdio file handle; if anerror occurs, it returns C<undef>.You can use the file handle returned by C<vmsopen> just as youwould any other Perl file handle.  The class VMS::Stdio ISAIO::File, so you can call IO::File methods using the handlereturned by C<vmsopen>.  However, C<use>ing VMS::Stdio does notautomatically C<use> IO::File; you must do so explicitly inyour program if you want to call IO::File methods.  This isdone to avoid the overhead of initializing the IO::File packagein programs which intend to use the handle returned by C<vmsopen>as a normal Perl file handle only.  When the scalar containinga VMS::Stdio file handle is overwritten, C<undef>d, or goesout of scope, the associated file is closed automatically.=over 4=head2 File characteristic options=over 2=item alq=INTEGERSets the allocation quantity for this file=item bls=INTEGERFile blocksize=item ctx=STRINGSets the context for the file. Takes one of these arguments:=over 4=item binDisables LF to CRLF translation=item cvtNegates previous setting of C<ctx=noctx>=item nocvtDisables conversion of FORTRAN carriage control=item recForce record-mode access=item stmForce stream mode=item xplctCauses records to be flushed I<only> when the file is closed, or when anexplicit flush is done=back=item deq=INTEGERSets the default extension quantity=item dna=FILESPECSets the default filename string. Used to fill in any missing pieces of thefilename passed.=item fop=STRINGFile processing option. Takes one or more of the following (in acomma-separated list if there's more than one)=over 4=item ctgContiguous.=item cbtContiguous-best-try.=item dfwDeferred write; only applicable to files opened for shared access.=item dltDelete file on close.=item tefTruncate at end-of-file.=item cifCreate if nonexistent.=item supSupersede.=item scfSubmit as command file on close.=item splSpool to system printer on close.=item tmdTemporary delete.=item tmpTemporary (no file directory).=item nefNot end-of-file.=item rckRead check compare operation.=item wckWrite check compare operation.=item mxvMaximize version number.=item rwoRewind file on open.=item posCurrent position.=item rwcRewind file on close.=item sqoFile can only be processed in a sequential manner.=back=item fsz=INTEGERFixed header size=item gbc=INTEGERGlobal buffers requested for the file=item mbc=INTEGERMultiblock count=item mbf=INTEGERBultibuffer count=item mrs=INTEGERMaximum record size=item rat=STRINGFile record attributes. Takes one of the following:=over 4=item crCarriage-return control.=item blkDisallow records to span block boundaries.=item ftnFORTRAN print control.=item noneExplicitly forces no carriage control.=item prnPrint file format.=back=item rfm=STRINGFile record format. Takes one of the following:=over 4=item fixFixed-length record format.=item stmRMS stream record format.=item stmlfStream format with line-feed terminator.=item stmcrStream format with carriage-return terminator.=item varVariable-length record format.=item vfcVariable-length record with fixed control.=item udfUndefined format=back=item rop=STRINGRecord processing operations. Takes one or more of the following in acomma-separated list:=over 4=item asyAsynchronous I/O.=item ccoCancel Ctrl/O (used with Terminal I/O).=item cvtCapitalizes characters on a read from the terminal.=item eofPositions the record stream to the end-of-file for the connect operationonly.=item nlkDo not lock record.=item pmtEnables use of the prompt specified by pmt=usr-prmpt on input from theterminal.=item ptaEliminates any information in the type-ahead buffer on a read from theterminal.=item reaLocks record for a read operation for this process, while allowing otheraccessors to read the record.=item rlkLocks record for write.=item rneSuppresses echoing of input data on the screen as it is entered on thekeyboard.=item rnfIndicates that Ctrl/U, Ctrl/R, and DELETE are not to be considered controlcommands on terminal input, but are to be passed to the applicationprogram.=item rrlReads regardless of lock.=item syncstsReturns success status of RMS$_SYNCH if the requested service completes itstask immediately.=item tmoTimeout I/O.=item tptAllows put/write services using sequential record access mode to occur atany point in the file, truncating the file at that point.=item ulkProhibits RMS from automatically unlocking records.=item watWait until record is available, if currently locked by another stream.=item rahRead ahead.=item wbhWrite behind.=back=item rtv=INTEGERThe number of retrieval pointers that RMS has to maintain (0 to 127255)=item shr=STRINGFile sharing options. Choose one of the following:=over 4=item delAllows users to delete.=item getAllows users to read.=item mseAllows mainstream access.=item nilProhibits file sharing.=item putAllows users to write.=item updAllows users to update.=item upiAllows one or more writers.=back=item tmo=INTEGERI/O timeout value=back=back=item vmssysopenThis function bears the same relationship to the CORE functionC<sysopen> as C<vmsopen> does to C<open>.  Its first three argumentsare the name, access flags, and permissions for the file.  LikeC<vmsopen>, it takes up to 8 additional string arguments whichspecify file characteristics.  Its return value is identical tothat of C<vmsopen>.The symbolic constants for the mode argument are exported byVMS::Stdio by default, and are also exported by the Fcntl package.=item waitfhThis function causes Perl to wait for the completion of an I/Ooperation on the file handle specified as its argument.  It isused with handles opened for asynchronous I/O, and performs itstask by calling the CRTL routine fwait().=item writeofThis function writes an EOF to a file handle, if the device driversupports this operation.  Its primary use is to send an EOF to asubprocess through a pipe opened for writing without closing thepipe.  It returns a true value if successful, and C<undef> ifit encounters an error.=head1 REVISIONThis document was last revised on 13-Oct-1998, for Perl 5.004, 5.005, and5.6.0.=cut

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人性生交大片免费看视频在线 | 亚洲一区二区在线视频| 丰满少妇久久久久久久| 日本一区二区免费在线| 成人免费看片app下载| 亚洲国产精品t66y| 91视视频在线观看入口直接观看www | 亚洲色图清纯唯美| 色婷婷久久99综合精品jk白丝| 亚洲你懂的在线视频| 欧美日韩一区久久| 琪琪一区二区三区| 久久久久国产精品麻豆| 成人av资源站| 天天综合网天天综合色| 91精品国产高清一区二区三区 | 成人高清视频免费观看| 日韩一区日韩二区| 欧美剧情片在线观看| 激情五月激情综合网| 国产精品国产三级国产有无不卡 | 秋霞午夜鲁丝一区二区老狼| 91精品国产综合久久精品| 激情图片小说一区| 亚洲视频你懂的| 正在播放亚洲一区| 国产精品一卡二| 一区二区日韩av| 日韩美女在线视频| 色网站国产精品| 麻豆国产欧美一区二区三区| 国产欧美视频在线观看| 在线观看日韩毛片| 国产美女娇喘av呻吟久久| 亚洲美女在线一区| 精品国产乱码久久久久久浪潮| av不卡一区二区三区| 日本vs亚洲vs韩国一区三区| 中文字幕精品在线不卡| 欧美一卡2卡3卡4卡| av在线这里只有精品| 免费人成在线不卡| 亚洲视频你懂的| 久久久另类综合| 欧美日韩在线一区二区| 丁香另类激情小说| 麻豆freexxxx性91精品| 亚洲伦理在线精品| 欧美经典三级视频一区二区三区| 欧美主播一区二区三区美女| 国产九色sp调教91| 日韩和欧美一区二区| 亚洲你懂的在线视频| 日本一区二区动态图| 精品久久久久一区二区国产| 欧美在线|欧美| 成人黄色在线看| 国产一区二区三区免费看| 日韩电影在线一区二区三区| 亚洲女子a中天字幕| 国产无人区一区二区三区| 日韩一级片在线播放| 欧美片网站yy| 欧美日韩中字一区| 色又黄又爽网站www久久| 国产激情一区二区三区桃花岛亚洲| 视频一区免费在线观看| 亚洲国产一区二区在线播放| 亚洲视频 欧洲视频| 中文字幕永久在线不卡| 国产视频一区在线播放| 精品国产亚洲在线| 26uuu亚洲| 亚洲啪啪综合av一区二区三区| 国产三级一区二区| 久久精品一区二区| 久久精品一区八戒影视| 久久综合五月天婷婷伊人| 欧美精品一区二区三区四区 | 国产婷婷一区二区| 久久久影视传媒| 久久久99精品免费观看| 久久精品欧美日韩精品| 欧美国产精品专区| 国产精品久久三| 最新高清无码专区| 亚洲免费伊人电影| 亚洲成人动漫在线观看| 丝袜亚洲另类丝袜在线| 日本不卡123| 狠狠色伊人亚洲综合成人| 国产精品影视在线观看| hitomi一区二区三区精品| 99久久er热在这里只有精品15| 91亚洲国产成人精品一区二三| 91色婷婷久久久久合中文| 一本一道久久a久久精品| 91国产视频在线观看| 欧美日韩国产区一| 欧美成人福利视频| 亚洲国产精品t66y| 亚洲国产综合视频在线观看| 日韩一区精品视频| 国产一区二区成人久久免费影院| 国产激情一区二区三区四区 | 精品盗摄一区二区三区| 亚洲国产成人自拍| 一区二区三区精品在线| 日本一不卡视频| 国产一级精品在线| 94色蜜桃网一区二区三区| 欧美吞精做爰啪啪高潮| 欧美tickling挠脚心丨vk| 国产精品无码永久免费888| 一区二区国产视频| 美女国产一区二区| 91在线观看一区二区| 欧美日韩1区2区| 国产日韩欧美一区二区三区乱码| 亚洲码国产岛国毛片在线| 日韩国产欧美一区二区三区| 国产成人精品aa毛片| 欧美综合色免费| www亚洲一区| 一区二区激情视频| 国产成人免费视频网站| 一本久久a久久精品亚洲| 日韩手机在线导航| 亚洲天堂网中文字| 美女mm1313爽爽久久久蜜臀| 成人黄色小视频| 欧美一区二区三区免费视频| 中文字幕一区二区在线观看| 美腿丝袜在线亚洲一区| 91香蕉视频污在线| 久久精品一区二区三区不卡| 日韩精品三区四区| 色综合久久九月婷婷色综合| 精品奇米国产一区二区三区| 亚洲动漫第一页| 99re成人在线| 国产欧美久久久精品影院| 亚洲成a人片在线不卡一二三区| 不卡视频在线看| 精品成人一区二区三区| 爽好久久久欧美精品| 91在线精品秘密一区二区| 国产欧美日韩亚州综合| 另类小说图片综合网| 欧美性xxxxxx少妇| 国产精品夫妻自拍| 春色校园综合激情亚洲| 337p粉嫩大胆噜噜噜噜噜91av | 亚洲黄色录像片| 国产毛片精品视频| 欧美一区二区福利视频| 亚洲自拍另类综合| 91一区在线观看| 国产精品福利影院| 成人黄页在线观看| 国产精品网站导航| 丁香婷婷综合激情五月色| 久久色中文字幕| 国产在线一区观看| 精品欧美一区二区三区精品久久| 日韩精品成人一区二区在线| 欧美精选午夜久久久乱码6080| 亚洲综合一区在线| 在线观看日韩高清av| 亚洲国产日韩精品| 欧美日韩久久一区二区| 亚洲国产wwwccc36天堂| 欧美色偷偷大香| 亚洲18色成人| 日韩一区二区三区高清免费看看| 日日摸夜夜添夜夜添精品视频 | 国产午夜亚洲精品午夜鲁丝片| 激情小说亚洲一区| 国产日韩一级二级三级| 国产成人精品www牛牛影视| 亚洲国产高清在线| 99国产精品久久久久| 亚洲女人小视频在线观看| 99re视频精品| 夜夜嗨av一区二区三区中文字幕| 欧美性三三影院| 另类小说图片综合网| 久久精品这里都是精品| 99在线热播精品免费| 亚洲精选在线视频| 欧美日韩视频在线一区二区| 日韩精品福利网| 久久久久久日产精品| 99热国产精品| 午夜欧美一区二区三区在线播放| 日韩一级片在线播放| 99热国产精品| 免费美女久久99| 国产精品久久久久久久裸模| 欧美在线免费播放|