HomeSort by relevance Sort by last modified time
    Searched defs:Readlink (Results 1 - 25 of 42) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/os/
file_posix.go 16 // Readlink returns the destination of the named symbolic link.
18 func Readlink(name string) (string, error) {
21 n, e := fixCount(syscall.Readlink(fixLongPath(name), b))
23 return "", &PathError{"readlink", name, e}
file_plan9.go 442 // Readlink returns the destination of the named symbolic link.
444 func Readlink(name string) (string, error) {
445 return "", &PathError{"readlink", name, syscall.EPLAN9}
  /prebuilts/go/linux-x86/src/os/
file_posix.go 16 // Readlink returns the destination of the named symbolic link.
18 func Readlink(name string) (string, error) {
21 n, e := fixCount(syscall.Readlink(fixLongPath(name), b))
23 return "", &PathError{"readlink", name, e}
file_plan9.go 442 // Readlink returns the destination of the named symbolic link.
444 func Readlink(name string) (string, error) {
445 return "", &PathError{"readlink", name, syscall.EPLAN9}
  /system/update_engine/common/
test_utils.cc 105 string Readlink(const string& path) {
107 ssize_t r = readlink(path.c_str(), buf.data(), buf.size());
  /system/core/base/
file.cpp 196 bool Readlink(const std::string& path, std::string* result) {
205 ssize_t size = readlink(path.c_str(), &buf[0], buf.size());
236 android::base::Readlink("/proc/self/exe", &path);
  /prebuilts/go/darwin-x86/src/syscall/
fs_nacl.go 731 func Readlink(path string, buf []byte) (n int, err error) {
syscall_linux.go 62 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_dragonfly_amd64.go 903 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_386.go 903 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_amd64.go 903 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_arm.go 903 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_netbsd_386.go 885 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_netbsd_amd64.go 885 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_netbsd_arm.go 885 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_openbsd_386.go 893 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_openbsd_amd64.go 893 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_openbsd_arm.go 892 func Readlink(path string, buf []byte) (n int, err error) {
  /prebuilts/go/linux-x86/src/syscall/
fs_nacl.go 731 func Readlink(path string, buf []byte) (n int, err error) {
syscall_linux.go 62 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_dragonfly_amd64.go 903 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_386.go 903 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_amd64.go 903 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_arm.go 903 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_netbsd_386.go 885 func Readlink(path string, buf []byte) (n int, err error) {

Completed in 419 milliseconds

1 2