Home
last modified time | relevance | path

Searched defs:response (Results 1 – 25 of 32) sorted by relevance

12

/arkcompiler/toolchain/tooling/dynamic/agent/
Dprofiler_impl.cpp125 DispatchResponse response = profiler_->Disable(); in Disable() local
131 DispatchResponse response = profiler_->Enable(); in Enable() local
139 DispatchResponse response = profiler_->Start(); in Start() local
146 DispatchResponse response = profiler_->Stop(&profile); in Stop() local
164 DispatchResponse response = profiler_->EnableSerializationTimeoutCheck(*params); in EnableSerializationTimeoutCheck() local
170 DispatchResponse response = profiler_->DisableSerializationTimeoutCheck(); in DisableSerializationTimeoutCheck() local
181 DispatchResponse response = profiler_->SetSamplingInterval(*params); in SetSamplingInterval() local
187 DispatchResponse response = profiler_->GetBestEffortCoverage(); in GetBestEffortCoverage() local
193 DispatchResponse response = profiler_->StopPreciseCoverage(); in StopPreciseCoverage() local
199 DispatchResponse response = profiler_->TakePreciseCoverage(); in TakePreciseCoverage() local
[all …]
Dheapprofiler_impl.cpp114 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 …]
Ddebugger_impl.cpp685 DispatchResponse response = debugger_->ContinueToLocation(*params); in ContinueToLocation() local
698 DispatchResponse response = debugger_->Enable(*params, &id); in Enable() local
707 DispatchResponse response = debugger_->Disable(); in Disable() local
719 DispatchResponse response = debugger_->EvaluateOnCallFrame(*params, &result1); in EvaluateOnCallFrame() local
737 DispatchResponse response = debugger_->GetPossibleBreakpoints(*params, &locations); in GetPossibleBreakpoints() local
750 DispatchResponse response = debugger_->GetScriptSource(*params, &source); in GetScriptSource() local
757 DispatchResponse response = debugger_->Pause(); in Pause() local
768 DispatchResponse response = debugger_->RemoveBreakpoint(*params); in RemoveBreakpoint() local
779 DispatchResponse response = debugger_->RemoveBreakpointsByUrl(*params); in RemoveBreakpointsByUrl() local
791 DispatchResponse response = debugger_->RemoveBreakpointsByUrl(*params); in RemoveBreakpointsByUrl() local
[all …]
Dtracing_impl.cpp81 DispatchResponse response = tracing_->GetCategories(categories); in GetCategories() local
88 DispatchResponse response = tracing_->RecordClockSyncMarker(syncId); in RecordClockSyncMarker() local
102 DispatchResponse response = tracing_->RequestMemoryDump(std::move(params), dumpGuid, success); in RequestMemoryDump() local
114 DispatchResponse response = tracing_->Start(std::move(params)); in Start() local
Danimation_impl.cpp44 DispatchResponse response = DispatchResponse::Ok(); in Disable() local
Dcss_impl.cpp44 DispatchResponse response = DispatchResponse::Ok(); in Disable() local
Ddom_impl.cpp44 DispatchResponse response = DispatchResponse::Ok(); in Disable() local
Doverlay_impl.cpp44 DispatchResponse response = DispatchResponse::Ok(); in Disable() local
Dtarget_impl.cpp44 DispatchResponse response = DispatchResponse::Ok(); in SetAutoAttach() local
Dpage_impl.cpp44 DispatchResponse response = DispatchResponse::Ok(); in GetNavigationHistory() local
Druntime_impl.cpp74 DispatchResponse response = runtime_->Enable(); in Enable() local
82 DispatchResponse response = runtime_->Disable(); in Disable() local
88 DispatchResponse response = runtime_->RunIfWaitingForDebugger(); in RunIfWaitingForDebugger() local
104 … DispatchResponse response = runtime_->GetProperties(*params, &outPropertyDesc, &outInternalDescs, in GetProperties() local
128 … DispatchResponse response = runtime_->GetProperties(*params, &outPropertyDesc, &outInternalDescs, in GetProperties() local
149 DispatchResponse response = runtime_->GetHeapUsage(&usedSize, &totalSize); in GetHeapUsage() local
/arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/services/
Dcommon.ts34 const response: AxiosResponse<U> = await apiInstance.get(endpoint, { params }); constant
70 const response: AxiosResponse<U> = await apiInstance.post(endpoint, payload); constant
106 const response: AxiosResponse<U> = await apiInstance.put(endpoint, payload); constant
140 const response: AxiosResponse<U> = await apiInstance.delete(endpoint); constant
Doptions.test.ts33 const response = await optionsService.fetchGetOptions(); constant
46 const response = await optionsService.fetchGetOptions(); constant
Dsyntax.test.ts32 const response = await syntaxService.fetchGetSyntax(); constant
45 const response = await syntaxService.fetchGetSyntax(); constant
Dcommon.test.ts64 …const response: AxiosResponse = { data: { key: 'value' }, status: 200, statusText: 'OK', headers: … constant
88 …const response: AxiosResponse = { data: { key: 'value' }, status: 200, statusText: 'OK', headers: … constant
112 …const response: AxiosResponse = { data: { key: 'value' }, status: 200, statusText: 'OK', headers: … constant
135 …const response: AxiosResponse = { data: {}, status: 200, statusText: 'No Content', headers: {}, co… constant
DapiInstance.test.ts41 const response: AxiosResponse = { constant
/arkcompiler/toolchain/websocket/
Dhttp.cpp78 std::string HttpResponse::DecodeVersion(const std::string& response, std::string::size_type version… in DecodeVersion()
91 std::string HttpResponse::DecodeStatus(const std::string& response, std::string::size_type versionE… in DecodeStatus()
109 bool HttpResponse::Decode(const std::string& response, HttpResponse& parsed) in Decode()
/arkcompiler/toolchain/tooling/dynamic/test/
Dprofiler_impl_test.cpp56 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 …]
Dheapprofiler_impl_test.cpp93 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 …]
Dtracing_impl_test.cpp58 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
/arkcompiler/toolchain/tooling/dynamic/
Dprotocol_handler.cpp84 void ProtocolHandler::SendResponse(const DispatchRequest &request, const DispatchResponse &response, in SendResponse()
122 std::unique_ptr<PtJson> ProtocolHandler::CreateErrorReply(const DispatchResponse &response) in CreateErrorReply()
Ddispatcher.cpp96 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()
/arkcompiler/toolchain/tooling/dynamic/test/utils/
Dtest_channel.h36 [[maybe_unused]] const DispatchResponse &response, in SendResponse()
/arkcompiler/toolchain/test/fuzztest/dispatcher/dispatchresponsecreatecode_fuzzer/
Ddispatchresponsecreatecode_fuzzer.cpp34 DispatchResponse response = DispatchResponse::Create(code, message); in DispatchResponseCreateCodeFuzzTest() local
/arkcompiler/toolchain/websocket/client/
Dwebsocket_client.cpp25 bool WebSocketClient::ValidateServerHandShake(HttpResponse& response) in ValidateServerHandShake()
221 HttpResponse response; in ClientRecvWSUpgradeRsp() local

12