891 lines
No EOL
281 KiB
Text
891 lines
No EOL
281 KiB
Text
!<arch>
|
||
__.PKGDEF 0 0 0 644 19957 `
|
||
go object linux amd64 go1.5.1 X:none
|
||
build id "1f22d22b27c0d02f50f4b93522ce4b47a3a73464"
|
||
|
||
$$
|
||
package flag
|
||
import runtime "runtime"
|
||
import errors "errors"
|
||
import fmt "fmt"
|
||
import strconv "strconv"
|
||
import io "io"
|
||
import os "os"
|
||
import time "time"
|
||
import sort "sort"
|
||
var @"".ErrHelp error
|
||
type @"".Value interface { Set(? string) (? error); String() (? string) }
|
||
type @"".Getter interface { Get() (? interface {}); Set(? string) (? error); String() (? string) }
|
||
type @"".ErrorHandling int
|
||
const @"".ContinueOnError @"".ErrorHandling = 0x0
|
||
const @"".ExitOnError @"".ErrorHandling = 0x1
|
||
const @"".PanicOnError @"".ErrorHandling = 0x2
|
||
type @"".Flag struct { Name string; Usage string; Value @"".Value; DefValue string }
|
||
type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
|
||
type @"time".Duration int64
|
||
func (@"time".d·2 @"time".Duration) Hours () (? float64) { var @"time".hour·3 @"time".Duration; ; @"time".hour·3 = @"time".d·2 / @"time".Duration(0x34630b8a000); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x34630b8a000); return float64(@"time".hour·3) + float64(@"time".nsec·4) * 8190022623310637111963488201822504381538623676021880892417778544696899264837610290203272971060556344039023584360473938041055625214280336402169897364226048p-553 }
|
||
func (@"time".d·2 @"time".Duration) Minutes () (? float64) { var @"time".min·3 @"time".Duration; ; @"time".min·3 = @"time".d·2 / @"time".Duration(0xdf8475800); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0xdf8475800); return float64(@"time".min·3) + float64(@"time".nsec·4) * 7678146209353722106395056769533233877065564876941352542109479049699919628723768656821910653339403201031675627614471533358284117434246264392176261853609984p-547 }
|
||
func (@"time".d·2 @"time".Duration) Nanoseconds () (? int64) { return int64(@"time".d·2) }
|
||
func (@"time".d·2 @"time".Duration) Seconds () (? float64) { var @"time".sec·3 @"time".Duration; ; @"time".sec·3 = @"time".d·2 / @"time".Duration(0x3b9aca00); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x3b9aca00); return float64(@"time".sec·3) + float64(@"time".nsec·4) * 7198262071269114660816079141112770740375861891461678802759824945047098083990024106014198994535558872472104883612039846078596891298747423852523262413111296p-541 }
|
||
func (@"time".d·2 @"time".Duration) String () (? string)
|
||
type @"".FlagSet struct { Usage func(); @"".name string; @"".parsed bool; @"".actual map[string]*@"".Flag; @"".formal map[string]*@"".Flag; @"".args []string; @"".errorHandling @"".ErrorHandling; @"".output @"io".Writer }
|
||
func (@"".f·2 *@"".FlagSet "esc:0x32") Arg (@"".i·3 int) (? string) { if @"".i·3 < 0x0 || @"".i·3 >= len(@"".f·2.@"".args) { return "" }; return @"".f·2.@"".args[@"".i·3] }
|
||
func (@"".f·2 *@"".FlagSet "esc:0x22") Args () (? []string) { return @"".f·2.@"".args }
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") Bool (@"".name·3 string, @"".value·4 bool, @"".usage·5 string) (? *bool)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") BoolVar (@"".p·2 *bool, @"".name·3 string, @"".value·4 bool, @"".usage·5 string)
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") Duration (@"".name·3 string, @"".value·4 @"time".Duration, @"".usage·5 string) (? *@"time".Duration)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") DurationVar (@"".p·2 *@"time".Duration, @"".name·3 string, @"".value·4 @"time".Duration, @"".usage·5 string)
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") Float64 (@"".name·3 string, @"".value·4 float64, @"".usage·5 string) (? *float64)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") Float64Var (@"".p·2 *float64, @"".name·3 string, @"".value·4 float64, @"".usage·5 string)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x1") Init (@"".name·2 string, @"".errorHandling·3 @"".ErrorHandling) { @"".f·1.@"".name = @"".name·2; @"".f·1.@"".errorHandling = @"".errorHandling·3 }
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") Int (@"".name·3 string, @"".value·4 int, @"".usage·5 string) (? *int)
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") Int64 (@"".name·3 string, @"".value·4 int64, @"".usage·5 string) (? *int64)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") Int64Var (@"".p·2 *int64, @"".name·3 string, @"".value·4 int64, @"".usage·5 string)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") IntVar (@"".p·2 *int, @"".name·3 string, @"".value·4 int, @"".usage·5 string)
|
||
func (@"".f·2 *@"".FlagSet "esc:0x1") Lookup (@"".name·3 string "esc:0x1") (? *@"".Flag) { return @"".f·2.@"".formal[@"".name·3] }
|
||
func (@"".f·2 *@"".FlagSet "esc:0x1") NArg () (? int) { return len(@"".f·2.@"".args) }
|
||
func (@"".f·2 *@"".FlagSet "esc:0x1") NFlag () (? int) { return len(@"".f·2.@"".actual) }
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") Parse (@"".arguments·3 []string) (? error)
|
||
func (@"".f·2 *@"".FlagSet "esc:0x1") Parsed () (? bool) { return @"".f·2.@"".parsed }
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") PrintDefaults ()
|
||
func (@"".f·2 *@"".FlagSet "esc:0x1") Set (@"".name·3 string, @"".value·4 string) (? error)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x1") SetOutput (@"".output·2 @"io".Writer) { @"".f·1.@"".output = @"".output·2 }
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") String (@"".name·3 string, @"".value·4 string, @"".usage·5 string) (? *string)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") StringVar (@"".p·2 *string, @"".name·3 string, @"".value·4 string, @"".usage·5 string)
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") Uint (@"".name·3 string, @"".value·4 uint, @"".usage·5 string) (? *uint)
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") Uint64 (@"".name·3 string, @"".value·4 uint64, @"".usage·5 string) (? *uint64)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") Uint64Var (@"".p·2 *uint64, @"".name·3 string, @"".value·4 uint64, @"".usage·5 string)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") UintVar (@"".p·2 *uint, @"".name·3 string, @"".value·4 uint, @"".usage·5 string)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") Var (@"".value·2 @"".Value, @"".name·3 string, @"".usage·4 string)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") Visit (@"".fn·2 func(? *@"".Flag) "esc:0x1")
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") VisitAll (@"".fn·2 func(? *@"".Flag) "esc:0x1")
|
||
func (@"".f·2 *@"".FlagSet "esc:0x9") @"".failf (@"".format·3 string "esc:0x9", @"".a·4 ...interface {} "esc:0x9") (? error)
|
||
func (@"".f·2 *@"".FlagSet "esc:0x22") @"".out () (? @"io".Writer) { if @"".f·2.@"".output == nil { return @"os".Stderr }; return @"".f·2.@"".output }
|
||
func (@"".f·3 *@"".FlagSet "esc:0x9") @"".parseOne () (? bool, ? error)
|
||
func (@"".f·1 *@"".FlagSet "esc:0x9") @"".usage ()
|
||
func @"".VisitAll (@"".fn·1 func(? *@"".Flag) "esc:0x1")
|
||
func @"".Visit (@"".fn·1 func(? *@"".Flag) "esc:0x1")
|
||
func @"".Lookup (@"".name·2 string "esc:0x1") (? *@"".Flag) { return @"".CommandLine.@"".formal[@"".name·2] }
|
||
func @"".Set (@"".name·2 string, @"".value·3 string) (? error)
|
||
func @"".UnquoteUsage (@"".flag·3 *@"".Flag "esc:0x122") (@"".name·1 string, @"".usage·2 string)
|
||
func @"".PrintDefaults ()
|
||
var @"".Usage func()
|
||
func @"".NFlag () (? int) { return len(@"".CommandLine.@"".actual) }
|
||
func @"".Arg (@"".i·2 int) (? string) { return @"".CommandLine.Arg(@"".i·2) }
|
||
func @"".NArg () (? int) { return len(@"".CommandLine.@"".args) }
|
||
func @"".Args () (? []string) { return @"".CommandLine.@"".args }
|
||
func @"".BoolVar (@"".p·1 *bool, @"".name·2 string, @"".value·3 bool, @"".usage·4 string)
|
||
func @"".Bool (@"".name·2 string, @"".value·3 bool, @"".usage·4 string) (? *bool)
|
||
func @"".IntVar (@"".p·1 *int, @"".name·2 string, @"".value·3 int, @"".usage·4 string)
|
||
func @"".Int (@"".name·2 string, @"".value·3 int, @"".usage·4 string) (? *int)
|
||
func @"".Int64Var (@"".p·1 *int64, @"".name·2 string, @"".value·3 int64, @"".usage·4 string)
|
||
func @"".Int64 (@"".name·2 string, @"".value·3 int64, @"".usage·4 string) (? *int64)
|
||
func @"".UintVar (@"".p·1 *uint, @"".name·2 string, @"".value·3 uint, @"".usage·4 string)
|
||
func @"".Uint (@"".name·2 string, @"".value·3 uint, @"".usage·4 string) (? *uint)
|
||
func @"".Uint64Var (@"".p·1 *uint64, @"".name·2 string, @"".value·3 uint64, @"".usage·4 string)
|
||
func @"".Uint64 (@"".name·2 string, @"".value·3 uint64, @"".usage·4 string) (? *uint64)
|
||
func @"".StringVar (@"".p·1 *string, @"".name·2 string, @"".value·3 string, @"".usage·4 string)
|
||
func @"".String (@"".name·2 string, @"".value·3 string, @"".usage·4 string) (? *string)
|
||
func @"".Float64Var (@"".p·1 *float64, @"".name·2 string, @"".value·3 float64, @"".usage·4 string)
|
||
func @"".Float64 (@"".name·2 string, @"".value·3 float64, @"".usage·4 string) (? *float64)
|
||
func @"".DurationVar (@"".p·1 *@"time".Duration, @"".name·2 string, @"".value·3 @"time".Duration, @"".usage·4 string)
|
||
func @"".Duration (@"".name·2 string, @"".value·3 @"time".Duration, @"".usage·4 string) (? *@"time".Duration)
|
||
func @"".Var (@"".value·1 @"".Value, @"".name·2 string, @"".usage·3 string)
|
||
func @"".Parse ()
|
||
func @"".Parsed () (? bool) { return @"".CommandLine.Parsed() }
|
||
var @"".CommandLine *@"".FlagSet
|
||
func @"".NewFlagSet (@"".name·2 string, @"".errorHandling·3 @"".ErrorHandling) (? *@"".FlagSet) { var @"".f·4 *@"".FlagSet; @"".f·4 = (&@"".FlagSet{ @"".name:@"".name·2, @"".errorHandling:@"".errorHandling·3 }); return @"".f·4 }
|
||
func @"".init ()
|
||
type @"os".dirInfo struct { @"os".buf []byte; @"os".nbuf int; @"os".bufp int }
|
||
type @"os".file struct { @"os".fd int; @"os".name string; @"os".dirinfo *@"os".dirInfo; @"os".nepipe int32 }
|
||
func (@"os".file·2 *@"os".file) @"os".close () (? error)
|
||
type @"os".FileMode uint32
|
||
func (@"os".m·2 @"os".FileMode) IsDir () (? bool) { return @"os".m·2 & @"os".FileMode(0x80000000) != @"os".FileMode(0x0) }
|
||
func (@"os".m·2 @"os".FileMode) IsRegular () (? bool) { return @"os".m·2 & @"os".FileMode(0x8f000000) == @"os".FileMode(0x0) }
|
||
func (@"os".m·2 @"os".FileMode) Perm () (? @"os".FileMode) { return @"os".m·2 & @"os".FileMode(0x1ff) }
|
||
func (@"os".m·2 @"os".FileMode) String () (? string)
|
||
type @"time".zone struct { @"time".name string; @"time".offset int; @"time".isDST bool }
|
||
type @"time".zoneTrans struct { @"time".when int64; @"time".index uint8; @"time".isstd bool; @"time".isutc bool }
|
||
type @"time".Location struct { @"time".name string; @"time".zone []@"time".zone; @"time".tx []@"time".zoneTrans; @"time".cacheStart int64; @"time".cacheEnd int64; @"time".cacheZone *@"time".zone }
|
||
func (@"time".l·2 *@"time".Location "esc:0x22") String () (? string)
|
||
func (@"time".l·2 *@"time".Location "esc:0x1") @"time".firstZoneUsed () (? bool)
|
||
func (@"time".l·2 *@"time".Location "esc:0x12") @"time".get () (? *@"time".Location)
|
||
func (@"time".l·6 *@"time".Location "esc:0x32") @"time".lookup (@"time".sec·7 int64) (@"time".name·1 string, @"time".offset·2 int, @"time".isDST·3 bool, @"time".start·4 int64, @"time".end·5 int64)
|
||
func (@"time".l·2 *@"time".Location "esc:0x1") @"time".lookupFirstZone () (? int)
|
||
func (@"time".l·4 *@"time".Location "esc:0x1") @"time".lookupName (@"time".name·5 string "esc:0x1", @"time".unix·6 int64) (@"time".offset·1 int, @"time".isDST·2 bool, @"time".ok·3 bool)
|
||
type @"time".Month int
|
||
func (@"time".m·2 @"time".Month) String () (? string) { return @"time".months[@"time".m·2 - @"time".Month(0x1)] }
|
||
type @"time".Weekday int
|
||
func (@"time".d·2 @"time".Weekday) String () (? string) { return @"time".days[@"time".d·2] }
|
||
type @"time".Time struct { @"time".sec int64; @"time".nsec int32; @"time".loc *@"time".Location }
|
||
func (@"time".t·2 @"time".Time "esc:0x12") Add (@"time".d·3 @"time".Duration) (? @"time".Time) { @"time".t·2.@"time".sec += int64(@"time".d·3 / @"time".Duration(0x3b9aca00)); var @"time".nsec·4 int32; ; @"time".nsec·4 = int32(@"time".t·2.@"time".nsec) + int32(@"time".d·3 % @"time".Duration(0x3b9aca00)); if @"time".nsec·4 >= 0x3b9aca00 { @"time".t·2.@"time".sec++; @"time".nsec·4 -= 0x3b9aca00 } else { if @"time".nsec·4 < 0x0 { @"time".t·2.@"time".sec--; @"time".nsec·4 += 0x3b9aca00 } }; @"time".t·2.@"time".nsec = @"time".nsec·4; return @"time".t·2 }
|
||
func (@"time".t·2 @"time".Time "esc:0x12") AddDate (@"time".years·3 int, @"time".months·4 int, @"time".days·5 int) (? @"time".Time)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") After (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec > @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec > @"time".u·3.@"time".nsec }
|
||
func (@"time".t·2 @"time".Time "esc:0x9") AppendFormat (@"time".b·3 []byte "esc:0x1a", @"time".layout·4 string "esc:0x9") (? []byte)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Before (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec < @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec < @"time".u·3.@"time".nsec }
|
||
func (@"time".t·4 @"time".Time "esc:0x1") Clock () (@"time".hour·1 int, @"time".min·2 int, @"time".sec·3 int)
|
||
func (@"time".t·4 @"time".Time "esc:0x1") Date () (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Day () (? int)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Equal (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec == @"time".u·3.@"time".nsec }
|
||
func (@"time".t·2 @"time".Time "esc:0x9") Format (@"time".layout·3 string "esc:0x9") (? string)
|
||
func (@"time".t·2 *@"time".Time "esc:0x1") GobDecode (@"time".data·3 []byte "esc:0x1") (? error)
|
||
func (@"time".t·3 @"time".Time "esc:0x1") GobEncode () (? []byte, ? error)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Hour () (? int)
|
||
func (@"time".t·3 @"time".Time "esc:0x1") ISOWeek () (@"time".year·1 int, @"time".week·2 int)
|
||
func (@"time".t·2 @"time".Time "esc:0x12") In (@"time".loc·3 *@"time".Location "esc:0x12") (? @"time".Time)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") IsZero () (? bool) { return @"time".t·2.@"time".sec == 0x0 && @"time".t·2.@"time".nsec == 0x0 }
|
||
func (@"time".t·2 @"time".Time "esc:0x12") Local () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".Local; return @"time".t·2 }
|
||
func (@"time".t·2 @"time".Time "esc:0x12") Location () (? *@"time".Location) { var @"time".l·3 *@"time".Location; ; @"time".l·3 = @"time".t·2.@"time".loc; if @"time".l·3 == nil { @"time".l·3 = @"time".UTC }; return @"time".l·3 }
|
||
func (@"time".t·3 @"time".Time "esc:0x1") MarshalBinary () (? []byte, ? error)
|
||
func (@"time".t·3 @"time".Time "esc:0x9") MarshalJSON () (? []byte, ? error)
|
||
func (@"time".t·3 @"time".Time "esc:0x9") MarshalText () (? []byte, ? error)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Minute () (? int)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Month () (? @"time".Month)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Nanosecond () (? int) { return int(@"time".t·2.@"time".nsec) }
|
||
func (@"time".t·2 @"time".Time "esc:0x12") Round (@"time".d·3 @"time".Duration) (? @"time".Time)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Second () (? int)
|
||
func (@"time".t·2 @"time".Time "esc:0x9") String () (? string)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Sub (@"time".u·3 @"time".Time "esc:0x1") (? @"time".Duration)
|
||
func (@"time".t·2 @"time".Time "esc:0x12") Truncate (@"time".d·3 @"time".Duration) (? @"time".Time)
|
||
func (@"time".t·2 @"time".Time "esc:0x12") UTC () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".UTC; return @"time".t·2 }
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Unix () (? int64) { return @"time".t·2.@"time".sec + -0xe7791f700 }
|
||
func (@"time".t·2 @"time".Time "esc:0x1") UnixNano () (? int64) { return (@"time".t·2.@"time".sec + -0xe7791f700) * 0x3b9aca00 + int64(@"time".t·2.@"time".nsec) }
|
||
func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalBinary (@"time".data·3 []byte "esc:0x1") (? error)
|
||
func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalJSON (@"time".data·3 []byte "esc:0x1") (@"time".err·1 error)
|
||
func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalText (@"time".data·3 []byte "esc:0x1") (@"time".err·1 error)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Weekday () (? @"time".Weekday)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") Year () (? int)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") YearDay () (? int)
|
||
func (@"time".t·3 @"time".Time "esc:0x32") Zone () (@"time".name·1 string, @"time".offset·2 int)
|
||
func (@"time".t·2 @"time".Time "esc:0x1") @"time".abs () (? uint64)
|
||
func (@"time".t·5 @"time".Time "esc:0x1") @"time".date (@"time".full·6 bool) (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int, @"time".yday·4 int)
|
||
func (@"time".t·4 @"time".Time "esc:0x32") @"time".locabs () (@"time".name·1 string, @"time".offset·2 int, @"time".abs·3 uint64)
|
||
type @"os".FileInfo interface { IsDir() (? bool); ModTime() (? @"time".Time); Mode() (? @"os".FileMode); Name() (? string); Size() (? int64); Sys() (? interface {}) }
|
||
type @"os".File struct { @"os".? *@"os".file }
|
||
func (@"os".f·2 *@"os".File "esc:0x22") Chdir () (? error)
|
||
func (@"os".f·2 *@"os".File "esc:0x22") Chmod (@"os".mode·3 @"os".FileMode) (? error)
|
||
func (@"os".f·2 *@"os".File "esc:0x22") Chown (@"os".uid·3 int, @"os".gid·4 int) (? error)
|
||
func (@"os".f·2 *@"os".File "esc:0x9") Close () (? error)
|
||
func (@"os".f·2 *@"os".File "esc:0x1") Fd () (? uintptr) { if @"os".f·2 == nil { return 0xffffffffffffffff }; return uintptr(@"os".f·2.@"os".file.@"os".fd) }
|
||
func (@"os".f·2 *@"os".File "esc:0x32") Name () (? string) { return @"os".f·2.@"os".file.@"os".name }
|
||
func (@"os".f·3 *@"os".File "esc:0x102") Read (@"os".b·4 []byte "esc:0x1") (@"os".n·1 int, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x102") ReadAt (@"os".b·4 []byte "esc:0x1", @"os".off·5 int64) (@"os".n·1 int, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x1") Readdir (@"os".n·4 int) (@"os".fi·1 []@"os".FileInfo, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x1") Readdirnames (@"os".n·4 int) (@"os".names·1 []string, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x102") Seek (@"os".offset·4 int64, @"os".whence·5 int) (@"os".ret·1 int64, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x10a") Stat () (? @"os".FileInfo, ? error)
|
||
func (@"os".f·2 *@"os".File "esc:0x1") Sync () (? error)
|
||
func (@"os".f·2 *@"os".File "esc:0x22") Truncate (@"os".size·3 int64) (? error)
|
||
func (@"os".f·3 *@"os".File "esc:0x10a") Write (@"os".b·4 []byte "esc:0x1") (@"os".n·1 int, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x102") WriteAt (@"os".b·4 []byte "esc:0x1", @"os".off·5 int64) (@"os".n·1 int, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x10a") WriteString (@"os".s·4 string "esc:0x1") (@"os".n·1 int, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x1") @"os".pread (@"os".b·4 []byte "esc:0x1", @"os".off·5 int64) (@"os".n·1 int, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x1") @"os".pwrite (@"os".b·4 []byte "esc:0x1", @"os".off·5 int64) (@"os".n·1 int, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x1") @"os".read (@"os".b·4 []byte "esc:0x1") (@"os".n·1 int, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x1") @"os".readdir (@"os".n·4 int) (@"os".fi·1 []@"os".FileInfo, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x1") @"os".readdirnames (@"os".n·4 int) (@"os".names·1 []string, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x1") @"os".seek (@"os".offset·4 int64, @"os".whence·5 int) (@"os".ret·1 int64, @"os".err·2 error)
|
||
func (@"os".f·3 *@"os".File "esc:0x1") @"os".write (@"os".b·4 []byte "esc:0x1") (@"os".n·1 int, @"os".err·2 error)
|
||
var @"os".Stderr *@"os".File
|
||
var @"time".months [12]string
|
||
var @"time".days [7]string
|
||
var @"time".Local *@"time".Location
|
||
var @"time".UTC *@"time".Location
|
||
|
||
$$
|
||
|