| /external/lldb/source/API/ |
| SBDeclaration.cpp | 190 char file_path[PATH_MAX*2]; local 191 m_opaque_ap->GetFile().GetPath (file_path, sizeof (file_path)); 192 strm.Printf ("%s:%u", file_path, GetLine());
|
| SBLineEntry.cpp | 234 char file_path[PATH_MAX*2]; local 235 m_opaque_ap->file.GetPath (file_path, sizeof (file_path)); 236 strm.Printf ("%s:%u", file_path, GetLine());
|
| /external/sfntly/cpp/src/sfntly/port/ |
| file_input_stream.cc | 149 bool FileInputStream::Open(const char* file_path) { 150 assert(file_path); 155 fopen_s(&file_, file_path, "rb"); 157 file_ = fopen(file_path, "rb");
|
| /hardware/qcom/gps/msm8084/utils/ |
| loc_target.cpp | 69 static int read_a_line(const char * file_path, char * line, int line_size) 75 fp = fopen(file_path, "r" ); 77 LOC_LOGE("open failed: %s: %s\n", file_path, strerror(errno)); 85 LOC_LOGD("cat %s: %s", file_path, line);
|
| /hardware/qcom/gps/msm8974/utils/ |
| loc_target.cpp | 69 static int read_a_line(const char * file_path, char * line, int line_size) 75 fp = fopen(file_path, "r" ); 77 LOC_LOGE("open failed: %s: %s\n", file_path, strerror(errno)); 85 LOC_LOGD("cat %s: %s", file_path, line);
|
| /hardware/qcom/gps/utils/ |
| loc_target.cpp | 70 static int read_a_line(const char * file_path, char * line, int line_size) 76 fp = fopen(file_path, "r" ); 78 LOC_LOGE("open failed: %s: %s\n", file_path, strerror(errno)); 86 LOC_LOGD("cat %s: %s", file_path, line);
|
| /art/runtime/base/unix_file/ |
| fd_file.h | 48 // Opens file 'file_path' using 'flags' and 'mode'. 49 bool Open(const std::string& file_path, int flags); 50 bool Open(const std::string& file_path, int flags, mode_t mode);
|
| /external/skia/tools/skpdiff/ |
| skpdiff_server.py | 421 def send_file(self, file_path): 423 extension = os.path.splitext(file_path)[1] 431 if os.path.isfile(file_path): 432 with open(file_path, 'rb') as sending_file: 440 def serve_if_in_dir(self, dir_path, file_path): 444 real_path = os.path.normpath(os.path.join(dir_path, file_path)) 457 file_path = self.path[1:] 461 if file_path == 'skpdiff_output.json': 477 if self.serve_if_in_dir(SCRIPT_DIR, file_path):
|
| /external/llvm/utils/lit/lit/ |
| Test.py | 169 def __init__(self, suite, path_in_suite, config, file_path = None): 173 self.file_path = file_path 200 if self.file_path: 201 return self.file_path
|
| /external/google-breakpad/src/client/linux/minidump_writer/ |
| linux_dumper.cc | 224 char* file_path, 228 my_strlcpy(file_path, mapping.name, file_path_size); 242 // file_path := /path/to/ARCHIVE.APK/libname.so 243 if (my_strlen(file_path) + 1 + my_strlen(file_name) < file_path_size) { 244 my_strlcat(file_path, "/", file_path_size); 245 my_strlcat(file_path, file_name, file_path_size); 249 // file_path := /path/to/libname.so 251 const char* basename = my_strrchr(file_path, '/'); 252 basename = basename == NULL ? file_path : (basename + 1);
|
| linux_dumper.h | 138 char* file_path,
|
| /system/core/logwrapper/ |
| logwrap.c | 294 int *chld_sts, int log_target, bool abbreviated, char *file_path) { 331 if ((log_target & LOG_FILE) && !file_path) { 332 /* No file_path specified, clear the LOG_FILE bit */ 337 fd = open(file_path, O_WRONLY | O_CREAT, 0664); 339 ERROR("Cannot log to file %s\n", file_path); 476 int log_target, bool abbreviated, char *file_path) { 549 abbreviated, file_path);
|
| /external/compiler-rt/lib/sanitizer_common/ |
| sanitizer_suppressions.cc | 33 static bool GetPathAssumingFileIsRelativeToExec(const char *file_path, 42 internal_strncat(new_file_path, file_path,
|
| /external/google-breakpad/src/client/windows/crash_generation/ |
| minidump_generator.h | 128 bool GenerateDumpFilePath(std::wstring* file_path);
|
| crash_generation_server.h | 57 const std::wstring* file_path);
|
| /external/google-breakpad/src/client/windows/unittests/ |
| crash_generation_server_test.cc | 83 const std::wstring* file_path)); 243 const std::wstring* file_path) { 245 OnClientDumpRequested(client_info, file_path);
|
| /external/skia/tools/ |
| skdiff_utils.cpp | 27 SkData* read_file(const char* file_path) { 28 SkData* data = SkData::NewFromFileName(file_path); 30 SkDebugf("WARNING: could not open file <%s> for reading\n", file_path);
|
| /external/lldb/source/Host/macosx/ |
| Symbols.cpp | 721 char file_path[PATH_MAX]; local 722 file_path[0] = '\0'; 728 file_spec_ptr->GetPath(file_path, sizeof(file_path)); 733 else if (file_path && file_path[0]) 734 command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, file_path); [all...] |
| /external/google-breakpad/src/testing/gtest/test/ |
| gtest-filepath_test.cc | 580 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, 582 EXPECT_STREQ(unique_file0_.c_str(), file_path.c_str()); 583 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there 586 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there 587 CreateTextFile(file_path.c_str()); 588 EXPECT_TRUE(file_path.FileOrDirectoryExists());
|
| /external/gtest/test/ |
| gtest-filepath_test.cc | 564 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, 566 EXPECT_EQ(unique_file0_.string(), file_path.string()); 567 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there 570 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there 571 CreateTextFile(file_path.c_str()); 572 EXPECT_TRUE(file_path.FileOrDirectoryExists());
|
| /external/protobuf/gtest/test/ |
| gtest-filepath_test.cc | 574 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, 576 EXPECT_STREQ(unique_file0_.c_str(), file_path.c_str()); 577 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there 580 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there 581 CreateTextFile(file_path.c_str()); 582 EXPECT_TRUE(file_path.FileOrDirectoryExists());
|
| /ndk/sources/third_party/googletest/googletest/test/ |
| gtest-filepath_test.cc | 564 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_, 566 EXPECT_EQ(unique_file0_.string(), file_path.string()); 567 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there 570 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there 571 CreateTextFile(file_path.c_str()); 572 EXPECT_TRUE(file_path.FileOrDirectoryExists());
|
| /external/google-breakpad/src/client/linux/microdump_writer/ |
| microdump_writer.cc | 312 char file_path[NAME_MAX]; local 314 mapping, file_path, sizeof(file_path), file_name, sizeof(file_name));
|
| /external/google-breakpad/src/client/mac/tests/ |
| crash_generation_server_test.cc | 151 const std::string &file_path) { 155 if (!file_path.empty()) 156 self->last_dump_name = file_path;
|
| /ndk/sources/android/crazy_linker/include/ |
| crazy_linker.h | 99 const char* file_path) _CRAZY_PUBLIC;
|