Home
last modified time | relevance | path

Searched refs:real (Results 1 – 25 of 306) sorted by relevance

12345678910>>...13

/ohos5.0/docs/en/application-dev/network/
H A Dnet-statistics.md9 - Obtaining real-time traffic data by NIC or UID
43 1. Obtain the real-time data traffic of the specified NIC.
44 2. Obtain the real-time data traffic of the cellular network.
45 3. Obtain the real-time data traffic of all NICs.
46 4. Obtain the real-time data traffic of the specified application.
47 5. Obtains the real-time data traffic of the specified socket.
54 // Obtain the real-time downlink data traffic of the specified NIC.
59 // Obtain the real-time uplink data traffic of the specified NIC.
69 // Obtain the real-time uplink data traffic of the cellular network.
74 // Obtain the real-time downlink data traffic of the all NICs.
[all …]
/ohos5.0/base/update/updater/test/unittest/updater_ui_test/view/
H A Dui_view_proxy_unittest.cpp58 OHOS::UIView *real = label->GetOhosView(); variable
62 EXPECT_NE(viewproxy.As<LabelBtnAdapter>(err), real);
66 EXPECT_EQ(viewproxy.As<TextLabelAdapter>(err), real);
73 OHOS::UIView *real = label->GetOhosView(); variable
77 EXPECT_NE(viewproxy.As<OHOS::UILabelButton>(err), real);
81 EXPECT_EQ(viewproxy.As<OHOS::UILabel>(err), real);
88 OHOS::UIView *real = label->GetOhosView(); variable
91 EXPECT_NE(viewproxy.As<LabelBtnAdapter>(), real);
92 EXPECT_EQ(viewproxy.As<TextLabelAdapter>(), real);
/ohos5.0/docs/en/application-dev/reference/apis-arkgraphics3d/
H A Djs-apis-inner-scene-types.md20 | x | number | No| No| Component on the X axis. The value is a real number.|
21 | y | number | No| No| Component on the Y axis. The value is a real number.|
29 | x | number | No| No| Component on the X axis. The value is a real number.|
30 | y | number | No| No| Component on the Y axis. The value is a real number.|
31 | z | number | No| No| Component on the Z axis. The value is a real number.|
39 | x | number | No| No| Component on the X axis. The value is a real number.|
40 | y | number | No| No| Component on the Y axis. The value is a real number.|
41 | z | number | No| No| Component on the Z axis. The value is a real number.|
42 | w | number | No| No| Component on the W axis. The value is a real number.|
50 | x | number | No| No| Component on the X axis. The value is a real number.|
[all …]
/ohos5.0/docs/en/application-dev/reference/apis-network-kit/
H A Djs-apis-net-statistics.md18 Obtains the real-time downlink data traffic of the specified NIC. This API uses an asynchronous cal…
58 Obtains the real-time downlink data traffic of the specified NIC. This API uses a promise to return…
71 | Promise\<number> | Promise used to return the result, which is the real-time downlink data traffi…
140 Obtains the real-time uplink data traffic of the specified NIC. This API uses a promise to return t…
153 | Promise\<number> | Promise used to return the result, which is the real-time uplink data traffic …
220 Obtains the real-time downlink data traffic of a cellular network. This API uses a promise to retur…
293 Obtains the real-time uplink data traffic of a cellular network. This API uses a promise to return …
328 Obtains the real-time downlink data traffic of all NICs. This API uses an asynchronous callback to …
365 Obtains the real-time downlink data traffic of all NICs. This API uses a promise to return the resu…
399 Obtains the real-time uplink data traffic of all NICs. This API uses an asynchronous callback to re…
[all …]
/ohos5.0/docs/zh-cn/application-dev/reference/apis-basic-services-kit/
H A Djs-apis-date-time.md204 console.info(`Succeeded in getting real active time : ${time}`);
249 console.info(`Succeeded in getting real active time : ${time}`);
296 console.info(`Succeeded in getting real active time : ${time}`);
341 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
344 console.info(`Succeeded in getting real time : ${time}`);
348 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
389 console.info(`Succeeded in getting real time : ${time}`);
393 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
436 console.info(`Succeeded in getting real time : ${time}`);
438 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
[all …]
H A Djs-apis-system-time.md178 console.info(`Succeeded in getting real active time : ${time}`);
182 console.info(`Failed to get real active time. message: ${error.message}, code: ${error.code}`);
219 console.info(`Succeeded in getting real active time : ${time}`);
223 console.info(`Failed to get real active time. message: ${error.message}, code: ${error.code}`);
262 console.info(`Succeeded in getting real active time : ${time}`);
306 console.info(`Succeeded in getting real time : ${time}`);
310 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
347 console.info(`Succeeded in getting real time : ${time}`);
351 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
390 console.info(`Succeeded in getting real time : ${time}`);
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Dcloud_db_sync_utils_test.cpp197 auto real = syncProcess.tableProcess.find(expect.first); in GetCallback() local
198 ASSERT_NE(real, syncProcess.tableProcess.end()); in GetCallback()
199 EXPECT_EQ(expect.second.process, real->second.process); in GetCallback()
200 … EXPECT_EQ(expect.second.downLoadInfo.batchIndex, real->second.downLoadInfo.batchIndex); in GetCallback()
201 EXPECT_EQ(expect.second.downLoadInfo.total, real->second.downLoadInfo.total); in GetCallback()
202 … EXPECT_EQ(expect.second.downLoadInfo.successCount, real->second.downLoadInfo.successCount); in GetCallback()
203 … EXPECT_EQ(expect.second.downLoadInfo.failCount, real->second.downLoadInfo.failCount); in GetCallback()
204 … EXPECT_EQ(expect.second.upLoadInfo.batchIndex, real->second.upLoadInfo.batchIndex); in GetCallback()
205 EXPECT_EQ(expect.second.upLoadInfo.total, real->second.upLoadInfo.total); in GetCallback()
206 … EXPECT_EQ(expect.second.upLoadInfo.successCount, real->second.upLoadInfo.successCount); in GetCallback()
[all …]
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.10.1/
H A Dchangelogs-wifiManager.md11 …dom MAC address is returned (the GET_PEER_MAC permission is required if a real MAC address is retu…
14 …dom MAC address is returned (the GET_PEER_MAC permission is required if a real MAC address is retu…
15 …dom MAC address is returned (the GET_PEER_MAC permission is required if a real MAC address is retu…
20 …dom MAC address is returned (the GET_PEER_MAC permission is required if a real MAC address is retu…
21 …dom MAC address is returned (the GET_PEER_MAC permission is required if a real MAC address is retu…
22 …dom MAC address is returned (the GET_PEER_MAC permission is required if a real MAC address is retu…
23 …dom MAC address is returned (the GET_PEER_MAC permission is required if a real MAC address is retu…
/ohos5.0/foundation/graphic/graphic_3d/kits/js/src/
H A DBaseObjectJS.cpp94 void TrueRootObject::SetNativeObject(META_NS::IObject::Ptr real, bool strong) in SetNativeObject() argument
97 obj_ = real; in SetNativeObject()
99 objW_ = real; in SetNativeObject()
127 …eateJsObj(napi_env env, const BASE_NS::string_view jsName, META_NS::IObject::Ptr real, bool strong, in CreateJsObj() argument
135 oo->SetNativeObject(real, strong); in CreateJsObj()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkdata/
H A Dunion_rdb___key_info_1_1_rdb___key_data.md21 | [real](_r_d_b.md#real) | 存放double类型的数据。 |
/ohos5.0/base/hiviewdfx/hisysevent/frameworks/native/
H A Dhisysevent_tool.cpp111 cmdArg.real = true; in InitOptHandlers()
176 if (!clientCmdArg.real && !clientCmdArg.history) { in CheckCmdLine()
180 if (clientCmdArg.real && clientCmdArg.history) { in CheckCmdLine()
185 if (clientCmdArg.isDebug && !clientCmdArg.real) { in CheckCmdLine()
254 if (clientCmdArg.real) { in DoAction()
/ohos5.0/docs/en/application-dev/reference/apis-arkdata/
H A Dunion_rdb___key_info_1_1_rdb___key_data.md21 | [real](_r_d_b.md#real) | Data of the double type.|
/ohos5.0/docs/en/application-dev/reference/apis-basic-services-kit/
H A Djs-apis-date-time.md204 console.info(`Succeeded in getting real active time : ${time}`);
249 console.info(`Succeeded in getting real active time : ${time}`);
296 console.info(`Succeeded in getting real active time : ${time}`);
341 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
344 console.info(`Succeeded in getting real time : ${time}`);
348 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
389 console.info(`Succeeded in getting real time : ${time}`);
393 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
436 console.info(`Succeeded in getting real time : ${time}`);
438 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
[all …]
H A Djs-apis-system-time.md178 console.info(`Succeeded in getting real active time : ${time}`);
182 console.info(`Failed to get real active time. message: ${error.message}, code: ${error.code}`);
219 console.info(`Succeeded in getting real active time : ${time}`);
223 console.info(`Failed to get real active time. message: ${error.message}, code: ${error.code}`);
262 console.info(`Succeeded in getting real active time : ${time}`);
306 console.info(`Succeeded in getting real time : ${time}`);
310 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
347 console.info(`Succeeded in getting real time : ${time}`);
351 console.info(`Failed to get real time. message: ${error.message}, code: ${error.code}`);
390 console.info(`Succeeded in getting real time : ${time}`);
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/cj/src/
H A Ddistributed_kv_store_impl.cpp87 std::vector<uint8_t> real(data.begin() + 1, data.end()); in KVValueToValueType() local
89 v.string = MallocCString(std::string(real.begin(), real.end())); in KVValueToValueType()
92 uint32_t tmp4int = be32toh(*reinterpret_cast<uint32_t*>(&(real[0]))); in KVValueToValueType()
96 uint32_t tmp4flt = be32toh(*reinterpret_cast<uint32_t*>(&(real[0]))); in KVValueToValueType()
100 v.byteArray = VectorToByteArray(std::vector<uint8_t>(real.begin(), real.end())); in KVValueToValueType()
103 v.boolean = static_cast<bool>(real[0]); in KVValueToValueType()
106 uint64_t tmp4dbl = be64toh(*reinterpret_cast<uint64_t*>(&(real[0]))); in KVValueToValueType()
/ohos5.0/docs/en/device-dev/subsystems/
H A Dsubsys-dfx-hisysevent-tool.md6 …stem/bin** directory of the system. You can use this tool to subscribe to real-time system events …
10 - Command for subscribing to real-time system events:
20 …| -r | Subscription to real-time system events based on the default settings. When this option is …
32 | -d | Subscribes to real-time system events in debugging mode.|
34 - Command for subscribing to real-time system events by event tag:
44 | -t | Event tag used to filter subscribed real-time system events.|
58 - Command for subscribing to real-time system events by event domain and event name:
68 | -o | Event domain used to filter subscribed real-time system events.|
69 | -n | Event name used to filter subscribed real-time system events.|
86 - Command for subscribing to real-time system events by event type:
/ohos5.0/docs/en/device-dev/kernel/
H A Dkernel-small-basic-process-scheduler.md6 …e slice polling. The system runs based on the real-time timeline from the startup, which ensures g…
8 …s minimizes useless tick interrupt response time and further improves the real-time performance of…
/ohos5.0/base/startup/appspawn/service/hnp/pack/
H A Derrorcode-hnpcli.md136 Get real path failed.
384 Get real path failed.
/ohos5.0/docs/en/application-dev/ui/
H A Darkts-curve-overview.md3 …tinuously smooth, in line with the user's intent, and consistent with the real world. When designi…
5 …sed spring curves) and traditional curves based on whether they model the real world. Compared wit…
H A Darkts-animator.md5 Compared with the property animation, the frame animation offers the benefits of real-time visibili…
9 …animation (ohos.animator)| Allows real-time modification and updating of UI properties on each fra…
12 The following figures illustrate the difference: The frame animation offers real-time responsivenes…
/ohos5.0/base/hiviewdfx/hiview/hisysevent/
H A Dhiviewdfx.yaml68 REAL_COUNT: {type: UINT32, arrsize: 10, desc: real time cost distribution}
72 OVER_REAL_COUNT: {type: UINT32, desc: over real time benchmark count}
73 OVER_REAL_PCT: {type: UINT32, desc: over real time benchmark percentage}
81 REAL_SPEED: {type: UINT32, desc: real time of handle hisysevent each second}
83 AVG_REAL_TIME: {type: DOUBLE, desc: average real time cost}
/ohos5.0/docs/en/design/ux-design/
H A Dmultimodal-state-button.md4 …to select from a group of options and may display the selection result in real time. Generally, th…
12 …re options from a group of options. The selected options are displayed in real time on the screen …
/ohos5.0/base/startup/appspawn/test/unittest/app_spawn_standard_test/
H A Dapp_spawn_sandbox_new_test.cpp465 APPSPAWN_LOGV("real %{public}s", real);
467 ASSERT_EQ(strcmp(value, real) == 0, 1);
508 ASSERT_EQ(strcmp(value, real) == 0, 1);
539 ASSERT_EQ(strcmp(value, real) == 0, 1);
576 const char *real = "/data/storage/el2/base"; variable
581 ASSERT_EQ(strcmp(value, real) == 0, 1);
605 ASSERT_EQ(strcmp(value, real) == 0, 1);
629 ASSERT_EQ(strcmp(value, real) == 0, 1);
653 ASSERT_EQ(strcmp(value, real) == 0, 1);
668 const char *real = "<deps-test-path>/base"; variable
[all …]
/ohos5.0/base/startup/appspawn/service/hnp/installer/
H A Derrorcode-hnp.md135 Get real path failed.
629 Get real path failed.
/ohos5.0/docs/zh-cn/application-dev/security/UniversalKeystoreKit/
H A Dhuks-encryption-decryption-ndk.md79 static uint8_t IV[IV_SIZE] = { 0 }; // this is a test value, for real use the iv should be differen…
118 … .data = (uint8_t *)IV // this is a test value, for real use the iv should be different every time
142 … .data = (uint8_t *)IV // this is a test value, for real use the iv should be different every time

12345678910>>...13