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

  /external/chromium_org/sandbox/win/src/
registry_dispatcher.cc 81 base::string16 real_path = *name; local
94 if (!GetCompletePath(root, *name, &real_path))
97 const wchar_t* regname = real_path.c_str();
127 base::string16 real_path = *name; local
139 if (!GetCompletePath(root, *name, &real_path))
142 const wchar_t* regname = real_path.c_str();
  /hardware/libhardware/modules/sensors/
multihal.cpp 483 char *real_path = realpath(line, NULL); local
484 if (starts_with(real_path, LEGAL_SUBHAL_PATH_PREFIX) ||
485 starts_with(real_path, LEGAL_SUBHAL_ALTERNATE_PATH_PREFIX)) {
486 ALOGV("accepting valid path '%s'", real_path);
487 char* compact_line = new char[strlen(real_path) + 1];
488 strcpy(compact_line, real_path);
492 real_path, LEGAL_SUBHAL_PATH_PREFIX, LEGAL_SUBHAL_ALTERNATE_PATH_PREFIX);
494 free(real_path);
  /external/chromium_org/ppapi/native_client/tools/browser_tester/
browser_tester.py 233 for server_path, real_path in file_mapping.iteritems():
234 if not os.path.exists(real_path):
235 raise AssertionError('\'%s\' does not exist.' % real_path)
  /external/chromium_org/third_party/skia/tools/skpdiff/
skpdiff_server.py 444 real_path = os.path.normpath(os.path.join(dir_path, file_path))
445 if os.path.commonprefix([real_path, dir_path]) == dir_path:
446 if os.path.isfile(real_path):
447 self.send_file(real_path)
  /external/skia/tools/skpdiff/
skpdiff_server.py 444 real_path = os.path.normpath(os.path.join(dir_path, file_path))
445 if os.path.commonprefix([real_path, dir_path]) == dir_path:
446 if os.path.isfile(real_path):
447 self.send_file(real_path)
  /external/chromium_org/chrome/common/extensions/docs/server2/
render_servlet_test.py 48 def create_404_response(real_path):
49 real_404 = self._Render(real_path)
  /external/chromium_org/chrome/browser/
process_singleton_posix.cc 289 std::string real_path = ReadLink(path).value(); local
290 if (real_path.empty())
293 std::string::size_type pos = real_path.rfind(kLockDelimiter);
303 *hostname = real_path.substr(0, pos);
305 const std::string& pid_str = real_path.substr(pos + 1);
    [all...]
  /external/chromium_org/base/files/
file_util.h 270 // Sets |real_path| to |path| with symbolic links and junctions expanded.
275 // or if |real_path| would be longer than MAX_PATH characters.
276 BASE_EXPORT bool NormalizeFilePath(const FilePath& path, FilePath* real_path);
286 // Given an existing file in |path|, set |real_path| to the path
file_util_win.cc 436 bool NormalizeFilePath(const FilePath& path, FilePath* real_path) {
445 return DevicePathToDriveLetterPath(mapped_file, real_path);
file_util_posix.cc 85 bool RealPath(const FilePath& path, FilePath* real_path) {
91 *real_path = FilePath(buf);
  /external/chromium_org/native_client_sdk/src/tools/
create_nmf.py 98 real_path = os.path.realpath(path)
100 return MakePosixPath(os.path.relpath(real_path, real_start))
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api_browsertest.cc 1057 base::FilePath real_path = all_downloads[0]->GetTargetFilePath(); local
    [all...]

Completed in 342 milliseconds