HomeSort by relevance Sort by last modified time
    Searched defs:FileExists (Results 1 - 25 of 38) sorted by null

1 2

  /external/perf_data_converter/src/quipper/
file_utils.cc 28 bool FileExists(const string& filename) {
  /external/tensorflow/tensorflow/stream_executor/lib/
env.h 31 inline Status FileExists(const string& filename) {
32 return Env::Default()->FileExists(filename);
35 inline Status FileExists(const port::StringPiece& filename) {
36 return Env::Default()->FileExists(filename.ToString());
  /external/tensorflow/tensorflow/core/grappler/inputs/
utils.cc 32 bool FileExists(const std::string& file, Status* status) {
33 *status = Env::Default()->FileExists(file);
40 if (FileExists(graph_def_pbtxt_path, &status)) {
  /external/googletest/googletest/test/
gtest_premature_exit_test.cc 50 static bool FileExists(const char* filepath) {
67 return FileExists(premature_exit_file_path_);
118 if (PrematureExitTest::FileExists(filepath)) {
  /external/perf_data_converter/src/
perf_to_profile_lib.cc 13 bool FileExists(const string& path) {
29 if (!overwriteOutput && FileExists(path)) {
  /external/v8/testing/gtest/test/
gtest_premature_exit_test.cc 50 static bool FileExists(const char* filepath) {
67 return FileExists(premature_exit_file_path_);
118 if (PrematureExitTest::FileExists(filepath)) {
  /art/libartbase/base/
os_linux.cc 67 bool OS::FileExists(const char* name, bool check_file_type) {
  /external/flatbuffers/src/
util.cpp 54 bool FileExists(const char *name) {
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_premature_exit_test.cc 54 static bool FileExists(const char* filepath) {
71 return FileExists(premature_exit_file_path_);
132 if (PrematureExitTest::FileExists(filepath)) {
  /external/webrtc/webrtc/base/
diskcache_win32.cc 78 bool DiskCacheWin32::FileExists(const std::string& filename) const {
  /device/linaro/bootloader/edk2/OvmfPkg/Library/NvVarsFileLib/
FsAccess.c 234 BOOLEAN FileExists;
244 NvVarsFileReadCheckup (File, &FileExists, &FileSize);
  /external/libyuv/files/unit_test/
cpu_test.cc 122 static int FileExists(const char* file_name) {
132 if (FileExists("../../unit_test/testdata/arm_v7.txt")) {
  /external/tensorflow/tensorflow/core/platform/cloud/
retrying_file_system.cc 132 Status RetryingFileSystem::FileExists(const string& fname) {
134 std::bind(&FileSystem::FileExists, base_file_system_.get(), fname),
  /external/tensorflow/tensorflow/core/util/
memmapped_file_system.cc 83 Status MemmappedFileSystem::FileExists(const string& fname) {
  /external/webrtc/webrtc/test/testsupport/
fileutils.cc 97 bool FileExists(std::string& file_name) {
130 if (FileExists(root_filename)) {
236 if (FileExists(resource_file)) {
241 if (FileExists(resource_file)) {
246 if (FileExists(resource_file)) {
  /external/webrtc/webrtc/tools/converter/
converter.cc 64 if (FileExists(input_file_name)) {
160 bool Converter:: FileExists(std::string file_name_to_check) {
  /system/core/storaged/
storaged_info.cpp 53 bool FileExists(const std::string& filename)
65 if (FileExists(emmc_info_t::emmc_sysfs) ||
66 FileExists(emmc_info_t::emmc_debugfs)) {
69 if (FileExists(ufs_info_t::health_file)) {
  /bionic/benchmarks/
bionic_benchmarks.cpp 510 static bool FileExists(const std::string& file) {
537 } else if (!FileExists(opts.xmlpath)) {
540 if (opts.xmlpath[0] == '/' || !FileExists(file)) {
  /external/capstone/bindings/vb6/
mMisc.bas 355 Function FileExists(path As String) As Boolean
360 If Dir(path, vbHidden Or vbNormal Or vbReadOnly Or vbSystem) <> "" Then FileExists = True
363 hell: FileExists = False
  /external/protobuf/src/google/protobuf/compiler/
importer_unittest.cc 62 bool FileExists(const string& path) {
246 if (FileExists(dirnames_[i])) {
255 if (FileExists(dirnames_[i])) {
  /external/tensorflow/tensorflow/contrib/android/
asset_manager_filesystem.cc 126 Status AssetManagerFileSystem::FileExists(const string& fname) {
  /external/tensorflow/tensorflow/core/platform/posix/
posix_file_system.cc 202 Status PosixFileSystem::FileExists(const string& fname) {
  /frameworks/native/cmds/dumpstate/tests/
dumpstate_smoke_test.cpp 145 void FileExists(const char* filename, uint32_t minsize, uint32_t maxsize) {
163 FileExists(buf, 1000000U, 50000000U);
179 FileExists("dumpstate_board.bin", 1000000U, 80000000U);
180 FileExists("dumpstate_board.txt", 100000U, 1000000U);
186 FileExists("FS/proc/1/mountinfo", 0U, 100000U);
189 FileExists("FS/data/misc/profiles/cur/0/com.android.phone/primary.prof", 0U, 100000U);
  /art/compiler/utils/
assembler_test_base.h 74 if (!FileExists(asm_tool)) {
83 if (!FileExists(objdump_tool)) {
95 if (!FileExists(disassembler_tool)) {
212 bool have_assembler = FileExists(FindTool(assembler_cmd_name_));
247 bool have_objdump = FileExists(FindTool(objdump_cmd_name_));
449 static bool FileExists(const std::string& file) {
  /device/google/cuttlefish_common/host/commands/launch/
main.cc 297 bool FileExists(const char* path) {
326 bool data_exists = FileExists(data_image);
370 if (!FileExists(dir)) {
513 if (!FileExists(file.c_str())) {

Completed in 466 milliseconds

1 2