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

1 2

  /bionic/tests/
gtest_globals.cpp 41 std::string real_path; local
42 if (!android::base::Realpath(out_path, &real_path)) {
47 return real_path;
  /external/syslinux/extlinux/
mountinfo.c 198 char *real_path; local
211 real_path = realpath(path, NULL);
212 if (!real_path)
219 len = strlen(real_path);
233 !memcmp(m->path, real_path, m->pathlen) &&
234 (real_path[m->pathlen] == '/' || real_path[m->pathlen] == '\0')) {
241 if (real_path[best->pathlen] == '\0')
244 *subpath = strdup(real_path + best->pathlen);
  /external/clang/lib/Frontend/
ModuleDependencyCollector.cpp 84 static bool real_path(StringRef SrcPath, SmallVectorImpl<char> &RealPath) { function
113 if (!real_path(Path, TmpDest))
123 if (real_path(UpperDest, RealDest) && Path.equals(RealDest))
165 // Use real_path to fix any symbolic link component present in a path.
169 if (!real_path(Dir, RealPath))
  /external/curl/lib/
file.c 189 char *real_path; local
198 CURLcode result = Curl_urldecode(data, data->state.path, 0, &real_path,
218 actual_path = real_path;
232 Curl_safefree(real_path);
239 if(memchr(real_path, 0, real_path_len)) {
241 Curl_safefree(real_path);
245 fd = open_readonly(real_path, O_RDONLY);
246 file->path = real_path;
248 file->freepath = real_path; /* free this when done */
ssh.c 417 char *real_path = NULL; local
428 real_path = malloc(working_path_len+1);
429 if(real_path == NULL) {
435 memcpy(real_path, working_path+3, 4 + working_path_len-3);
437 memcpy(real_path, working_path, 1 + working_path_len);
442 real_path = malloc(homelen + working_path_len + 1);
443 if(real_path == NULL) {
449 memcpy(real_path, homedir, homelen);
450 real_path[homelen] = '/';
451 real_path[homelen+1] = '\0'
    [all...]
  /external/autotest/client/site_tests/security_DeviceJail_Filesystem/
security_DeviceJail_Filesystem.py 78 real_path = os.path.realpath(os.path.join(dirpath, filename))
80 mode = os.stat(real_path).st_mode
85 self._check_device(real_path)
  /external/libcxx/
run_tests.py 131 real_path = os.path.realpath(arg)
132 if not real_path.startswith(default_test_path):
134 if not os.path.exists(real_path):
  /device/google/marlin/recovery/gpt-utils/
gpt-utils.cpp 529 char real_path[PATH_MAX] = {0}; local
538 if (readlink(bootdev_path, real_path, sizeof(real_path) - 1) < 0) {
544 if(strlen(real_path) < PATH_TRUNCATE_LOC + 1){
546 real_path);
551 real_path[PATH_TRUNCATE_LOC] = '\0';
552 if(strlen(real_path) < LUN_NAME_START_LOC + 1){
554 real_path);
562 &real_path[LUN_NAME_START_LOC]);
984 char real_path[PATH_MAX] = {0}; local
    [all...]
  /hardware/qcom/msm8998/gpt-utils/
gpt-utils.cpp 529 char real_path[PATH_MAX] = {0}; local
538 if (readlink(bootdev_path, real_path, sizeof(real_path) - 1) < 0) {
544 if(strlen(real_path) < PATH_TRUNCATE_LOC + 1){
546 real_path);
551 real_path[PATH_TRUNCATE_LOC] = '\0';
552 if(strlen(real_path) < LUN_NAME_START_LOC + 1){
554 real_path);
562 &real_path[LUN_NAME_START_LOC]);
984 char real_path[PATH_MAX] = {0}; local
    [all...]
  /external/autotest/client/bin/result_tools/
utils.py 88 real_path = os.path.realpath(path)
95 if ((os.path.islink(path) and real_path.startswith(top_dir)) or
96 real_path in all_dirs):
99 all_dirs.add(real_path)
  /external/toolchain-utils/binary_search_tool/
binary_search_perforce.py 35 real_path = p4_path[1]
36 if real_path.endswith('...'):
37 real_path = real_path.replace('/...', '')
39 '; mkdir -p ' + checkoutdir + '/' + os.path.dirname(real_path))
40 command += ('&& rsync -lr ' + p4_snapshot + '/' + real_path + ' ' +
41 checkoutdir + '/' + os.path.dirname(real_path))
  /external/toolchain-utils/
test_toolchains.py 74 real_path = os.path.realpath(sym_path)
77 path_pieces = real_path.split('/')
  /external/libchrome/base/files/
file_util.h 275 // Sets |real_path| to |path| with symbolic links and junctions expanded.
280 // or if |real_path| would be longer than MAX_PATH characters.
281 BASE_EXPORT bool NormalizeFilePath(const FilePath& path, FilePath* real_path);
291 // Given an existing file in |path|, set |real_path| to the path
file_util_posix.cc 85 bool RealPath(const FilePath& path, FilePath* real_path) {
91 *real_path = FilePath(buf);
  /frameworks/native/cmds/dumpstate/
utils.cpp 1211 const std::string& real_path = path.empty() ? screenshot_path_ : path; local
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
FileSystem.h 356 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
FileSystem.h 356 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
FileSystem.h 356 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
FileSystem.h 356 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
FileSystem.h 356 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
FileSystem.h 356 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
FileSystem.h 356 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
FileSystem.h 356 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
    [all...]
  /external/libcxx/src/experimental/filesystem/
operations.cpp 313 const path real_path(__read_symlink(existing_symlink, ec));
318 __create_symlink(real_path, new_symlink, ec);
  /bionic/linker/
linker.cpp     [all...]

Completed in 1385 milliseconds

1 2