Lines Matching defs:string
299 func (f *File) WriteString(s string) (n int, err error) {
307 func Mkdir(name string, perm FileMode) error {
331 func setStickyBit(name string) error {
341 func Chdir(dir string) error {
364 func Open(name string) (*File, error) {
373 func Create(name string) (*File, error) {
383 func OpenFile(name string, flag int, perm FileMode) (*File, error) {
397 func openDir(name string) (*File, error) {
410 func Rename(oldpath, newpath string) error {
419 func Readlink(name string) (string, error) {
439 func (f *File) wrapErr(op string, err error) error {
613 func Chmod(name string, mode FileMode) error { return chmod(name, mode) }
689 func DirFS(dir string) fs.FS {
695 func (dir dirFS) Open(name string) (fs.File, error) {
716 func (dir dirFS) ReadFile(name string) ([]byte, error) {
734 func (dir dirFS) ReadDir(name string) ([]DirEntry, error) {
750 func (dir dirFS) Stat(name string) (fs.FileInfo, error) {
765 func (dir dirFS) join(name string) (string, error) {
783 func ReadFile(name string) ([]byte, error) {
830 func WriteFile(name string, data []byte, perm FileMode) error {