/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/request/ |
H A D | method.rs | 44 pub struct Method(Inner); 52 pub const GET: Self = Self(Inner::Get); 145 Inner::Get => "GET", in as_str() 146 Inner::Head => "HEAD", in as_str() 147 Inner::Post => "POST", in as_str() 148 Inner::Put => "PUT", in as_str() 149 Inner::Delete => "DELETE", in as_str() 150 Inner::Options => "OPTIONS", in as_str() 151 Inner::Trace => "TRACE", in as_str() 152 Inner::Connect => "CONNECT", in as_str() [all …]
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/tls/alpn/ |
H A D | mod.rs | 21 pub(crate) struct AlpnProtocol(Inner); 24 enum Inner { enum 40 pub(crate) const HTTP09: Self = Self(Inner::HTTP09); 45 pub(crate) const HTTP10: Self = Self(Inner::HTTP10); 50 pub(crate) const HTTP11: Self = Self(Inner::HTTP11); 55 pub(crate) const SPDY1: Self = Self(Inner::SPDY1); 60 pub(crate) const SPDY2: Self = Self(Inner::SPDY2); 65 pub(crate) const SPDY3: Self = Self(Inner::SPDY3); 70 pub(crate) const H2: Self = Self(Inner::H2); 75 pub(crate) const H2C: Self = Self(Inner::H2C); [all …]
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/ |
H A D | version.rs | 40 pub struct Version(Inner); 44 pub const HTTP1_0: Self = Self(Inner::Http10); 46 pub const HTTP1_1: Self = Self(Inner::Http11); 48 pub const HTTP2: Self = Self(Inner::Http2); 50 pub const HTTP3: Self = Self(Inner::Http3); 63 Inner::Http10 => "HTTP/1.0", in as_str() 64 Inner::Http11 => "HTTP/1.1", in as_str() 65 Inner::Http2 => "HTTP/2.0", in as_str() 66 Inner::Http3 => "HTTP/3.0", in as_str() 86 enum Inner { enum
|
/ohos5.0/base/useriam/face_auth/services_ex/src/ |
H A D | finite_state_machine_impl.cpp | 54 Inner inner(machine); in Schedule() 137 FiniteStateMachineImpl::Inner::Inner(std::shared_ptr<FiniteStateMachineImpl> &machine) : machine_(m… in Inner() function in OHOS::UserIam::FaceAuth::FiniteStateMachineImpl::Inner 141 void FiniteStateMachineImpl::Inner::Schedule(uint32_t event) in Schedule() 146 uint32_t FiniteStateMachineImpl::Inner::GetCurrentState() const in GetCurrentState() 151 uint32_t FiniteStateMachineImpl::Inner::EnsureCurrentState() in EnsureCurrentState() 156 const std::string &FiniteStateMachineImpl::Inner::GetMachineName() const in GetMachineName() 161 void FiniteStateMachineImpl::Inner::SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHa… in SetThreadHandler()
|
/ohos5.0/base/useriam/user_auth_framework/services/base/src/ |
H A D | finite_state_machine_impl.cpp | 54 Inner inner(machine); in Schedule() 135 FiniteStateMachineImpl::Inner::Inner(std::shared_ptr<FiniteStateMachineImpl> &machine) : machine_(m… in Inner() function in OHOS::UserIam::UserAuth::FiniteStateMachineImpl::Inner 139 void FiniteStateMachineImpl::Inner::Schedule(uint32_t event) in Schedule() 144 uint32_t FiniteStateMachineImpl::Inner::GetCurrentState() const in GetCurrentState() 149 uint32_t FiniteStateMachineImpl::Inner::EnsureCurrentState() in EnsureCurrentState() 154 const std::string &FiniteStateMachineImpl::Inner::GetMachineName() const in GetMachineName() 159 void FiniteStateMachineImpl::Inner::SetThreadHandler(const std::shared_ptr<ThreadHandler> &threadHa… in SetThreadHandler()
|
H A D | finite_state_machine_impl.h | 39 class Inner; 76 class FiniteStateMachineImpl::Inner final : public FiniteStateMachine, public NoCopyable { 78 explicit Inner(std::shared_ptr<FiniteStateMachineImpl> &machine); 79 ~Inner() override = default;
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/executor/ |
H A D | worker.rs | 126 pub(crate) inner: RefCell<Box<Inner>>, 162 fn get_task(&self, inner: &mut Inner, worker_ctx: &WorkerContext) -> Option<Task> { in get_task() argument 173 fn check_cancel(&self, inner: &mut Inner) { in check_cancel() argument 177 fn has_work(&self, inner: &mut Inner, worker_ctx: &WorkerContext) -> bool { in has_work() argument 181 fn park_timeout(&self, inner: &mut Inner, worker_ctx: &WorkerContext) { in park_timeout() argument 212 pub(crate) unsafe fn get_inner_ptr(&self) -> &Inner { in get_inner_ptr() argument 224 pub(crate) struct Inner { struct 235 impl Inner { argument 237 Inner { in new() 249 impl Inner { impl
|
H A D | parker.rs | 24 inner: Arc<Inner>, 27 struct Inner { struct 42 inner: Arc::new(Inner { in new() argument 73 impl Inner { implementation
|
H A D | async_pool.rs | 229 fn get_task_from_queues(&self, worker_inner: &mut worker::Inner) -> Option<Task> { in get_task_from_queues() 264 fn get_task_from_searching(&self, worker_inner: &mut worker::Inner) -> Option<Task> { in get_task_from_searching() 293 worker_inner: &mut worker::Inner, in dequeue() argument 356 pub(crate) inner: Arc<Inner>, 367 pub(crate) struct Inner { struct 392 fn async_thread_proc(inner: Arc<Inner>, worker: Arc<Worker>, handle: Arc<Handle>) { in async_thread_proc() argument 418 inner: Arc::new(Inner { in new() 440 Box::new(worker::Inner::new(local_queue, Parker::new(driver.clone()))); in create_async_thread_pool() 827 let mut worker_inner = worker::Inner::new(local_queue, parker.clone()); in ut_executor_mng_info_wake_up_rand_one() 865 let mut worker_inner = worker::Inner::new(local_queue, parker.clone()); in ut_executor_mng_info_wake_up_if_one_task_left() [all …]
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/ |
H A D | wake_list.rs | 27 pub(crate) struct Inner { struct 34 inner: UnsafeCell<Inner>, argument 48 inner: UnsafeCell::new(Inner { in new() 104 impl Inner { implementation 153 type Target = Inner; 155 fn deref(&self) -> &Inner { in deref() argument 161 fn deref_mut(&mut self) -> &mut Inner { in deref_mut() argument
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/ |
H A D | driver.rs | 73 io_handle_inner: Arc<Inner>, 77 inner: Arc<Inner>, 90 fn new(inner: Arc<Inner>) -> Self { in new() 124 type Target = Arc<Inner>; 135 pub(crate) struct Inner { struct 205 let inner = Arc::new(Inner { in initialize() 301 let inner = Arc::new(Inner { in initialize() 350 impl Inner { impl 368 impl Inner { impl 405 impl Inner { implementation [all …]
|
/ohos5.0/base/useriam/face_auth/services_ex/inc/ |
H A D | finite_state_machine_impl.h | 39 class Inner; 76 class FiniteStateMachineImpl::Inner final : public FiniteStateMachine, public NoCopyable { 78 explicit Inner(std::shared_ptr<FiniteStateMachineImpl> &machine); 79 ~Inner() override = default;
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkdata/ |
H A D | js-apis-data-sendablePreferences.md | 66 | 15500000 | Inner error. | 124 | 15500000 | Inner error. | 177 | 15500000 | Inner error. | 235 | 15500000 | Inner error. | 286 | 15500000 | Inner error. | 354 | 15500000 | Inner error. | 401 | 15500000 | Inner error. | 432 | 15500000 | Inner error. | 472 | 15500000 | Inner error. | 521 | 15500000 | Inner error. | [all …]
|
H A D | js-apis-data-preferences.md | 58 | 15500000 | Inner error. | 135 | 15500000 | Inner error. | 207 | 15500000 | Inner error. | 291 | 15500000 | Inner error. | 372 | 15500000 | Inner error. | 437 | 15500000 | Inner error. | 515 | 15500000 | Inner error. | 587 | 15500000 | Inner error. | 671 | 15500000 | Inner error. | 747 | 15500000 | Inner error. | [all …]
|
H A D | js-apis-data-sendableRelationalStore.md | 42 | 14800000 | Inner error. … 105 | 14800000 | Inner error. … 166 | 14800000 | Inner error. … 208 | 14800000 | Inner error. …
|
H A D | js-apis-data-relationalStore.md | 62 | 14800000 | Inner error. | 169 | 14800000 | Inner error. | 2144 | 14800000 | Inner error. | 2193 | 14800000 | Inner error. | 2276 | 14800000 | Inner error. | 2364 | 14800000 | Inner error. | 2452 | 14800000 | Inner error. | 2695 | 14800000 | Inner error. | 2791 | 14800000 | Inner error. | 2977 | 14800000 | Inner error. | [all …]
|
/ohos5.0/foundation/arkui/napi/native_engine/ |
H A D | native_async_work.h | 62 template<typename Inner, typename Outer> 63 static Outer* DereferenceOf(const Inner Outer::*field, const Inner* pointer) in DereferenceOf()
|
/ohos5.0/commonlibrary/ets_utils/js_concurrent_module/common/helper/ |
H A D | object_helper.h | 22 template<typename Inner, typename Outer> 23 static Outer* DereferenceOf(const Inner Outer::*field, const Inner* pointer) in DereferenceOf()
|
/ohos5.0/base/request/request/services/src/manage/scheduler/queue/ |
H A D | keeper.rs | 28 inner: Arc<Mutex<Inner>>, 31 struct Inner { struct 43 inner: Arc::new(Mutex::new(Inner { in new() argument
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-backgroundtasks-kit/ |
H A D | js-apis-resourceschedule-deviceStandby-sys.md | 45 | 9800003 | Inner transact failed. | 101 | 9800003 | Inner transact failed. | 149 | 9800003 | Inner transact failed. | 194 | 9800003 | Inner transact failed. |
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/task/ |
H A D | raw.rs | 181 pub(crate) struct Inner<T: Future, S: Schedule> { struct 193 impl<T, S> Inner<T, S> implementation 199 Inner { in new() 286 inner: Inner<T, S>, 464 let inner = Inner::<T, S>::new(task, scheduler); in new() 473 pub(crate) fn inner(&self) -> &Inner<T, S> { in inner()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkdata/ |
H A D | js-apis-data-sendablePreferences.md | 66 | 15500000 | Inner error. | 124 | 15500000 | Inner error. | 177 | 15500000 | Inner error. | 235 | 15500000 | Inner error. | 286 | 15500000 | Inner error. | 354 | 15500000 | Inner error. | 401 | 15500000 | Inner error. | 432 | 15500000 | Inner error. | 472 | 15500000 | Inner error. | 519 | 15500000 | Inner error. | [all …]
|
H A D | js-apis-data-preferences.md | 58 | 15500000 | Inner error. | 135 | 15500000 | Inner error. | 207 | 15500000 | Inner error. | 291 | 15500000 | Inner error. | 372 | 15500000 | Inner error. | 437 | 15500000 | Inner error. | 515 | 15500000 | Inner error. | 587 | 15500000 | Inner error. | 671 | 15500000 | Inner error. | 747 | 15500000 | Inner error. | [all …]
|
/ohos5.0/docs/en/readme/ |
H A D | multimodal-input.md | 7 …Inner SDK. The Inner SDK distributes the events to the ArkUI framework, which then encapsulates th…
|
/ohos5.0/docs/zh-cn/design/ |
H A D | OpenHarmony-API-governance.md | 26 | Inner API | 系统部件 | 系统部件 | 不承诺 | 无 | 35 * Inner API:系统服务和框架实现彼此调用的API,仅供系统内部使用,不承诺兼容性。
|