Home
last modified time | relevance | path

Searched refs:AlreadyExists (Results 1 – 25 of 43) sorted by relevance

12

/external/pigweed/pw_status/
Dstatus_with_size_test.cc55 StatusWithSize result(StatusWithSize::AlreadyExists()); in TEST()
57 EXPECT_EQ(Status::AlreadyExists(), result.status()); in TEST()
121 static_assert(StatusWithSize::AlreadyExists().status() == Status::AlreadyExists()); in TEST()
139 static_assert(StatusWithSize::AlreadyExists(123).status() == Status::AlreadyExists()); in TEST()
159 static_assert(StatusWithSize::AlreadyExists().size() == 0u); in TEST()
179 static_assert(StatusWithSize::AlreadyExists(123).size() == 123u); in TEST()
198 static_assert(StatusWithSize::AlreadyExists().IsAlreadyExists()); in TEST()
Dstatus_test.cc61 static_assert(PW_STATUS_ALREADY_EXISTS == Status::AlreadyExists().code()); in TEST()
83 static_assert(PW_STATUS_ALREADY_EXISTS == Status::AlreadyExists()); in TEST()
102 static_assert(Status::AlreadyExists().IsAlreadyExists()); in TEST()
142 EXPECT_STREQ("ALREADY_EXISTS", Status::AlreadyExists().str()); in TEST()
Ddocs.rst73 // AlreadyExists (gRPC code "ALREADY_EXISTS") indicates the entity that a
75 pw::Status::AlreadyExists()
/external/tensorflow/tensorflow/core/data/service/
Ddataset_store.cc41 return errors::AlreadyExists("File ", path_to_write, " already exists"); in Put()
63 return errors::AlreadyExists("Dataset with key ", key, in Put()
/external/grpc-grpc/src/ruby/lib/grpc/
Derrors.rb62 codes[ALREADY_EXISTS] = AlreadyExists
126 class AlreadyExists < BadStatus class
/external/grpc-grpc/src/csharp/Grpc.Core/
DStatusCode.cs63 AlreadyExists = 6, enumerator
/external/pigweed/pw_status/public/pw_status/
Dstatus_with_size.h65 static constexpr StatusWithSize AlreadyExists(size_t size = 0) {
66 return StatusWithSize(Status::AlreadyExists(), size);
Dstatus.h209 [[nodiscard]] static constexpr Status AlreadyExists() { in AlreadyExists() function
/external/rust/crates/mio/src/
Dio_source.rs240 io::ErrorKind::AlreadyExists, in associate()
262 io::ErrorKind::AlreadyExists, in check_association()
/external/tensorflow/tensorflow/core/common_runtime/eager/
Deager_op_rewrite_registry.cc30 TF_CHECK_OK(errors::AlreadyExists(pass->GetDebugInfo().name, in Register()
Dcustom_device_op_handler.cc38 return errors::AlreadyExists(device_name, in RegisterCustomDevice()
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dlogger_registry.cc32 return errors::AlreadyExists("Logger ", name, " already registered"); in Register()
/external/llvm-project/llvm/lib/Target/X86/
DImmutableGraph.h120 bool AlreadyExists = V.test(Idx); in insert() local
122 return !AlreadyExists; in insert()
208 bool AlreadyExists = V.test(Idx); in insert() local
210 return !AlreadyExists; in insert()
/external/tensorflow/tensorflow/core/framework/
Dop.cc159 return errors::AlreadyExists( in SetWatcher()
242 s = errors::AlreadyExists("Op with name ", op_reg_data->op_def.name()); in RegisterAlreadyLocked()
Dresource_mgr.cc84 return errors::AlreadyExists("Duplicate hash code found for type ", in InsertDebugTypeName()
190 return errors::AlreadyExists("Resource ", container, "/", name, "/", in DoCreate()
/external/tensorflow/tensorflow/core/common_runtime/device/
Ddevice_id_manager.cc48 return errors::AlreadyExists( in Insert()
/external/tensorflow/tensorflow/core/graph/
Dvalidate.cc122 return errors::AlreadyExists("Node already exists: ", node.name()); in VerifyNoDuplicateNodeNames()
/external/rust/crates/mio/src/sys/windows/
Dmod.rs102 Err(io::ErrorKind::AlreadyExists.into())
Dnamed_pipe.rs371 io::ErrorKind::AlreadyExists, in register()
707 io::ErrorKind::AlreadyExists, in check_association()
/external/tensorflow/tensorflow/python/lib/io/
Dfile_io_wrapper.cc154 status = tensorflow::errors::AlreadyExists("file already exists"); in PYBIND11_MODULE()
170 status = tensorflow::errors::AlreadyExists("file already exists"); in PYBIND11_MODULE()
/external/tensorflow/tensorflow/core/platform/
Derrors.h109 DECLARE_ERROR(AlreadyExists, ALREADY_EXISTS) in DECLARE_ERROR()
Denv.cc76 return errors::AlreadyExists("File factory for ", scheme, in Register()
86 return errors::AlreadyExists("File system for ", scheme, in Register()
/external/pigweed/pw_kvs/
Dentry_cache.cc113 return StatusWithSize::AlreadyExists(error_val); in Find()
Dkey_value_store_initialized_test.cc303 EXPECT_EQ(Status::AlreadyExists(), kvs_.Put(key2, 999)); in TEST_F()
323 EXPECT_EQ(Status::AlreadyExists(), kvs_.Put(key2, 999)); in TEST_F()
/external/vm_tools/p9/src/server/
Dtests.rs1080 io::ErrorKind::AlreadyExists
1085 io::ErrorKind::AlreadyExists
1090 io::ErrorKind::AlreadyExists

12