| /arkcompiler/toolchain/tooling/agent/ |
| D | profiler_impl.cpp | 129 DispatchResponse response = profiler_->Disable(); in Disable() local 135 DispatchResponse response = profiler_->Enable(); in Enable() local 143 DispatchResponse response = profiler_->Start(); in Start() local 150 DispatchResponse response = profiler_->Stop(&profile); in Stop() local 168 DispatchResponse response = profiler_->EnableSerializationTimeoutCheck(*params); in EnableSerializationTimeoutCheck() local 174 DispatchResponse response = profiler_->DisableSerializationTimeoutCheck(); in DisableSerializationTimeoutCheck() local 185 DispatchResponse response = profiler_->SetSamplingInterval(*params); in SetSamplingInterval() local 191 DispatchResponse response = profiler_->GetBestEffortCoverage(); in GetBestEffortCoverage() local 197 DispatchResponse response = profiler_->StopPreciseCoverage(); in StopPreciseCoverage() local 203 DispatchResponse response = profiler_->TakePreciseCoverage(); in TakePreciseCoverage() local [all …]
|
| D | heapprofiler_impl.cpp | 114 DispatchResponse response = heapprofiler_->AddInspectedHeapObject(*params); in AddInspectedHeapObject() local 120 DispatchResponse response = heapprofiler_->CollectGarbage(); in CollectGarbage() local 126 DispatchResponse response = heapprofiler_->Enable(); in Enable() local 134 DispatchResponse response = heapprofiler_->Disable(); in Disable() local 147 DispatchResponse response = heapprofiler_->GetHeapObjectId(*params, &objectId); in GetHeapObjectId() local 161 … DispatchResponse response = heapprofiler_->GetObjectByHeapObjectId(*params, &remoteObjectResult); in GetObjectByHeapObjectId() local 174 DispatchResponse response = heapprofiler_->GetSamplingProfile(&profile); in GetSamplingProfile() local 192 DispatchResponse response = heapprofiler_->StartSampling(*params); in StartSampling() local 199 DispatchResponse response = heapprofiler_->StopSampling(&profile); in StopSampling() local 217 DispatchResponse response = heapprofiler_->StartTrackingHeapObjects(*params); in StartTrackingHeapObjects() local [all …]
|
| D | tracing_impl.cpp | 84 DispatchResponse response = tracing_->GetCategories(categories); in GetCategories() local 91 DispatchResponse response = tracing_->RecordClockSyncMarker(syncId); in RecordClockSyncMarker() local 101 DispatchResponse response = tracing_->RequestMemoryDump(std::move(params), dumpGuid, success); in RequestMemoryDump() local 109 DispatchResponse response = tracing_->Start(std::move(params)); in Start() local
|
| D | debugger_impl.cpp | 628 DispatchResponse response = debugger_->ContinueToLocation(*params); in ContinueToLocation() local 641 DispatchResponse response = debugger_->Enable(*params, &id); in Enable() local 650 DispatchResponse response = debugger_->Disable(); in Disable() local 662 DispatchResponse response = debugger_->EvaluateOnCallFrame(*params, &result1); in EvaluateOnCallFrame() local 680 DispatchResponse response = debugger_->GetPossibleBreakpoints(*params, &locations); in GetPossibleBreakpoints() local 693 DispatchResponse response = debugger_->GetScriptSource(*params, &source); in GetScriptSource() local 700 DispatchResponse response = debugger_->Pause(); in Pause() local 711 DispatchResponse response = debugger_->RemoveBreakpoint(*params); in RemoveBreakpoint() local 722 DispatchResponse response = debugger_->RemoveBreakpointsByUrl(*params); in RemoveBreakpointsByUrl() local 733 DispatchResponse response = debugger_->Resume(*params); in Resume() local [all …]
|
| D | overlay_impl.cpp | 49 DispatchResponse response = DispatchResponse::Ok(); in Disable() local
|
| D | css_impl.cpp | 47 DispatchResponse response = DispatchResponse::Ok(); in Disable() local
|
| D | target_impl.cpp | 47 DispatchResponse response = DispatchResponse::Ok(); in SetAutoAttach() local
|
| D | dom_impl.cpp | 47 DispatchResponse response = DispatchResponse::Ok(); in Disable() local
|
| D | page_impl.cpp | 47 DispatchResponse response = DispatchResponse::Ok(); in GetNavigationHistory() local
|
| D | runtime_impl.cpp | 79 DispatchResponse response = runtime_->Enable(); in Enable() local 87 DispatchResponse response = runtime_->Disable(); in Disable() local 93 DispatchResponse response = runtime_->RunIfWaitingForDebugger(); in RunIfWaitingForDebugger() local 109 … DispatchResponse response = runtime_->GetProperties(*params, &outPropertyDesc, &outInternalDescs, in GetProperties() local 126 DispatchResponse response = runtime_->GetHeapUsage(&usedSize, &totalSize); in GetHeapUsage() local
|
| /arkcompiler/toolchain/websocket/ |
| D | http.cpp | 74 std::string HttpResponse::DecodeVersion(const std::string& response, std::string::size_type version… in DecodeVersion() 87 std::string HttpResponse::DecodeStatus(const std::string& response, std::string::size_type versionE… in DecodeStatus() 105 bool HttpResponse::Decode(const std::string& response, HttpResponse& parsed) in Decode()
|
| /arkcompiler/toolchain/tooling/ |
| D | dispatcher.cpp | 96 DispatchResponse response; in Create() local 104 DispatchResponse response; in Create() local 119 DispatchResponse response; in Fail() local 125 void DispatcherBase::SendResponse(const DispatchRequest &request, const DispatchResponse &response, in SendResponse()
|
| D | protocol_handler.cpp | 86 void ProtocolHandler::SendResponse(const DispatchRequest &request, const DispatchResponse &response, in SendResponse() 124 std::unique_ptr<PtJson> ProtocolHandler::CreateErrorReply(const DispatchResponse &response) in CreateErrorReply()
|
| /arkcompiler/toolchain/tooling/test/ |
| D | profiler_impl_test.cpp | 56 DispatchResponse response = profiler->Disable(); in HWTEST_F_L0() local 65 DispatchResponse response = profiler->Enable(); in HWTEST_F_L0() local 75 DispatchResponse response = profiler->Start(); in HWTEST_F_L0() local 88 DispatchResponse response = profiler->Stop(&profile); in HWTEST_F_L0() local 98 DispatchResponse response = profiler->SetSamplingInterval(params); in HWTEST_F_L0() local 108 DispatchResponse response = profiler->EnableSerializationTimeoutCheck(params); in HWTEST_F_L0() local 117 DispatchResponse response = profiler->DisableSerializationTimeoutCheck(); in HWTEST_F_L0() local 126 DispatchResponse response = profiler->GetBestEffortCoverage(); in HWTEST_F_L0() local 134 DispatchResponse response = profiler->StopPreciseCoverage(); in HWTEST_F_L0() local 142 DispatchResponse response = profiler->TakePreciseCoverage(); in HWTEST_F_L0() local [all …]
|
| D | heapprofiler_impl_test.cpp | 93 DispatchResponse response = heapProfiler->AddInspectedHeapObject(param); in HWTEST_F_L0() local 102 DispatchResponse response = heapProfiler->CollectGarbage(); in HWTEST_F_L0() local 111 DispatchResponse response = heapProfiler->Enable(); in HWTEST_F_L0() local 120 DispatchResponse response = heapProfiler->Disable(); in HWTEST_F_L0() local 131 DispatchResponse response = heapProfiler->GetHeapObjectId(params, &objectId); in HWTEST_F_L0() local 142 DispatchResponse response = heapProfiler->GetObjectByHeapObjectId(*params, &remoteObjectResult); in HWTEST_F_L0() local 152 DispatchResponse response = heapProfiler->GetSamplingProfile(&profile); in HWTEST_F_L0() local 162 DispatchResponse response = heapProfiler->StartSampling(params); in HWTEST_F_L0() local 171 DispatchResponse response = heapProfiler->StopSampling(&profile); in HWTEST_F_L0() local 181 DispatchResponse response = heapProfiler->TakeHeapSnapshot(params); in HWTEST_F_L0() local [all …]
|
| D | tracing_impl_test.cpp | 58 DispatchResponse response = tracing->Start(std::move(params)); in HWTEST_F_L0() local 70 DispatchResponse response = tracing->GetCategories(categories); in HWTEST_F_L0() local 79 DispatchResponse response = tracing->RecordClockSyncMarker(syncId); in HWTEST_F_L0() local 90 DispatchResponse response = tracing->RequestMemoryDump(std::move(params), dumpGuid, success); in HWTEST_F_L0() local
|
| D | dispatcher_test.cpp | 114 DispatchResponse response = DispatchResponse::Create(code, msg); in HWTEST_F_L0() local
|
| D | protocol_handler_test.cpp | 101 DispatchResponse response = DispatchResponse::Create(code, msg); in HWTEST_F_L0() local
|
| /arkcompiler/toolchain/test/fuzztest/dispatcher/dispatchresponsecreatecode_fuzzer/ |
| D | dispatchresponsecreatecode_fuzzer.cpp | 34 DispatchResponse response = DispatchResponse::Create(code, message); in DispatchResponseCreateCodeFuzzTest() local
|
| /arkcompiler/toolchain/tooling/test/utils/ |
| D | test_channel.h | 36 [[maybe_unused]] const DispatchResponse &response, in SendResponse()
|
| /arkcompiler/toolchain/websocket/client/ |
| D | websocket_client.cpp | 30 static bool ValidateServerHandShake(HttpResponse& response) in ValidateServerHandShake() 226 HttpResponse response; in ClientRecvWSUpgradeRsp() local
|
| /arkcompiler/ets_frontend/test/scripts/utils/download_sdk_and_image/ |
| D | download.py | 116 def download_progress_bar(response, temp, temp_file_name): argument
|
| /arkcompiler/toolchain/websocket/server/ |
| D | websocket_server.cpp | 100 const std::string response(BAD_REQUEST_RESPONSE); in ResponseInvalidHandShake() local
|