/external/pigweed/pw_status/ |
D | status_with_size_test.cc | 55 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()
|
D | status_test.cc | 61 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()
|
D | docs.rst | 73 // AlreadyExists (gRPC code "ALREADY_EXISTS") indicates the entity that a 75 pw::Status::AlreadyExists()
|
/external/tensorflow/tensorflow/core/data/service/ |
D | dataset_store.cc | 41 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/ |
D | errors.rb | 62 codes[ALREADY_EXISTS] = AlreadyExists 126 class AlreadyExists < BadStatus class
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | StatusCode.cs | 63 AlreadyExists = 6, enumerator
|
/external/pigweed/pw_status/public/pw_status/ |
D | status_with_size.h | 65 static constexpr StatusWithSize AlreadyExists(size_t size = 0) { 66 return StatusWithSize(Status::AlreadyExists(), size);
|
D | status.h | 209 [[nodiscard]] static constexpr Status AlreadyExists() { in AlreadyExists() function
|
/external/tensorflow/tensorflow/core/common_runtime/eager/ |
D | eager_op_rewrite_registry.cc | 30 TF_CHECK_OK(errors::AlreadyExists(pass->GetDebugInfo().name, in Register()
|
D | custom_device_op_handler.cc | 38 return errors::AlreadyExists(device_name, in RegisterCustomDevice()
|
/external/rust/crates/mio/src/ |
D | io_source.rs | 240 io::ErrorKind::AlreadyExists, in associate() 262 io::ErrorKind::AlreadyExists, in check_association()
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/ |
D | logger_registry.cc | 32 return errors::AlreadyExists("Logger ", name, " already registered"); in Register()
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | ImmutableGraph.h | 120 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/ |
D | op.cc | 159 return errors::AlreadyExists( in SetWatcher() 242 s = errors::AlreadyExists("Op with name ", op_reg_data->op_def.name()); in RegisterAlreadyLocked()
|
D | resource_mgr.cc | 84 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/ |
D | device_id_manager.cc | 48 return errors::AlreadyExists( in Insert()
|
/external/tensorflow/tensorflow/core/graph/ |
D | validate.cc | 122 return errors::AlreadyExists("Node already exists: ", node.name()); in VerifyNoDuplicateNodeNames()
|
/external/rust/crates/mio/src/sys/windows/ |
D | mod.rs | 102 Err(io::ErrorKind::AlreadyExists.into())
|
D | named_pipe.rs | 371 io::ErrorKind::AlreadyExists, in register() 707 io::ErrorKind::AlreadyExists, in check_association()
|
/external/tensorflow/tensorflow/core/platform/ |
D | errors.h | 109 DECLARE_ERROR(AlreadyExists, ALREADY_EXISTS) in DECLARE_ERROR()
|
D | env.cc | 76 return errors::AlreadyExists("File factory for ", scheme, in Register() 86 return errors::AlreadyExists("File system for ", scheme, in Register()
|
/external/tensorflow/tensorflow/python/lib/io/ |
D | file_io_wrapper.cc | 154 status = tensorflow::errors::AlreadyExists("file already exists"); in PYBIND11_MODULE() 170 status = tensorflow::errors::AlreadyExists("file already exists"); in PYBIND11_MODULE()
|
/external/pigweed/pw_kvs/ |
D | entry_cache.cc | 113 return StatusWithSize::AlreadyExists(error_val); in Find()
|
D | key_value_store_initialized_test.cc | 303 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/ |
D | tests.rs | 1080 io::ErrorKind::AlreadyExists 1085 io::ErrorKind::AlreadyExists 1090 io::ErrorKind::AlreadyExists
|