Searched refs:headers (Results 1 - 12 of 12) sorted by relevance
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/overwrites/ |
H A D | wsproto_handshake.py | 42 headers: Union[List[Tuple[bytes, bytes]], List[Tuple[str, str]]] = kwargs.get("headers", None) 43 if headers is not None: 44 kwargs["headers"] = [fix_websocket(h) for h in headers]
|
/arkcompiler/runtime_core/static_core/tests/cts-generator/generator/ |
H A D | test_case.rb | 47 headers = super() 49 if headers.nil? && case_headers.nil? 52 (case_headers||[]).concat(headers || [])
|
/arkcompiler/runtime_core/tests/cts-generator/generator/ |
H A D | test_case.rb | 47 headers = super() 49 if headers.nil? && case_headers.nil? 52 (case_headers||[]).concat(headers || [])
|
/arkcompiler/ets_frontend/test/scripts/utils/commit_message/ |
H A D | get_commit_message.py | 52 headers = { 57 response = requests.get(url, headers=headers)
|
/arkcompiler/ets_frontend/test/scripts/utils/download_sdk_and_image/ |
H A D | download.py | 118 total_length = int(response.headers.get("content-length")) 135 return response.headers.get("Accept-Ranges") == "bytes" 143 headers = {} 145 headers['Range'] = f'bytes={existing_size}-' 149 total_file_size = int(response.headers['Content-Length']) 165 with client.stream('GET', download_url, headers=headers) as response:
|
/arkcompiler/ets_runtime/tools/ap_file_viewer/server/ |
H A D | apdump_server.py | 172 headers=self.headers, 175 'CONTENT_TYPE': self.headers['Content-Type'],
|
/arkcompiler/ets_frontend/test/scripts/utils/flash_image/ |
H A D | burn_image.py | 42 total = int(r.headers.get('content-length'), 0)
|
/arkcompiler/runtime_core/static_core/libllvmbackend/ |
H A D | llvm_aot_compiler.cpp | 554 const auto &headers = aotBuilder_->GetMethodHeaders(); in CollectAotBuilderOffsets() local 556 for (size_t i = 0; i < headers.size(); ++i) { in CollectAotBuilderOffsets() 593 for (size_t i = 0; i < headers.size(); ++i) { in CollectAotBuilderOffsets() 598 methodOffsets[methodName] = headers[i].codeOffset; in CollectAotBuilderOffsets() 634 const auto &headers = aotBuilder_->GetMethodHeaders(); in LinkModule() local 635 ASSERT((methodPtrs.size() == headers.size()) && (methodPtrs.size() >= methods_.size())); in LinkModule() 641 for (size_t i = 0; i < headers.size(); ++i) { in LinkModule()
|
/arkcompiler/runtime_core/static_core/scripts/sdk/ |
H A D | build_sdk.sh | 148 echo "> Copying headers into SDK..." 150 # Source headers 151 copy_into_sdk "$ARK_ROOT" "$headers_dst" "$SCRIPT_DIR"/headers.txt '\(\.h$\|\.inl$\|\.inc$\)' 152 # Generated headers
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | file.h | 210 auto headers = GetRegionHeaders(); in GetRegionHeader() local 212 for (const auto &header : headers) { in GetRegionHeader()
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | file.h | 219 auto headers = GetIndexHeaders(); in GetIndexHeader() local 221 for (const auto &header : headers) { in GetIndexHeader()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | ecma_context.cpp | 688 auto headers = jsPandaFile->GetPandaFile()->GetIndexHeaders(); in CreateAllConstpool() local 690 for (const auto &header : headers) { in CreateAllConstpool()
|
Completed in 9 milliseconds