| /external/cronet/base/win/ |
| D | event_trace_controller.cc | 54 HRESULT EtwTraceController::Start(const wchar_t* session_name, in Start() argument 61 HRESULT hr = Start(session_name, prop, &session_); in Start() 63 session_name_ = session_name; in Start() 68 HRESULT EtwTraceController::StartFileSession(const wchar_t* session_name, in StartFileSession() argument 83 return Start(session_name, &prop); in StartFileSession() 86 HRESULT EtwTraceController::StartRealtimeSession(const wchar_t* session_name, in StartRealtimeSession() argument 97 return Start(session_name, &prop); in StartRealtimeSession() 140 HRESULT EtwTraceController::Start(const wchar_t* session_name, in Start() argument 144 ULONG err = ::StartTrace(session_handle, session_name, properties->get()); in Start() 148 HRESULT EtwTraceController::Query(const wchar_t* session_name, in Query() argument [all …]
|
| D | event_trace_controller.h | 97 HRESULT Start(const wchar_t* session_name, EtwTraceProperties* prop); 100 HRESULT StartFileSession(const wchar_t* session_name, 106 HRESULT StartRealtimeSession(const wchar_t* session_name, size_t buffer_size); 127 static HRESULT Start(const wchar_t* session_name, 131 static HRESULT Query(const wchar_t* session_name, 134 static HRESULT Update(const wchar_t* session_name, 137 static HRESULT Stop(const wchar_t* session_name, 139 static HRESULT Flush(const wchar_t* session_name, 144 const wchar_t* session_name() const { return session_name_.c_str(); } in session_name() function
|
| D | event_trace_controller_unittest.cc | 134 EXPECT_STREQ(L"", controller.session_name()); in TEST_F() 147 EXPECT_STREQ(session_name_.c_str(), controller.session_name()); in TEST_F() 151 EXPECT_STREQ(L"", controller.session_name()); in TEST_F() 170 EXPECT_STREQ(session_name_.c_str(), controller.session_name()); in TEST_F() 174 EXPECT_STREQ(L"", controller.session_name()); in TEST_F()
|
| D | event_trace_consumer.h | 51 HRESULT OpenRealtimeSession(const wchar_t* session_name); 89 const wchar_t* session_name) { in OpenRealtimeSession() argument 91 logfile.LoggerName = const_cast<wchar_t*>(session_name); in OpenRealtimeSession()
|
| /external/tensorflow/tensorflow/core/tpu/kernels/ |
| D | tpu_compilation_cache_interface.cc | 426 const std::string session_name = in CompileIfKeyAbsentHelper() local 432 /*is_cache_hit=*/false, session_name); in CompileIfKeyAbsentHelper() 435 cache_key, "), session_name(", session_name, ")"); in CompileIfKeyAbsentHelper() 444 "disabled, session_name(", in CompileIfKeyAbsentHelper() 445 session_name, ") Debug String: ", subgraph_key.debug_string); in CompileIfKeyAbsentHelper() 460 << " with session_name( " << session_name << ");" in CompileIfKeyAbsentHelper() 473 cache_key, "), session_name(", session_name, "), subgraph_key(", in CompileIfKeyAbsentHelper() 475 // If session_name is present, log some additional stats related to HBM in CompileIfKeyAbsentHelper() 477 if (!session_name.empty()) { in CompileIfKeyAbsentHelper() 482 /*is_cache_hit=*/true, session_name); in CompileIfKeyAbsentHelper() [all …]
|
| D | tpu_compilation_metrics.cc | 25 bool is_cache_hit, absl::string_view session_name) { in IncrementCacheLookupCount() argument 36 absl::string_view session_name) { in IncrementCompilationCount() argument
|
| D | tpu_compilation_metrics.h | 29 absl::string_view session_name); 35 static void IncrementCompilationCount(absl::string_view session_name);
|
| D | tpu_util.h | 34 // Utility to get session_name from `SessionMetadata`. `SessionMetadata` may
|
| D | tpu_compile_op_common.cc | 209 const std::string session_name = SessionNameFromMetadata(session_metadata); in CompileLocallyAndFillHostCacheInternal() local 211 << session_name << " took " << duration << " and " in CompileLocallyAndFillHostCacheInternal() 217 TpuCompilationMetrics::IncrementCompilationCount(session_name); in CompileLocallyAndFillHostCacheInternal()
|
| /external/scapy/scapy/ |
| D | main.py | 290 def init_session(session_name, mydict=None): argument 300 if session_name: 302 os.stat(session_name) 304 log_loading.info("New session [%s]" % session_name) 308 SESSION = six.moves.cPickle.load(gzip.open(session_name,"rb")) 310 SESSION = six.moves.cPickle.load(open(session_name,"rb")) 311 log_loading.info("Using session [%s]" % session_name) 313 log_loading.error("Error opening session [%s]" % session_name) 315 log_loading.error("Error opening session [%s]. Attribute missing" % session_name) 322 conf.session = session_name [all …]
|
| /external/tensorflow/tensorflow/core/distributed_runtime/ |
| D | worker_session.cc | 124 const string& session_name, const string& worker_name, in WorkerSession() argument 128 : session_name_(session_name), in WorkerSession() 133 this, !session_name.empty(), in WorkerSession() 161 const string& session_name, const string& worker_name, in CreateWithBorrowedDeviceMgr() argument 166 session_name, worker_name, std::move(worker_cache), borrowed_device_mgr, in CreateWithBorrowedDeviceMgr() 171 const string& session_name, const string& worker_name, in WorkerSession() argument 175 : session_name_(session_name), in WorkerSession() 180 this, !session_name.empty(), remote_device_mgr.get())), in WorkerSession()
|
| D | worker_session.h | 46 const string& session_name() const { return session_name_; } in session_name() function 59 WorkerSession(const string& session_name, const string& worker_name, 66 const string& session_name, const string& worker_name, 91 WorkerSession(const string& session_name, const string& worker_name,
|
| D | cluster_function_library_runtime.cc | 224 req->set_session_handle(worker_session_->session_name()); in Instantiate() 275 req->set_session_handle(worker_session_->session_name()); in Run()
|
| /external/autotest/server/cros/multimedia/ |
| D | cfm_facade_adapter.py | 108 def start_new_hangout_session(self, session_name): argument 111 @param session_name: Name of the hangout session. 113 self._cfm_proxy.start_new_hangout_session(session_name) 169 def join_meeting_session(self, session_name): argument 172 @param session_name: Name of the meeting session. 174 self._cfm_proxy.join_meeting_session(session_name)
|
| /external/autotest/client/cros/multimedia/ |
| D | cfm_facade.py | 301 def start_new_hangout_session(self, session_name): argument 304 @param session_name: Name of the hangout session. 306 self._cfmApi.start_new_hangout_session(session_name) 330 def join_meeting_session(self, session_name): argument 333 @param session_name: Name of the meeting session. 335 self._cfmApi.join_meeting_session(session_name)
|
| /external/tensorflow/tensorflow/core/distributed_runtime/eager/ |
| D | eager_service_impl.cc | 237 auto session_name = in CreateContext() local 247 session_name, request->server_def(), request->cluster_device_attributes(), in CreateContext() 250 std::function<void()> session_destroyer = [this, context_id, session_name]() { in CreateContext() 252 auto s = env_->session_mgr->DeleteSession(session_name); in CreateContext() 254 LOG(WARNING) << "Failed to destroy worker session '" << session_name in CreateContext() 261 session_name, &worker_session)); in CreateContext() 396 auto session_name = in UpdateContext() local 400 env_->session_mgr->UpdateSession(session_name, request->server_def(), in UpdateContext() 405 session_name, &worker_session)); in UpdateContext()
|
| /external/tensorflow/tensorflow/compiler/mlir/tfrt/jit/ |
| D | tf_jitrt_kernels.cc | 375 session_name = GetSessionName(req_ctx), compile = std::move(compile), in CompileImpl() 397 << kernel_info.name << " (" << session_name << ")"; in CompileImpl() 404 << session_name << ")"; in CompileImpl() 412 RecordCompileTime(session_name, kernel_info.name, specialization, in CompileImpl() 425 session_name = GetSessionName(req_ctx), in CompileImpl() 489 << kernel_info.name << " (" << session_name << ")"; in CompileImpl() 492 std::move(opts), session_name, runner); in CompileImpl() 497 << " ms (" << session_name << ")"; in CompileImpl() 504 RecordCompileTime(session_name, kernel_info.name, std::nullopt, in CompileImpl()
|
| /external/tensorflow/tensorflow/core/common_runtime/eager/ |
| D | context_distributed_manager.cc | 599 auto session_name = strings::StrCat("eager_", context_id); in UpdateContextWithServerDef() local 607 session_name, server_def, base_request.cluster_device_attributes(), in UpdateContextWithServerDef() 612 session_mgr->WorkerSessionForSession(session_name, &worker_session)); in UpdateContextWithServerDef() 633 session_name, server_def, base_request.cluster_device_attributes())); in UpdateContextWithServerDef() 708 auto session_name = strings::StrCat("eager_", context_->GetContextId()); in EnableCollectiveOps() local 714 session_name, server_def, in EnableCollectiveOps() 720 session_mgr->WorkerSessionForSession(session_name, &worker_session)); in EnableCollectiveOps()
|
| /external/perfetto/src/perfetto_cmd/ |
| D | perfetto_cmd_state.proto | 28 optional string session_name = 1; field
|
| D | rate_limiter.cc | 120 if (session_state.session_name() == args.unique_session_name) { in ShouldTrace() 162 if (session.session_name() == args.unique_session_name) { in OnTraceDone()
|
| /external/bc/tests/fuzzing/ |
| D | bc_afl_continue.yaml | 1 session_name: bc_afl_continue
|
| D | bc_afl.yaml | 1 session_name: bc_afl
|