/external/chromium_org/sandbox/win/src/ |
registry_dispatcher.cc | 78 base::string16 real_path = *name; local 91 if (!GetCompletePath(root, *name, &real_path)) 94 const wchar_t* regname = real_path.c_str(); 124 base::string16 real_path = *name; local 136 if (!GetCompletePath(root, *name, &real_path)) 139 const wchar_t* regname = real_path.c_str();
|
/external/chromium_org/tools/json_schema_compiler/ |
schema_loader.py | 18 - |real_path| path to the directory with the API header files, used for file 21 def __init__(self, display_path, real_path): 23 self._real_path = real_path 51 the real_path argument passed to the constructor.'''
|
/external/libvpx/libvpx/examples/includes/geshi/contrib/ |
aliased.php | 30 $real_path = realpath($path); variable 31 if(strncmp($real_path, SOURCE_ROOT, $base_path_len)) {
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
render_servlet_test.py | 37 def create_404_response(real_path): 38 real_404 = self._Render(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/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/chrome/browser/ |
process_singleton_linux.cc | 276 std::string real_path = ReadLink(path).value(); local 277 if (real_path.empty()) 280 std::string::size_type pos = real_path.rfind(kLockDelimiter); 290 *hostname = real_path.substr(0, pos); 292 const std::string& pid_str = real_path.substr(pos + 1); [all...] |
/external/chromium_org/chrome/browser/ |
process_singleton_linux.cc | 272 std::string real_path = ReadLink(path).value(); local 273 if (real_path.empty()) 276 std::string::size_type pos = real_path.rfind(kLockDelimiter); 286 *hostname = real_path.substr(0, pos); 288 const std::string& pid_str = real_path.substr(pos + 1); [all...] |
/external/chromium_org/base/ |
file_util.h | 267 // Sets |real_path| to |path| with symbolic links and junctions expanded. 272 // or if |real_path| would be longer than MAX_PATH characters. 273 BASE_EXPORT bool NormalizeFilePath(const FilePath& path, FilePath* real_path); 283 // Given an existing file in |path|, set |real_path| to the path
|
file_util_win.cc | 391 bool NormalizeFilePath(const FilePath& path, FilePath* real_path) { 400 return DevicePathToDriveLetterPath(mapped_file, real_path);
|
file_util_posix.cc | 92 bool RealPath(const FilePath& path, FilePath* real_path) { 98 *real_path = FilePath(buf);
|
/external/chromium/base/ |
file_util.h | 313 // Sets |real_path| to |path| with symbolic links and junctions expanded. 318 // or if |real_path| would be longer than MAX_PATH characters. 319 BASE_API bool NormalizeFilePath(const FilePath& path, FilePath* real_path); 322 // Given an existing file in |path|, it returns in |real_path| the path
|
file_util_posix.cc | 50 bool RealPath(const FilePath& path, FilePath* real_path) { 56 *real_path = FilePath(buf);
|
file_util_win.cc | [all...] |
/external/chromium_org/chrome/browser/extensions/api/downloads/ |
downloads_api_browsertest.cc | 1038 base::FilePath real_path = all_downloads[0]->GetTargetFilePath(); local [all...] |