/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
fake_filesystem_vs_real_test.py | 62 real_path, fake_path = self._Paths(path) 64 os.mkdir(real_path) 67 fh = open(real_path, 'w') 75 fh = open(real_path, 'wb') 89 os.symlink(real_target, real_path) 92 os.link(real_target, real_path) 129 real_path, fake_path = self._Paths(info[1]) 132 os.rmdir(real_path) 136 real_path, e, os.listdir(real_path))) [all...] |
fake_filesystem.py | [all...] |
/external/curl/lib/ |
file.c | 190 char *real_path; local 199 real_path = curl_easy_unescape(data, data->state.path, 0, &real_path_len); 200 if(!real_path) 218 actual_path = real_path; 237 if(memchr(real_path, 0, real_path_len)) 241 fd = open_readonly(real_path, O_RDONLY); 242 file->path = real_path; 244 file->freepath = real_path; /* free this when done */
|
ssh.c | 408 char *real_path = NULL; local 419 real_path = malloc(working_path_len+1); 420 if(real_path == NULL) { 426 memcpy(real_path, working_path+3, 4 + working_path_len-3); 428 memcpy(real_path, working_path, 1 + working_path_len); 433 real_path = malloc(homelen + working_path_len + 1); 434 if(real_path == NULL) { 440 memcpy(real_path, homedir, homelen); 441 real_path[homelen] = '/'; 442 real_path[homelen+1] = '\0' [all...] |
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
status.py | 284 real_path, content_type = self._RESOURCE_MAP[relative] 285 path = os.path.join(os.path.dirname(__file__), "static", real_path) 294 data = pkgutil.get_data(__name__, "static/" + real_path)
|
/art/runtime/jit/ |
profile_saver.cc | 540 UniqueCPtr<const char[]> real_path(realpath(path.c_str(), nullptr)); 541 if (real_path == nullptr) { 545 std::string real_path_str(real_path.get());
|
/external/libchrome/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_posix.cc | 84 bool RealPath(const FilePath& path, FilePath* real_path) { 90 *real_path = FilePath(buf);
|
/external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/ |
fake_filesystem.py | [all...] |
/libcore/luni/src/main/native/ |
libcore_io_Posix.cpp | [all...] |