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

1 2 3 4

  /prebuilts/go/darwin-x86/src/os/
executable_procfs.go 15 // readlink returns a path appended with " (deleted)" when the original
29 return Readlink(procfn)
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}
os_windows_test.go 519 got, err := os.Readlink(link)
524 t.Errorf(`os.Readlink("%s"): got %v, want %v`, link, got, target)
  /prebuilts/go/linux-x86/src/os/
executable_procfs.go 15 // readlink returns a path appended with " (deleted)" when the original
29 return Readlink(procfn)
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}
os_windows_test.go 519 got, err := os.Readlink(link)
524 t.Errorf(`os.Readlink("%s"): got %v, want %v`, link, got, target)
  /system/core/base/include/android-base/
file.h 68 bool Readlink(const std::string& path, std::string* result);
  /system/core/debuggerd/libdebuggerd/
open_files_list.cpp 55 if (android::base::Readlink(path, &target)) {
58 ALOGE("failed to readlink %s: %s", path.c_str(), strerror(errno));
  /frameworks/native/cmds/lshal/libprocpartition/
procpartition.cpp 38 if (!android::base::Readlink("/proc/" + std::to_string(pid) + "/exe", &exe)) {
  /system/core/base/
file_test.cpp 132 TEST(file, Readlink) {
153 ASSERT_TRUE(android::base::Readlink(min_path, &result));
157 ASSERT_TRUE(android::base::Readlink(max_path, &result));
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);
  /system/vold/
Process.cpp 66 if (android::base::Readlink(path, &res)) {
  /system/core/init/
devices.cpp 43 using android::base::Readlink;
357 Readlink(link, &link_path) && link_path != devpath) {
368 if (Readlink(link, &link_path) && link_path == devpath) {
  /prebuilts/go/darwin-x86/src/path/filepath/
symlink.go 47 newpath, err = os.Readlink(path)
  /prebuilts/go/linux-x86/src/path/filepath/
symlink.go 47 newpath, err = os.Readlink(path)
  /system/extras/simpleperf/
gtest_main.cpp 135 if (!android::base::Readlink("/proc/self/exe", &executable_path)) {
136 PLOG(ERROR) << "ReadLink failed";
environment.cpp 502 if (!android::base::Readlink(fd_path + file, &real_path)) {
590 if (!android::base::Readlink("/proc/self/exe", &simpleperf_path)) {
591 PLOG(ERROR) << "ReadLink failed";
  /system/update_engine/common/
test_utils.h 96 std::string Readlink(const std::string& path);
test_utils.cc 106 string Readlink(const string& path) {
108 ssize_t r = readlink(path.c_str(), buf.data(), buf.size());
  /build/soong/cmd/fileslist/
fileslist.go 80 s, err := os.Readlink(n.path)
  /build/soong/cc/
ndk_headers.go 238 dest, err := os.Readlink(path.String())
240 ctx.ModuleErrorf("os.Readlink(%q) failed: %s",
  /system/update_engine/payload_consumer/
postinstall_runner_action_unittest.cc 109 test_utils::Readlink(base::StringPrintf(
  /frameworks/base/core/jni/
fd_utils.cpp 215 if (!android::base::Readlink(fd_path, &file_path)) {

Completed in 328 milliseconds

1 2 3 4