/external/crosvm/third_party/vmm_vhost/src/connection/ |
D | unix.rs | 14 use crate::master::Master; 20 pub(crate) type TestMaster = Master<SocketEndpoint<MasterReq>>; 26 pub(crate) fn create_pair() -> (Master<SocketEndpoint<MasterReq>>, SocketEndpoint<MasterReq>) { in create_pair() 32 let master = Master::connect(path, 2).unwrap(); in create_pair() 49 let master = Master::connect(&path, 1).unwrap(); in create_master_slave_pair() 62 assert!(Master::<SocketEndpoint<_>>::connect(&path, 1).is_err()); in test_create_failure() 68 let _master = Master::<SocketEndpoint<_>>::connect(&path, 1).unwrap(); in test_create_failure()
|
D | windows.rs | 9 use crate::master::Master; 15 pub(crate) type TestMaster = Master<TestEndpoint>; 19 let master = Master::from_stream(master_tube, 2); in create_pair() 31 let master = Master::from_stream(master_tube, 2); in create_master_slave_pair()
|
/external/tensorflow/tensorflow/core/distributed_runtime/ |
D | master.h | 36 class Master { 38 explicit Master(MasterEnv* env, double session_gc_seconds); 39 virtual ~Master(); 73 typedef Master ME; 112 TF_DISALLOW_COPY_AND_ASSIGN(Master);
|
D | master.cc | 65 Master::Master(MasterEnv* env, double session_gc_seconds) in Master() function in tensorflow::Master 83 Master::~Master() { in ~Master() 92 void Master::GC() { in GC() 123 MasterSession* Master::FindMasterSession(const string& handle) { in FindMasterSession() 357 void Master::CreateSession(const CreateSessionRequest* req, in CreateSession() 492 void Master::ExtendSession(const ExtendSessionRequest* req, in ExtendSession() 510 void Master::PartialRunSetup(const PartialRunSetupRequest* req, in PartialRunSetup() 531 void Master::RunStep(CallOptions* opts, const RunStepRequestWrapper* req, in RunStep() 557 void Master::CloseSession(const CloseSessionRequest* req, in CloseSession() 586 void Master::ListDevices(const ListDevicesRequest* req, in ListDevices() [all …]
|
D | local_master.h | 25 class Master; variable 91 static void Register(const string& target, Master* master, 99 Master* master_impl_; // Not owned. 104 LocalMaster(Master* master_impl, const int64_t default_timeout_in_ms);
|
D | local_master.cc | 50 LocalMaster::LocalMaster(Master* master_impl, in LocalMaster() 210 Master* master; 213 MasterInfo(Master* master, const int64_t default_timeout_in_ms) in MasterInfo() 225 void LocalMaster::Register(const string& target, Master* master, in Register()
|
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
D | grpc_master_service.h | 27 class Master; variable 30 Master* master, const ConfigProto& default_session_config,
|
D | grpc_server_lib.h | 44 class Master; variable 135 virtual std::unique_ptr<Master> CreateMaster(MasterEnv* master_env); 199 std::unique_ptr<Master> master_impl_;
|
D | grpc_master_service.cc | 50 GrpcMasterService(Master* master, const ConfigProto& default_session_config, in GrpcMasterService() 136 Master* master_impl_ = nullptr; // Not owned. 305 Master* master, const ConfigProto& default_session_config, in NewGrpcMasterService()
|
D | grpc_server_lib.cc | 565 std::unique_ptr<Master> GrpcServer::CreateMaster(MasterEnv* master_env) { in CreateMaster() 566 return std::unique_ptr<Master>(new Master(master_env, 0.0)); in CreateMaster()
|
/external/tcpdump/tests/ |
D | ospf6_print_lshdr-oobr.out | 34 Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x00001d46 37 Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x0000242c 43 Options [V6, External, Router], DD Flags [More, Master], MTU 1500, DD-Sequence 0x00001d47 [|ospf3] 57 Options [V6, External, Router], DD Flags [Master], MTU 1500, DD-Sequence 0x00001d48
|
D | ospf3_bc-vv.out | 35 Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x00001d46 38 Options [V6, External, Router], DD Flags [Init, More, Master], MTU 1500, DD-Sequence 0x0000242c 58 Options [V6, External, Router], DD Flags [More, Master], MTU 1500, DD-Sequence 0x00001d47 106 Options [V6, External, Router], DD Flags [Master], MTU 1500, DD-Sequence 0x00001d48
|
/external/crosvm/third_party/vmm_vhost/ |
D | README.md | 15 The protocol defines two sides of the communication, master and slave. Master is the application 16 that shares its virtqueues, slave is the consumer of the virtqueues. Master and slave can be either
|
/external/icu/icu4j/perf-tests/data/collation/ |
D | TestNames_Latin.txt | 2400 Foliage Master 4403 Maddelena Master 4573 Master A.C. 4574 Master A.G. 4575 Master B. of the Die 4576 Master Bertram 4577 Master E.S. 4578 Master F.V.B. 4579 Master I.K. 4580 Master Jacomo [all …]
|
/external/crosvm/third_party/vmm_vhost/src/ |
D | slave.rs | 89 use crate::Master; in test_slave_listener_accept() 100 let _master = Master::<SocketEndpoint<_>>::connect(path, 1).unwrap(); in test_slave_listener_accept()
|
D | master.rs | 90 pub struct Master<E: Endpoint<MasterReq>> { struct 94 impl<E: Endpoint<MasterReq> + From<SystemStream>> Master<E> { implementation 101 impl<E: Endpoint<MasterReq>> Master<E> { implementation 104 Master { in new() 158 impl<E: Endpoint<MasterReq>> VhostBackend for Master<E> { implementation 352 impl<E: Endpoint<MasterReq>> VhostUserMaster for Master<E> { implementation 598 impl<E: Endpoint<MasterReq> + AsRawDescriptor> AsRawDescriptor for Master<E> { implementation
|
/external/crosvm/devices/src/virtio/vhost/user/vmm/handler/sys/ |
D | unix.rs | 20 use vmm_vhost::Master; 31 Master<SocketEndpoint<MasterReq>>;
|
D | windows.rs | 22 use vmm_vhost::Master; 36 Master<TubeEndpoint<MasterReq>>;
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/msm_bus/bus_bimc_config_limiter/ |
D | format | 12 print fmt: "Master:%d cur_lim_bw:%llu", REC->mas_id, (unsigned long long)REC->cur_lim_bw
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/msm_bus/bus_bimc_config_limiter/ |
D | format | 12 print fmt: "Master=%d cur_lim_bw=%llu", REC->mas_id, (unsigned long long)REC->cur_lim_bw
|
/external/webrtc/ |
D | README.md | 23 * Master source code repo: https://webrtc.googlesource.com/src
|
/external/ltp/testcases/network/nfsv4/locks/ |
D | README | 141 - Master Operation (SET A READ/A WRITE LOCK ) 147 | Master process/thread |
|
/external/rust/crates/atty/ |
D | README.md | 3 …eased API docs](https://docs.rs/atty/badge.svg)](http://docs.rs/atty) [![Master API docs](https://…
|
/external/rust/crates/libz-sys/src/zlib-ng/ |
D | README.md | 9 …Master Branch Status](https://github.com/zlib-ng/zlib-ng/workflows/CI%20CMake/badge.svg)](https://…
|
/external/libwebsockets/READMEs/ |
D | README.release-policy.md | 26 Master branch is the default and all new work happens there. It's unstable and 52 Master is very useful for coordinating development, and integrating WIP,
|