Home
last modified time | relevance | path

Searched refs:Parts (Results 1 – 21 of 21) sorted by relevance

/ohos5.0/docs/en/device-dev/hpm-part/
H A Dhpm-part-reference.md15 …ation: If a group of HPM Parts jointly implement a feature, and if other HPM Parts never depend on…
20 HPM Parts are introduced for reuse purposes.
127 - **dependencies**: dependent HPM Parts.
163 | Installing HPM Parts| **hpm install** or **hpm i**| Installs dependent HPM Parts in the bundle.js…
164 || hpm install bundle\@version | Installs HPM Parts of a specified version.|
165 | Uninstalling HPM Parts| hpm uninstall bundle | Uninstalls dependent HPM Parts.|
166 || **hpm remove** or **hpm rm bundlename**| Uninstalls dependent HPM Parts.|
172 | Updating HPM Part versions| hpm update | Updates the versions of dependent HPM Parts.|
176 | Packing | hpm pack | Packs dependencies of local HPM Parts.|
195 …red for HPM Part A to implement a feature, and if HPM Parts C and D are interchangeable, HPM Parts
[all …]
H A Dhpm-part-about.md12 An HPM Part is used as a distribution unit in OpenHarmony. There are two types of HPM Parts:
50 …an open collaboration platform that connects consumers and providers. HPM Parts are objects manage…
52 …rough this platform, the provider can publish HPM Parts and the consumer can download and use HPM
69 …, packing, running, and publishing HPM Parts. You can use these commands to manage the lifecycle o…
73Parts by category. Each HPM Part has a page providing access to its readme file, dependencies, his…
H A Dhpm-part-development.md6 …s on your own and publish them in the form of an HPM Part. To develop HPM Parts, install the hpm-c…
177 In the distribution metadata file, define the dependent HPM Parts and how to build and link them to…
316 Now you have the permission to publish HPM Parts in your organization.
329 > - Your account must also be a member of **org_name** so that you can publish or update HPM Parts
331 > - The published HPM Parts take effect only after security and content reviews.
339 When developing a project, you usually need to reference other HPM Parts to accelerate development …
341 Visit [DevEco Marketplace](https://repo.harmonyos.com), search for HPM Parts that meet your service…
383 You can edit the dependencies of multiple HPM Parts in this file.
397 Run the **hpm install** command again to download and install all HPM Parts that have not been inst…
400 ### Installing Global HPM Parts
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/
H A Dframe.rs17 use crate::h2::{ErrorCode, H2Error, Parts, PseudoHeaders};
126 parts: Parts,
193 parts: Parts,
325 pub fn new(parts: Parts) -> Self { in new()
335 pub(crate) fn get_parts(&self) -> Parts { in get_parts() argument
598 pub fn new(promised_stream_id: u32, parts: Parts) -> Self { in new()
609 use crate::h2::Parts;
711 let payload_headers = Payload::Headers(Headers::new(Parts::new())); in ut_payload()
739 let payload_push_promise = Payload::PushPromise(PushPromise::new(3, Parts::new())); in ut_payload()
H A Dparts.rs20 pub struct Parts { struct
25 impl Parts { impl
68 impl Default for Parts { implementation
H A Dmod.rs69 pub use parts::Parts;
H A Dencoder.rs1327 use crate::h2::{Parts, PseudoHeaders};
1380 let mut new_parts = Parts::new(); in ut_headers_frame_encoding()
1538 let mut new_parts = Parts::new(); in ut_continue_frame_encoding()
1837 let mut new_parts = Parts::new(); in ut_encode_continuation_frames()
1911 let headers_payload = Payload::Headers(Headers::new(Parts::new())); in ut_encode_padding()
H A Ddecoder.rs25 use crate::h2::{frame, HpackDecoder, Parts, Setting, Settings};
226 fn hpack_finish(&mut self) -> Result<Parts, H2Error> { in hpack_finish() argument
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/
H A Dparts.rs22 pub struct Parts { struct
27 impl Parts { implementation
70 impl Default for Parts { implementation
H A Ddecoder.rs15 use crate::h3::parts::Parts;
22 headers: Parts,
36 headers: Parts::new(), in new()
H A Dframe.rs14 use crate::h3::parts::Parts;
64 parts: Parts,
222 pub fn new(parts: Parts) -> Self { in new()
234 pub fn get_part(&self) -> Parts { in get_part() argument
H A Dencoder.rs437 use crate::h3::parts::Parts;
454 let mut part = Parts::new(); in literal_field_line_with_name_reference()
492 let mut part = Parts::new(); in dynamic_table()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/
H A Dencoder.rs16 use crate::h3::parts::Parts;
162 pub fn set_parts(&mut self, parts: Parts) { in set_parts() argument
303 use crate::h3::parts::Parts;
314 let mut parts = Parts::new();
501 let mut parts = Parts::new(); in test_ack()
525 let mut parts = Parts::new(); in encode_post_name()
537 let mut parts = Parts::new(); in encode_post_name()
570 let mut parts = Parts::new(); in test_indexing_with_litreal()
H A Ddecoder.rs16 use crate::h3::parts::Parts;
60 parts: Parts,
101 parts: Parts::new(), in new()
308 ) -> Result<(Parts, Option<usize>), H3errorQpack> { in finish() argument
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/hpack/
H A Dencoder.rs16 use crate::h2::{Parts, PseudoHeaders};
43 pub(crate) fn set_parts(&mut self, parts: Parts) { in set_parts() argument
69 use crate::h2::Parts;
84 let mut parts = Parts::new(); in ut_hpack_encoder()
H A Ddecoder.rs21 use crate::h2::{H2Error, Parts};
25 parts: Parts,
46 parts: Parts::new(), in with_max_size()
76 pub(crate) fn finish(&mut self) -> Result<Parts, H2Error> { in finish() argument
/ohos5.0/docs/zh-cn/device-dev/hpm-part/
H A Dhpm-part-development.md176 发行版的元数据文件中定义了其依赖的Parts,以及如何编译、链接这些Parts,生成镜像文件的编译脚本。
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/hpack/representation/
H A Dencoder.rs20 use crate::h2::{Parts, PseudoHeaders};
141 pub(crate) fn set_parts(&mut self, parts: Parts) { in set_parts() argument
171 fn new(parts: Parts) -> Self { in new()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h3/qpack/format/
H A Dencoder.rs16 use crate::h3::parts::Parts;
921 pub(crate) fn new(parts: Parts) -> Self { in new()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/conn/
H A Dhttp2.rs132 let mut header_part = h2::Parts::new(); in build_headers_frame()
/ohos5.0/base/web/webview/ohos_nweb/prebuilts/
H A DNOTICE9889 Parts of the TLS test suite are under the Go license. This code is not included
25650 Parts of the following directories are available under Apache v2.0