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 446 // Readlink returns the destination of the named symbolic link.
448 func Readlink(name string) (string, error) {
449 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 446 // Readlink returns the destination of the named symbolic link.
448 func Readlink(name string) (string, error) {
449 return "", &PathError{"readlink", name, syscall.EPLAN9}
  /system/update_engine/common/
test_utils.cc 106 string Readlink(const string& path) {
108 ssize_t r = readlink(path.c_str(), buf.data(), buf.size());
  /system/core/base/
file.cpp 227 bool Readlink(const std::string& path, std::string* result) {
236 ssize_t size = readlink(path.c_str(), &buf[0], buf.size());
267 android::base::Readlink("/proc/self/exe", &path);
  /prebuilts/go/darwin-x86/src/syscall/
fs_nacl.go 739 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 879 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_386.go 877 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_amd64.go 877 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_arm.go 877 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_netbsd_386.go 861 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_netbsd_amd64.go 861 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_netbsd_arm.go 861 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_openbsd_386.go 869 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_openbsd_amd64.go 869 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_openbsd_arm.go 869 func Readlink(path string, buf []byte) (n int, err error) {
  /prebuilts/go/linux-x86/src/syscall/
fs_nacl.go 739 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 879 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_386.go 877 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_amd64.go 877 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_freebsd_arm.go 877 func Readlink(path string, buf []byte) (n int, err error) {
zsyscall_netbsd_386.go 861 func Readlink(path string, buf []byte) (n int, err error) {

Completed in 761 milliseconds

1 2